cdk-monitoring-constructs
Version:
[](https://gitpod.io/#https://github.com/cdklabs/cdk-monitoring-constructs) [](https://badge
66 lines (65 loc) • 1.94 kB
TypeScript
import { YAxisProps } from "aws-cdk-lib/aws-cloudwatch";
/**
* Y-Axis showing percentage, ranged from 0.
*/
export declare const PercentageAxisFromZero: YAxisProps;
/**
* Y-Axis showing percentage, ranged from 0 to 100.
*/
export declare const PercentageAxisFromZeroToHundred: YAxisProps;
/**
* Y-Axis showing time in milliseconds, ranged from 0.
*/
export declare const TimeAxisMillisFromZero: YAxisProps;
/**
* Y-Axis showing time in seconds, ranged from 0.
*/
export declare const TimeAxisSecondsFromZero: YAxisProps;
/**
* Y-Axis showing time in minutes, ranged from 0.
*/
export declare const TimeAxisMinutesFromZero: YAxisProps;
/**
* Y-Axis showing count, ranged from 0.
*/
export declare const CountAxisFromZero: YAxisProps;
/**
* Y-Axis showing count, ranged from 1.
*/
export declare const CountAxisFromOne: YAxisProps;
/**
* Y-Axis showing boolean, ranged from 0 to 1, where 1 means TRUE.
*/
export declare const BooleanAxisFromZeroToOne: YAxisProps;
/**
* Y-Axis showing rate (relative count), ranged from 0.
*/
export declare const RateAxisFromZero: YAxisProps;
/**
* Y-Axis showing rate (relative count), ranged from 0 to 1.
*/
export declare const RateAxisFromZeroToOne: YAxisProps;
/**
* Y-Axis showing size in bytes, ranged from 0.
*/
export declare const SizeAxisBytesFromZero: YAxisProps;
/**
* Y-Axis showing size in kilobytes, ranged from 0.
*/
export declare const SizeAxisKiloBytesFromZero: YAxisProps;
/**
* Y-Axis showing size in megabytes, ranged from 0.
*/
export declare const SizeAxisMegaBytesFromZero: YAxisProps;
/**
* Y-Axis showing size in gigabytes, ranged from 0.
*/
export declare const SizeAxisGigaBytesFromZero: YAxisProps;
/**
* Y-Axis showing cost in Megabyte Millisecond, ranged from 0.
*/
export declare const MegabyteMillisecondAxisFromZero: YAxisProps;
/**
* Y-Axis showing cost in USD, ranged from 0.
*/
export declare const CurrencyAxisUsdFromZero: YAxisProps;