Show disks per computer as graph #150
Unanswered
cmptscpeacock
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
I have these Log Analytics queries that show the space per disk per computer. How can I render a timechart showing each disk of each computer?
Currently:
InsightsMetrics
| where Origin == "vm.azm.ms"
| where Namespace == "LogicalDisk" and Name == "FreeSpacePercentage"
| extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"])
| project TimeGenerated, Computer, Disk, Val
When I add render timechart we see what looks to be a total or average of all the disks per vm, rather than each disk of each vm:
InsightsMetrics
| where Origin == "vm.azm.ms"
| where Namespace == "LogicalDisk" and Name == "FreeSpacePercentage"
| extend Disk=tostring(todynamic(Tags)["vm.azm.ms/mountId"])
| project TimeGenerated, Computer, Disk, Val
| render timechart
TIA!
Beta Was this translation helpful? Give feedback.
All reactions