如何用powershell检查网站响应时间,并计算网站执行时间,使用Invoke-WebReques查看网站的响应,再使用Measure-Command计算执行的时间就可以。
用powershell检查命令的执行时间。
例如,使用Invoke-WebReques查看网站的响应,再使用Measure-Command计算执行的时间。
复制代码 代码示例:
$url = 'http://www.powershell.com'
# track execution time:
$timeTaken = Measure-Command -Expression {
$site = Invoke-WebRequest -Uri $url
}
$milliseconds = $timeTaken.TotalMilliseconds
$milliseconds = [Math]::Round($milliseconds, 1)
"This took $milliseconds ms to execute"
代码说明:
其中返回的时间间隔属性中包涵了一个“TotalMilliseconds”属性;
如果有必须要你也可以使用Round()函数将其化整,这个例子中将保留小数点后第一位。