Created
June 12, 2018 13:44
-
-
Save thekensta/6260a8dee773cea3f6a232a0141ab8c1 to your computer and use it in GitHub Desktop.
Big Query Costs By User
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
/* | |
# https://cloud.google.com/bigquery/audit-logs#sample_audit_queries_in_bigquery | |
select | |
protopayload_auditlog.authenticationInfo.principalEmail as user_email, | |
protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobConfiguration.query.query, | |
-- protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobStatus.state, | |
-- protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobStatus.error.code, | |
-- protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobStatus.error.message, | |
sum(protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobStatistics.totalBilledBytes) billedBytes, | |
FORMAT('%9.2f',5.0 * (SUM(protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent.job.jobStatistics.totalBilledBytes)/1000000000000)) as Estimated_USD_Cost | |
from `audit_log.cloudaudit_googleapis_com_data_access_20180610` | |
where protopayload_auditlog.methodName = 'jobservice.jobcompleted' | |
group by 1, 2 | |
order by billedBytes desc | |
*/ | |
WITH data as | |
( | |
SELECT | |
extract(date from timestamp) as jobDate, | |
protopayload_auditlog.authenticationInfo.principalEmail as principalEmail, | |
protopayload_auditlog.servicedata_v1_bigquery.jobCompletedEvent as jobCompletedEvent | |
FROM | |
`audit_log.cloudaudit_googleapis_com_data_access_2018*` | |
) | |
SELECT | |
jobDate, | |
principalEmail, | |
FORMAT('%9.2f',5.0 * (SUM(jobCompletedEvent.job.jobStatistics.totalBilledBytes)/1000000000000)) as Estimated_USD_Cost | |
FROM | |
data | |
WHERE | |
jobCompletedEvent.eventName = 'query_job_completed' | |
GROUP BY jobDate, principalEmail | |
ORDER BY Estimated_USD_Cost DESC | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment