Show / Hide Table of Contents

Class CollectdPayloadError

Describes the error status for payloads that were not written.

Inheritance
System.Object
CollectdPayloadError
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 CollectdPayloadError : IDirectResponseSchema

Properties

Error

Records the error status for the payload. If this field is present, the partial errors for nested values won't be populated.

Declaration
[JsonProperty("error")]
public virtual Status Error { get; set; }
Property Value
Type Description
Status

ETag

The ETag of the item.

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

Index

The zero-based index in CreateCollectdTimeSeriesRequest.collectd_payloads.

Declaration
[JsonProperty("index")]
public virtual int? Index { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ValueErrors

Records the error status for values that were not written due to an error.Failed payloads for which nothing is written will not include partial value errors.

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

Implements

IDirectResponseSchema
Back to top