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

19 lines (18 loc) 1.05 kB
import { IQueue } from "aws-cdk-lib/aws-sqs"; import { MetricFactory } from "../../common"; export interface SqsQueueMetricFactoryProps { readonly queue: IQueue; } export declare class SqsQueueMetricFactory { protected readonly metricFactory: MetricFactory; protected readonly queue: IQueue; constructor(metricFactory: MetricFactory, props: SqsQueueMetricFactoryProps); metricApproximateVisibleMessageCount(): import("../../common").MetricWithAlarmSupport; metricIncomingMessageCount(): import("../../common").MetricWithAlarmSupport; metricDeletedMessageCount(): import("../../common").MetricWithAlarmSupport; metricApproximateAgeOfOldestMessageInSeconds(): import("../../common").MetricWithAlarmSupport; metricAverageMessageSizeInBytes(): import("../../common").MetricWithAlarmSupport; metricProductionRate(): import("../../common").MetricWithAlarmSupport; metricConsumptionRate(): import("../../common").MetricWithAlarmSupport; metricTimeToDrain(): import("../../common").MetricWithAlarmSupport; }