Files
smart-management-auto-test/node_modules/@opentelemetry/sdk-trace-base/build/esnext/TimedEvent.d.ts

15 lines
481 B
TypeScript

import type { HrTime, Attributes } from '@opentelemetry/api';
/**
* Represents a timed event.
* A timed event is an event with a timestamp.
*/
export interface TimedEvent {
time: HrTime;
/** The name of the event. */
name: string;
/** The attributes of the event. */
attributes?: Attributes;
/** Count of attributes of the event that were dropped due to collection limits */
droppedAttributesCount?: number;
}
//# sourceMappingURL=TimedEvent.d.ts.map