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

TimeSeriesData

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

Represents the values of a time series associated with a TimeSeriesDescriptor.

interface TimeSeriesData {
labelValues?: LabelValue[];
pointData?: PointData[];
}

§Properties

§
labelValues?: LabelValue[]
[src]

The values of the labels in the time series identifier, given in the same order as the label_descriptors field of the TimeSeriesDescriptor associated with this object. Each value must have a value of the type given in the corresponding entry of label_descriptors.

§
pointData?: PointData[]
[src]

The points in the time series.