kkrpc
    Preparing search index...

    Interface InspectorOptions

    Runtime filtering, sanitization, and latency options for an inspector.

    interface InspectorOptions {
        filter?: (event: InspectEvent) => boolean;
        sanitize?: (event: InspectEvent) => InspectEvent;
        trackLatency?: boolean;
    }
    Index

    Properties

    filter?: (event: InspectEvent) => boolean

    Drop events for which the predicate returns false.

    sanitize?: (event: InspectEvent) => InspectEvent

    Transform or redact events before they are recorded.

    trackLatency?: boolean

    Track request/response timings by request id.