log2trace-ui - v1.0.0-RC1
    Preparing search index...

    Resource information. A Resource is an immutable representation of the entity producing telemetry as Attributes. For example, a process producing telemetry that is running in a container on Kubernetes has a Pod name, it is in a namespace and possibly is part of a Deployment which also has a name. All three of these attributes can be included in the Resource.

    interface Resource {
        attributes: KeyValue[];
        droppedAttributesCount?: number;
        entityRefs?: EntityRef[];
    }
    Index

    Properties

    attributes: KeyValue[]

    Set of attributes that describe the resource. Attribute keys MUST be unique (it is not allowed to have more than one attribute with the same key).

    droppedAttributesCount?: number

    The number of dropped attributes. If the value is 0, then no attributes were dropped.

    entityRefs?: EntityRef[]

    Set of entities that participate in this Resource. Note: keys in the references MUST exist in attributes of this message. Status: [Development]