Difference between revisions of "Top"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
# Sumo | # Sumo | ||
+ | - https://help.sumologic.com/07Sumo-Logic-Apps/14Hosts_and_Operating_Systems/Host_and_Process_Metrics/Collect_Metrics_for_Host_and_Processes | ||
# Other | # Other | ||
- https://www.cbtnuggets.com/blog/certifications/microsoft/how-to-find-performance-counters-with-powershell | - https://www.cbtnuggets.com/blog/certifications/microsoft/how-to-find-performance-counters-with-powershell |
Revision as of 20:03, 18 August 2022
Windows
Powershell like commands
(Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5} | Sort-Object -Property cookedvalue -Descending