Skip to content

Instantly share code, notes, and snippets.

@manoj-choudhari-git
Created June 28, 2020 23:31
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manoj-choudhari-git/0842b21a2e3f24f01fcb4a91e7141451 to your computer and use it in GitHub Desktop.
Save manoj-choudhari-git/0842b21a2e3f24f01fcb4a91e7141451 to your computer and use it in GitHub Desktop.
Kusto query for getting free disk space percentage
InsightsMetrics
| where Namespace contains "LogicalDisk" and Name contains "FreeSpacePercentage"
| summarize AggregatedValue = avg(Val) by bin(TimeGenerated, 10m), Computer
| render timechart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment