Show / Hide Table of Contents

Class CreateCollectdTimeSeriesRequest

The CreateCollectdTimeSeries request.

Inheritance
System.Object
CreateCollectdTimeSeriesRequest
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class CreateCollectdTimeSeriesRequest : IDirectResponseSchema

Properties

CollectdPayloads

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.

Declaration
[JsonProperty("collectdPayloads")]
public virtual IList<CollectdPayload> CollectdPayloads { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<CollectdPayload>

CollectdVersion

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

Declaration
[JsonProperty("collectdVersion")]
public virtual string CollectdVersion { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Resource

The monitored resource associated with the time series.

Declaration
[JsonProperty("resource")]
public virtual MonitoredResource Resource { get; set; }
Property Value
Type Description
MonitoredResource

Implements

IDirectResponseSchema
Back to top