interface CollStats {
    $collStats: {
        count?: Record<string | number | symbol, never>;
        latencyStats?: {
            histograms?: boolean;
        };
        queryExecStats?: Record<string | number | symbol, never>;
        storageStats?: {
            scale?: number;
        };
    };
}

Properties

Properties

$collStats: {
    count?: Record<string | number | symbol, never>;
    latencyStats?: {
        histograms?: boolean;
    };
    queryExecStats?: Record<string | number | symbol, never>;
    storageStats?: {
        scale?: number;
    };
}

Type declaration

  • Optional count?: Record<string | number | symbol, never>
  • Optional latencyStats?: {
        histograms?: boolean;
    }
    • Optional histograms?: boolean
  • Optional queryExecStats?: Record<string | number | symbol, never>
  • Optional storageStats?: {
        scale?: number;
    }
    • Optional scale?: number