Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecutionStats

import type { ExecutionStats } from "https://googleapis.deno.dev/v1/datastore:v1.ts";

Execution statistics for the query.

interface ExecutionStats {
debugStats?: {
[key: string]: any;
}
;
executionDuration?: number;
readOperations?: bigint;
resultsReturned?: bigint;
}

§Properties

§
debugStats?: {
[key: string]: any;
}
[src]

Debugging statistics from the execution of the query. Note that the debugging stats are subject to change as Firestore evolves. It could include: { "indexes_entries_scanned": "1000", "documents_scanned": "20", "billing_details" : { "documents_billable": "20", "index_entries_billable": "1000", "min_query_cost": "0" } }

§
executionDuration?: number
[src]

Total time to execute the query in the backend.

§
readOperations?: bigint
[src]

Total billable read operations.

§
resultsReturned?: bigint
[src]

Total number of results returned, including documents, projections, aggregation results, keys.