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

33 lines (32 loc) 1.72 kB
import { DimensionsMap } from "aws-cdk-lib/aws-cloudwatch"; import { IDatabaseCluster } from "aws-cdk-lib/aws-rds"; import { MetricFactory } from "../../common"; export interface RdsClusterMetricFactoryProps { /** * database cluster identifier (either this or `cluster` need to be specified) * @deprecated please use `cluster` instead */ readonly clusterIdentifier?: string; /** * database cluster (either this or `clusterIdentifier` need to be specified) */ readonly cluster?: IDatabaseCluster; } export declare class RdsClusterMetricFactory { readonly clusterIdentifier: string; protected readonly metricFactory: MetricFactory; protected readonly dimensionsMap: DimensionsMap; constructor(metricFactory: MetricFactory, props: RdsClusterMetricFactoryProps); private static resolveDbClusterIdentifier; metricTotalConnectionCount(): import("../../common").MetricWithAlarmSupport; metricFreeStorageInBytes(): import("../../common").MetricWithAlarmSupport; metricUsedStorageInBytes(): import("../../common").MetricWithAlarmSupport; metricDiskSpaceUsageInPercent(): import("../../common").MetricWithAlarmSupport; metricAverageCpuUsageInPercent(): import("../../common").MetricWithAlarmSupport; metricSelectLatencyP90InMillis(): import("../../common").MetricWithAlarmSupport; metricInsertLatencyP90InMillis(): import("../../common").MetricWithAlarmSupport; metricUpdateLatencyP90InMillis(): import("../../common").MetricWithAlarmSupport; metricDeleteLatencyP90InMillis(): import("../../common").MetricWithAlarmSupport; metricCommitLatencyP90InMillis(): import("../../common").MetricWithAlarmSupport; private metric; }