Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
15 lines
476 B
Plaintext
15 lines
476 B
Plaintext
import { 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 |