monitor-api - v1.3.0
    Preparing search index...

    Interface ProductionReportRequest

    Serialized report handed to a custom production transport.

    interface ProductionReportRequest {
        body: string;
        endpoint: string;
        headers: Readonly<Record<string, string>>;
        payload: unknown;
        signal?: AbortSignal;
    }
    Index

    Properties

    body: string

    JSON-serialized report body.

    endpoint: string

    Configured destination identifier or URL.

    headers: Readonly<Record<string, string>>

    Final headers after applying monitor defaults and user overrides.

    payload: unknown

    Transformed report value before JSON serialization.

    signal?: AbortSignal

    Aborted when the configured report timeout elapses.