Fair enough, I’m looking more for the usage stats that go into generating billing. Bandwidth usage and VM usage. The usage query above just returns an empty array right now. Am I querying it wrong?
I see I can get some usage data out of:
{
organization(name: "orgname"){
billables(startDate: "2021-05-01", endDate: "2021-06-01"){
nodes{
app{
name
},
category,
product,
quantity,
time
}
}
}
}
That returns a listing for every billable product (vm time, bandwidth) for every app in an entire organization. In my use case there will be many apps under one organization, so this isn’t the ideal way I’d want to query this.
It would much nicer if the appUsage field returned the data just for that app, or if there was some way to filter a query like this by app id/name.