Metrics and analytics
D1 exposes database analytics that allow you to inspect query volume, query latency, and storage size across all and/or each database in your account.
The metrics displayed in the Cloudflare dashboard ↗ charts are queried from Cloudflare’s GraphQL Analytics API. You can access the metrics programmatically via GraphQL or HTTP client.
D1 currently exports the below metrics:
Metric | GraphQL Field Name | Description |
---|---|---|
Read Queries (qps) | readQueries | The number of read queries issued against a database. This is the raw number of read queries, and is not used for billing. |
Write Queries (qps) | writeQueries | The number of write queries issued against a database. This is the raw number of write queries, and is not used for billing. |
Rows read (count) | rowsRead | The number of rows read (scanned) across your queries. See Pricing for more details on how rows are counted. |
Rows written (count) | rowsWritten | The number of rows written across your queries. |
Query Response (bytes) | queryBatchResponseBytes | The total response size of the serialized query response, including any/all column names, rows and metadata. Reported in bytes. |
Query Latency (ms) | queryBatchTimeMs | The total query response time, including response serialization, on the server-side. Reported in milliseconds. |
Storage (Bytes) | databaseSizeBytes | Maximum size of a database. Reported in bytes. |
Metrics can be queried (and are retained) for the past 31 days.
D1 returns the number of rows read, rows written (or both) in response to each individual query via the client API.
Row counts are a precise count of how many rows were read (scanned) or written by that query. Inspect row counts to understand the performance and cost of a given query, including whether you can reduce the rows read using indexes. Use query counts to understand the total volume of traffic against your databases and to discern which databases are actively in-use.
Refer to the Pricing documentation for more details on how rows are counted.
Per-database analytics for D1 are available in the Cloudflare dashboard. To view current and historical metrics for a database:
- Log in to the Cloudflare dashboard ↗ and select your account.
- Go to Workers & Pages > D1 ↗.
- Select an existing database.
- Select the Metrics tab.
You can optionally select a time window to query. This defaults to the last 24 hours.
You can programmatically query analytics for your D1 databases via the GraphQL Analytics API. This API queries the same datasets as the Cloudflare dashboard, and supports GraphQL introspection.
D1’s GraphQL datasets require an accountTag
filter with your Cloudflare account ID and include:
d1AnalyticsAdaptiveGroups
d1StorageAdaptiveGroups
d1QueriesAdaptiveGroups
To query the sum of readQueries
, writeQueries
for a given $databaseId
, grouping by databaseId
and date
:
To query both the average queryBatchTimeMs
and the 90th percentile queryBatchTimeMs
per database:
To query your account-wide readQueries
and writeQueries
:
D1 provides metrics that let you understand and debug query performance. You can access these via GraphQL’s d1QueriesAdaptiveGroups
or wrangler d1 insights
command.
D1 captures your query strings to make it easier to analyze metrics across query executions. Bound parameters are not captured to remove any sensitive information.
To find top 10 queries by execution count:
To find top 10 queries by average execution time:
To find top 10 queries by rows written in last 7 days: