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

    Event is a time-stamped annotation of the span, consisting of user-supplied text description and key-value pairs.

    interface Event {
        attributes: KeyValue[];
        droppedAttributesCount?: number;
        name: string;
        timeUnixNano: string;
    }
    Index

    Properties

    attributes: KeyValue[]

    A collection of attribute key/value pairs on the event.

    droppedAttributesCount?: number

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

    name: string

    The name of the event. This field is semantically required to be set to non-empty string.

    timeUnixNano: string

    The time the event occurred (UNIX Epoch time in nanoseconds).