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) 2.18 kB
import { DimensionsMap } from "aws-cdk-lib/aws-cloudwatch"; import { MetricFactory } from "../../common"; export interface KinesisDataStreamMetricFactoryProps { readonly streamName: string; } /** * @see https://docs.aws.amazon.com/streams/latest/dev/monitoring-with-cloudwatch.html */ export declare class KinesisDataStreamMetricFactory { protected readonly metricFactory: MetricFactory; protected readonly dimensionsMap: DimensionsMap; constructor(metricFactory: MetricFactory, props: KinesisDataStreamMetricFactoryProps); metricGetRecordsSumBytes(): import("../../common").MetricWithAlarmSupport; metricGetRecordsIteratorAgeMaxMs(): import("../../common").MetricWithAlarmSupport; metricGetRecordsLatencyAverageMs(): import("../../common").MetricWithAlarmSupport; metricGetRecordsSumCount(): import("../../common").MetricWithAlarmSupport; metricGetRecordsSuccessCount(): import("../../common").MetricWithAlarmSupport; metricIncomingDataSumBytes(): import("../../common").MetricWithAlarmSupport; metricIncomingDataSumCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordSumBytes(): import("../../common").MetricWithAlarmSupport; metricPutRecordLatencyAverageMs(): import("../../common").MetricWithAlarmSupport; metricPutRecordSuccessCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordsSumBytes(): import("../../common").MetricWithAlarmSupport; metricPutRecordsLatencyAverageMs(): import("../../common").MetricWithAlarmSupport; metricPutRecordsSuccessCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordsSuccessfulRecordsCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordsTotalRecordsCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordsFailedRecordsCount(): import("../../common").MetricWithAlarmSupport; metricPutRecordsThrottledRecordsCount(): import("../../common").MetricWithAlarmSupport; metricReadProvisionedThroughputExceededPercent(): import("../../common").MetricWithAlarmSupport; metricWriteProvisionedThroughputExceededPercent(): import("../../common").MetricWithAlarmSupport; }