I am writing KQL queries to setup alerting mechanism in our environment. However we got blocked for few alerts.
I need to get total used capacity of storage account in percentage, with below query I am able to get total used Capacity but not in percentage:
AzureMetrics
| where ResourceProvider == "MICROSOFT.STORAGE"
| where MetricName == "UsedCapacity"