-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RW-6021][risk=no] Add workspace_free_tier_usage to reporting BQ data…
…set (#9)
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
modules/workbench/modules/reporting/assets/schemas/workspace_free_tier_usage.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[ | ||
{ | ||
"description": "Time snapshot was taken, in Epoch milliseconds. Same across all rows and all tables in the snapshot, and uniquely defines a particular snapshot.", | ||
"name": "snapshot_timestamp", | ||
"type": "INTEGER" | ||
}, | ||
{ | ||
"name": "cost", | ||
"type": "FLOAT64", | ||
"description": "Free tier usage cost for this workspace." | ||
}, | ||
{ | ||
"name": "user_id", | ||
"type": "INTEGER", | ||
"description": "ID of the user whose free tier quota was billed for this workspace." | ||
}, | ||
{ | ||
"name": "workspace_id", | ||
"type": "INTEGER", | ||
"description": "ID of the workspace associated with this free tier cost." | ||
} | ||
] |