Beignet API reference
    Preparing search index...

    Interface SendNotificationOptions

    Options passed when sending a notification.

    interface SendNotificationOptions {
        channels?: readonly string[];
        metadata?: Record<string, unknown>;
        parentSpanId?: string;
        requestId?: string;
        spanId?: string;
        traceId?: string;
        traceparent?: string;
    }
    Index

    Properties

    channels?: readonly string[]

    Subset of channels to deliver. Defaults to all channels on the definition.

    metadata?: Record<string, unknown>

    Optional app metadata attached to memory deliveries and instrumentation.

    parentSpanId?: string

    Parent span identifier for instrumentation.

    requestId?: string

    Request correlation ID for instrumentation.

    spanId?: string

    Span identifier for instrumentation.

    traceId?: string

    Trace identifier for instrumentation.

    traceparent?: string

    W3C traceparent header value for instrumentation.