简体   繁体   中英

Schedule-Export Billing Invoice of Azure Resource-Group cost analysis monthly

I want to automatically get the Billing Invoice details of my Azure Resource-group on a monthly basis using the Schedule Export feature in Azure Cost-Management. I'm able to create a monthly export. However, I'm not able to get the entire month's invoice details. Eg. Oct2020, Nov2020, Dec2020.

Instead this is the format in which my invoice is getting exported -->

计费发票期

This doesn't prove to be useful to me because I need to get the billing and invoice details for the entire month. And the invoice should automatically be exported monthly. Eg. Oct2020 then next -> Nov2020 then next -> Dec2020, so on & so forth.

Any advise on how to achieve this? Thanks in advance!

As you mentioned, the scheduled exports doesn't support invoice-wise data export. However, here is what you can do:

  • Use Azure Cost Management Query API to generate the usage for the invoice period using the custom timeframe value.
  • Convert the JSON response to CSV.
  • Export the file to Storage Account.

Currently, the Query API supports grouping up to 10 dimensions. If you need the complete dataset, you can use Usage List API instead of Query API. In the Usage List API, you can specify the start and end date (as per your invoice) using the $filter parameter. Rest of the process is same.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM