QueryMetrics
import type { QueryMetrics } from "https://googleapis.deno.dev/v1/databasecenter:v1beta.ts";QueryMetrics contains the metrics related to the query execution.
interface QueryMetrics {
avgCpuTime?: number;
executionCount?: bigint;
metricsWindow?:
| "METRICS_WINDOW_UNSPECIFIED"
| "LAST_ONE_DAY"
| "LAST_ONE_WEEK"
| "LAST_TWO_WEEKS";
rowsProcessed?: bigint;
totalCpuTime?: number;
}