Struct google_cloudmonitoring2_beta2::Timeseries [] [src]

pub struct Timeseries {
    pub timeseries_desc: Option<TimeseriesDescriptor>,
    pub points: Option<Vec<Point>>,
}

The monitoring data is organized as metrics and stored as data points that are recorded over time. Each data point represents information like the CPU utilization of your virtual machine. A historical record of these data points is called a time series.

This type is not used in any activity, and only used as part of another schema.

Fields

The descriptor of this time series.

The data points of this time series. The points are listed in order of their end timestamp, from younger to older.

Trait Implementations

impl Debug for Timeseries
[src]

Formats the value using the given formatter.

impl Clone for Timeseries
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for Timeseries
[src]

Returns the "default value" for a type. Read more

impl Part for Timeseries
[src]