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

MetricRange

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

A MetricRange is used when each window is good when the value x of a single TimeSeries satisfies range.min <= x <= range.max. The provided TimeSeries must have ValueType = INT64 or ValueType = DOUBLE and MetricKind = GAUGE.

interface MetricRange {
timeSeries?: string;
}

§Properties

§

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

§
timeSeries?: string
[src]

A monitoring filter (https://cloud.google.com/monitoring/api/v3/filters) specifying the TimeSeries to use for evaluating window quality.