mcp-use TypeScript API
    Preparing search index...

    Interface ObservabilityStatus

    Snapshot returned by ObservabilityManager.getStatus.

    interface ObservabilityStatus {
        callbackCount: number;
        enabled: boolean;
        handlerNames: string[];
        metadata: Record<string, any>;
        tags: string[];
    }
    Index
    callbackCount: number

    Number of active callbacks.

    enabled: boolean

    Whether observability is enabled and has at least one callback.

    handlerNames: string[]

    Human-readable callback handler names.

    metadata: Record<string, any>

    Current trace metadata.

    tags: string[]

    Current trace tags.