UNPKG

cdk-monitoring-constructs

Version:

[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/cdklabs/cdk-monitoring-constructs) [![NPM version](https://badge.fury.io/js/cdk-monitoring-constructs.svg)](https://badge

66 lines (65 loc) 1.94 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 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;