Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 391 Bytes

usage-of-computers-today.md

File metadata and controls

13 lines (11 loc) · 391 Bytes

Usage of specific computers today

#contains #sort

This example retrieves Usage data from the last day for computer names that contains the string "ContosoFile". The results are sorted by "TimeGenerated".

Usage
| where TimeGenerated > ago(1d)
| where  Computer contains "ContosoFile" 
| sort by TimeGenerated desc nulls last