Beignet API reference
    Preparing search index...

    Interface EventBusProviderInstrumentationEvent

    Event bus instrumentation.

    interface EventBusProviderInstrumentationEvent {
        details?: unknown;
        eventName: string;
        id?: string;
        parentSpanId?: string;
        requestId?: string;
        spanId?: string;
        timestamp?: string;
        traceId?: string;
        traceparent?: string;
        type: "eventBus";
        watcher?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    details?: unknown

    Provider-specific structured details. Values are redacted before being recorded by createProviderInstrumentation(...).

    eventName: string

    Domain or integration event name.

    id?: string

    Optional event identifier supplied by the caller.

    parentSpanId?: string

    Parent span identifier for nested operations.

    requestId?: string

    Request correlation ID for events emitted during request handling.

    spanId?: string

    Span identifier for the current operation.

    timestamp?: string

    ISO timestamp supplied by the caller. Devtools can also assign a timestamp when one is omitted.

    traceId?: string

    Trace identifier for distributed tracing integrations.

    traceparent?: string

    W3C traceparent header value, when available.

    type: "eventBus"
    watcher?: string

    Watcher category used by devtools and instrumentation sinks.