OpenTelemetry SDK
    Preparing search index...

    Represents a timed event. A timed event is an event with a timestamp.

    interface TimedEvent {
        attributes?: Attributes;
        droppedAttributesCount?: number;
        name: string;
        time: HrTime;
    }
    Index

    Properties

    attributes?: Attributes

    The attributes of the event.

    droppedAttributesCount?: number

    Count of attributes of the event that were dropped due to collection limits

    name: string

    The name of the event.

    time: HrTime