UNPKG

cdk-monitoring-constructs

Version:

[![NPM version](https://badge.fury.io/js/cdk-monitoring-constructs.svg)](https://badge.fury.io/js/cdk-monitoring-constructs) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.github.cdklabs/cdkmonitoringconstructs/badge.svg)](https://m

70 lines (69 loc) 2.06 kB
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 percentage, ranged up to 100. */ export declare const PercentageAxisUpToHundred: 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;