Created
July 12, 2019 19:59
-
-
Save PixelRobots/1dc33cec4271cf987f4dcbe9670d2751 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Perf | |
| where ObjectName == "Process" and CounterName == "% Processor Time" | |
| where InstanceName contains "dropbox" | |
| summarize Running_Instances = dcount(InstanceName) by Computer | |
let StartDate = datetime("2019-06-30 22:46:42"); | |
let EndDate = datetime("2019-07-01 00:57:27"); | |
Perf | |
| where TimeGenerated between(StartDate .. EndDate) | |
| where ObjectName == "Process" and CounterName == "% Processor Time" | |
| where InstanceName contains "DropBox" | |
| summarize Running_Instances = dcount(InstanceName) by Computer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment