Attributes(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A set of attributes, each in the format [KEY]:[VALUE]
.
Attributes
Name | Description |
attribute_map |
Mapping[str, google.cloud.trace_v2.types.AttributeValue]
The 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`` and ``false``. For example: :: "/instance_id": { "string_value": { "value": "my-instance" } } "/http/request_bytes": { "int_value": 300 } "example.com/myattribute": { "bool_value": false } |
dropped_attributes_count |
int
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. |
Inheritance
builtins.object > proto.message.Message > AttributesClasses
AttributeMapEntry
AttributeMapEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)
The abstract base class for a message.
Name | Description |
kwargs |
dict
Keys and values corresponding to the fields of the message. |
mapping |
Union[dict, `.Message`]
A dictionary or message to be used to determine the values for this message. |
ignore_unknown_fields |
Optional(bool)
If True, do not raise errors for unknown fields. Only applied if |