couchbase
    Preparing search index...

    Interface JsonPingReport

    The JSON-formated output report from a ping operation.

    interface JsonPingReport {
        id: string;
        sdk: string;
        services: {
            [serviceType: string]: {
                error?: string;
                id: string;
                latency_us: number;
                local: string;
                namespace?: string;
                remote: string;
                state: string;
            }[];
        };
        version: number;
    }
    Index

    Properties

    Properties

    id: string
    sdk: string
    services: {
        [serviceType: string]: {
            error?: string;
            id: string;
            latency_us: number;
            local: string;
            namespace?: string;
            remote: string;
            state: string;
        }[];
    }
    version: number