Beignet API reference
    Preparing search index...

    Interface ScheduleProviderInstrumentationEvent

    Scheduled task instrumentation.

    interface ScheduleProviderInstrumentationEvent {
        cron?: string;
        details?: unknown;
        id?: string;
        parentSpanId?: string;
        requestId?: string;
        scheduleName: string;
        spanId?: string;
        status: "completed" | "started" | "failed";
        timestamp?: string;
        timezone?: string;
        traceId?: string;
        traceparent?: string;
        type: "schedule";
        watcher?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    cron?: string

    Cron expression for the schedule, when known.

    details?: unknown

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

    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.

    scheduleName: string

    Schedule name.

    spanId?: string

    Span identifier for the current operation.

    status: "completed" | "started" | "failed"

    Schedule run lifecycle status.

    timestamp?: string

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

    timezone?: string

    Time zone used by the schedule, when known.

    traceId?: string

    Trace identifier for distributed tracing integrations.

    traceparent?: string

    W3C traceparent header value, when available.

    type: "schedule"
    watcher?: string

    Watcher category used by devtools and instrumentation sinks.