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

interface TimedEvent {
    attributes?: @opentelemetry/api.Attributes;
    droppedAttributesCount?: number;
    name: string;
    time: @opentelemetry/api.HrTime;
}

Properties

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.