public sealed class Span.Types.Attributes : IMessage<Span.Types.Attributes>, IEquatable<Span.Types.Attributes>, IDeepCloneable<Span.Types.Attributes>, IBufferMessage, IMessage
Reference documentation and code samples for the Google Cloud Trace v2 API class Span.Types.Attributes.
A set of attributes as key-value pairs.
Implements
IMessageSpanTypesAttributes, IEquatableSpanTypesAttributes, IDeepCloneableSpanTypesAttributes, IBufferMessage, IMessageNamespace
Google.Cloud.Trace.V2Assembly
Google.Cloud.Trace.V2.dll
Constructors
Attributes()
public Attributes()
Attributes(Attributes)
public Attributes(Span.Types.Attributes other)
Parameter | |
---|---|
Name | Description |
other |
SpanTypesAttributes |
Properties
AttributeMap
public MapField<string, AttributeValue> AttributeMap { get; }
A set of attributes. Each attribute's key can be up to 128 bytes
long. The value can be a string up to 256 bytes, a signed 64-bit integer,
or the boolean values true
or false
. For example:
"/instance_id": { "string_value": { "value": "my-instance" } }
"/http/request_bytes": { "int_value": 300 }
"example.com/myattribute": { "bool_value": false }
Property Value | |
---|---|
Type | Description |
MapFieldstringAttributeValue |
DroppedAttributesCount
public int DroppedAttributesCount { get; set; }
The number of attributes that were discarded. Attributes can be discarded because their keys are too long or because there are too many attributes. If this value is 0 then all attributes are valid.
Property Value | |
---|---|
Type | Description |
int |