We burn through about $2,500 / month in Azure services, meaning we have plenty of services that we are getting billed for each day.
I use the Azure Powershell command Get-AzureRmConsumptionUsageDetail
to get my billing data each day.
For billing dates after 12/21/2017 the powershell command does not return any data.
If I ask for data prior to 12/22/2017 I get data, so my setup is working correctly.
Is there some end of year thing going on or what?
$startDate = 12/27/2017
$endDate = 12/27/2017
Get-AzureRmConsumptionUsageDetail-StartDate $startDate-EndDate $endDate|
ConvertTo-Json>$fileName
does not work
$startDate = 12/21/2017
$endDate = 12/21/2017
Works. This has been working for 12 months. Now starting the 22nd it does not work.
Thank you, Terrence
===============================================================
So I am looping through an array of dates. From the uploaded picture of my directory, you can see that Azure is not returning any data after 01/19/2018.
Could someone from Azure address why no data is returned from these dates?