Class CollectdPayload
A collection of data points sent from a collectd-based plugin. See the collectd documentation for more information.
Inheritance
System.Object
CollectdPayload
Implements
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 CollectdPayload : IDirectResponseSchema
Properties
EndTime
The end time of the interval.
Declaration
[JsonProperty("endTime")]
public virtual object EndTime { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Object |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Metadata
The measurement metadata. Example: "process_id" -> 12345
Declaration
[JsonProperty("metadata")]
public virtual IDictionary<string, TypedValue> Metadata { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IDictionary<System.String, TypedValue> |
Plugin
The name of the plugin. Example: "disk".
Declaration
[JsonProperty("plugin")]
public virtual string Plugin { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
PluginInstance
The instance name of the plugin Example: "hdcl".
Declaration
[JsonProperty("pluginInstance")]
public virtual string PluginInstance { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
StartTime
The start time of the interval.
Declaration
[JsonProperty("startTime")]
public virtual object StartTime { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Object |
Type
The measurement type. Example: "memory".
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
TypeInstance
The measurement type instance. Example: "used".
Declaration
[JsonProperty("typeInstance")]
public virtual string TypeInstance { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Values
The measured values during this time interval. Each value must have a different dataSourceName.
Declaration
[JsonProperty("values")]
public virtual IList<CollectdValue> Values { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<CollectdValue> |