in the dashboard I can't access my databases
in the dashboard I can't access my databases



npx wrangler d1 insights <dbname> you can see query timing data)wrangler d1 insights for historical data (like 31 days) will be inaccurate for a bit
npx wrangler@latest d1 insights <dbname> --sortBy reads --timePeriod 7d, will tell you the queries doing thiswrangler d1 insights, as well as the Cloudflare dashboard (see the Metrics tab for your D1 database). You can use that data to figure out what D1 will cost you. "avgRowsRead": 92284,
"totalRowsRead": 7659605,
"avgRowsWritten": 0,
"totalRowsWritten": 0,
"avgDurationMs": 26.3779313253012,
"totalDurationMs": 2189.3682999999996,
"numberOfTimesRun": 83INSERT INTO db VALUES (1), (2)npx wrangler d1 insights <dbname>