Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DistributionCut

import type { DistributionCut } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

A DistributionCut defines a TimeSeries and thresholds used for measuring good service and total service. The TimeSeries must have ValueType = DISTRIBUTION and MetricKind = DELTA or MetricKind = CUMULATIVE. The computed good_service will be the estimated count of values in the Distribution that fall within the specified min and max.

interface DistributionCut {
distributionFilter?: string;
}

§Properties

§
distributionFilter?: string
[src]

A monitoring filter (https://cloud.google.com/monitoring/api/v3/filters) specifying a TimeSeries aggregating values. Must have ValueType = DISTRIBUTION and MetricKind = DELTA or MetricKind = CUMULATIVE.

§

Range of values considered "good." For a one-sided range, set one bound to an infinite value.