Struct google_monitoring3::CreateCollectdTimeSeriesRequest[][src]

pub struct CreateCollectdTimeSeriesRequest {
    pub collectd_payloads: Option<Vec<CollectdPayload>>,
    pub resource: Option<MonitoredResource>,
    pub collectd_version: Option<String>,
}

The CreateCollectdTimeSeries request.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The collectd payloads representing the time series data. You must not include more than a single point for each time series, so no two payloads can have the same values for all of the fields plugin, plugin_instance, type, and type_instance.

The monitored resource associated with the time series.

The version of collectd that collected the data. Example: "5.3.0-192.el6".

Trait Implementations

impl Default for CreateCollectdTimeSeriesRequest
[src]

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

impl Clone for CreateCollectdTimeSeriesRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CreateCollectdTimeSeriesRequest
[src]

Formats the value using the given formatter. Read more

impl RequestValue for CreateCollectdTimeSeriesRequest
[src]

Auto Trait Implementations