Try the workbook here: https://pastebin.com/2XaGUNKx
It was modified using AI, and I haven't been able to test it.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want to create a workbook that displays only affected resources on dashboard. For example, out of my 50 storage accounts, 20 of them have used 80% or above storage capacity. so i want to display only those storage accounts on my dashboard.
Another scenario, i have 50 VMs and 17 of them have CPU usage above 90%. So out of 50 only 17 VMs should be displayed in the workbook.
I have tried creating a workbook with resource graph query but unable to achieve above mentioned scenario.
Try the workbook here: https://pastebin.com/2XaGUNKx
It was modified using AI, and I haven't been able to test it.
Like the storage Workbook you'll need a some KQL like this to find the CPU threshold, its not in the ARG, so you'll need some other data. This will form the dropdown in the workbook or just hardcoded into a query/grid.
InsightsMetrics
| where Name == 'UtilizationPercentage'
| where Val > 90