Top

From UVOO Tech Wiki
Jump to navigation Jump to search

Windows

https://tech.uvoo.io/index.php/Get-counter

Powershell like commands

(Get-Counter '\Process(*)\% Processor Time').CounterSamples | Where-Object {$_.CookedValue -gt 5} | Sort-Object -Property cookedvalue -Descending

HTTP Response

$url="https://cisco.com"; (Measure-Command -Expression { $site = Invoke-WebRequest -Uri $url -UseBasicParsing }).Milliseconds

Sumo

Other