Dec 28, 2024
Point Stack Dyno at a BigQuery dataset with clean billing data and keep it fresh.

Stack Dyno reads from the native Google Cloud Billing export so you never ship CSVs again. Use this checklist to wire it up.
stackdyno_billing.# Example dataset creation
bq --location=US mk --dataset my-project:stackdyno_billing
BigQuery Data Viewer on the dataset.BigQuery Job User on the project to allow ad-hoc queries.Verify that new partitions arrive at least daily:
SELECT MAX(_PARTITIONTIME) AS latest_partition
FROM `my-project.stackdyno_billing.gcp_billing_export_*`;
Add this query to a scheduled monitor or Stack Dyno alert so you know if Google stops pushing data.
frontend-user/.env with BILLING_EXPORT_TABLE=project.dataset.table.STACK_DYNO_BILLING_EXPORT_TABLE before launching.Once complete, the spending flow, commitment coverage, and forecasting cards show real numbers instead of demo data.
Need more depth? Check the related guides or ping us for a live walk-through.
Read the blog