Difference between revisions of "Top"
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
## HTTP Response | ## HTTP Response | ||
``` | ``` | ||
− | $url="cisco.com"; (Measure-Command -Expression { $site = Invoke-WebRequest -Uri $url -UseBasicParsing }).Milliseconds | + | $url="https://cisco.com"; (Measure-Command -Expression { $site = Invoke-WebRequest -Uri $url -UseBasicParsing }).Milliseconds |
``` | ``` | ||
Revision as of 15:52, 19 August 2022
Windows
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