Forum Discussion
stuart355
Jan 21, 2020Copper Contributor
Create a new monitor dashboard
Hi I'm new to Azure and am trying to setup a new dashboard that reports on machines that are online and offline. I think the heartbeat monitor should be used but I am struggling with the details of ...
ScottAllison
Jan 27, 2020Iron Contributor
CliveWatson
I'd like to point out that while this is a great leap forward (workbooks, ARG, ARC), Workbooks and ARG are severely limited for very large enterprises. For example, in our org:
- The Agent Health workbook times out--we apparently have far too many machines:
- ARG is extremely limited on what it can return in large environments (status from running your query above):
These limiting problems will only be exacerbated when we deploy ARC for servers. Here's to hoping that Microsoft doesn't forget the large enterprises! 🙂
CliveWatson
Jan 27, 2020Former Employee
1. Thanks for the feedback, let me take a look at that workbook (its not mine!)
2. Regarding ARG, my original query was very basic and could well return too many rows. This (sample) may improve things
resources
| where type in( "microsoft.hybridcompute/machines" , "microsoft.compute/virtualmachines")
| extend statusState = trim(' ', tostring(properties.provisioningState))
| project name, type, statusState, subscriptionId
| summarize count(name) by type
or better still a last row of
| summarize count(name) by type, statusState
I will keep looking at this....
Best wishes Clive