Show / Hide Table of Contents

Class Exemplar

Exemplars are example points that may be used to annotate aggregated distribution values. They are metadata that gives information about a particular value added to a Distribution bucket, such as a trace ID that was active when a value was added. They may contain further information, such as a example values and timestamps, origin, etc.

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

Properties

Attachments

Contextual information about the example value. Examples are:Trace: type.googleapis.com/google.monitoring.v3.SpanContextLiteral string: type.googleapis.com/google.protobuf.StringValueLabels dropped during aggregation: type.googleapis.com/google.monitoring.v3.DroppedLabelsThere may be only a single attachment of any given message type in a single exemplar, and this is enforced by the system.

Declaration
[JsonProperty("attachments")]
public virtual IList<IDictionary<string, object>> Attachments { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.Collections.Generic.IDictionary<System.String, System.Object>>

ETag

The ETag of the item.

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

Timestamp

The observation (sampling) time of the above value.

Declaration
[JsonProperty("timestamp")]
public virtual object Timestamp { get; set; }
Property Value
Type Description
System.Object

Value

Value of the exemplar point. This value determines to which bucket the exemplar belongs.

Declaration
[JsonProperty("value")]
public virtual double? Value { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

IDirectResponseSchema
Back to top