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

MetricValue

import type { MetricValue } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

The value of a metric along with its name and labels.

interface MetricValue {
metric?: string;
metricLabels?: {
[key: string]: string;
}
;
valueHistogram?: DataflowHistogramValue;
valueInt64?: bigint;
}

§Properties

§
metric?: string
[src]

Base name for this metric.

§
metricLabels?: {
[key: string]: string;
}
[src]

Optional. Set of metric labels for this metric.

§

Histogram value of this metric.

§
valueInt64?: bigint
[src]

Integer value of this metric.