Hi all,
should anyone else be interested in tracking the actual costs of individual computes within AML, here is an Azure CLI command that is a great place to start. Within the "additionalProperties" field is the cluster detail information.
(az consumption usage list --subscription $subscription --start-date $start_date --end-date $end_date --query "[?contains(consumedService, 'Microsoft.MachineLearningServices') && contains(instanceName, $resource_group) && contains(product, 'Virtual Machine')]" --include-additional-properties | ConvertFrom-Json) | select additionalProperties, pretaxCost, product, usageStart, usageEnd
This command can be used to retrieve the cost detail of all resources on Azure.
GCocci