Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Attributes

import type { Attributes } from "https://googleapis.deno.dev/v1/cloudtrace:v2.ts";

A set of attributes as key-value pairs.

interface Attributes {
attributeMap?: {
[key: string]: AttributeValue;
}
;
droppedAttributesCount?: number;
}

§Properties

§
attributeMap?: {
[key: string]: AttributeValue;
}
[src]

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 }

§
droppedAttributesCount?: number
[src]

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.