Created
March 7, 2019 23:35
-
-
Save vinoaj/47b0063ac851735cfcdfe7c1755bdc0e to your computer and use it in GitHub Desktop.
BigQuery SQL for GCP Billing Reports: Total BigQuery Costs over the last year
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#standardSQL | |
SELECT | |
project.id | |
, service.description | |
, ROUND(SUM(cost),2) AS total_cost | |
FROM `<project_id>.<dataset_id>.gcp_billing_export_v1_XXXXXX_XXXXXX_XXXXXX` | |
WHERE _PARTITIONTIME BETWEEN TIMESTAMP(DATE_SUB(CURRENT_DATE(), INTERVAL 365 DAY)) AND TIMESTAMP(CURRENT_DATE()) | |
AND STARTS_WITH(service.description, 'BigQuery') | |
GROUP BY project.id, service.description | |
ORDER BY total_cost DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment