1
Get-AzureRmMetric -DetailedOutput -MetricName '\Processor Information(_Total)\% Processor Time'
這是命令,我只想要平均值。我如何提取它?如何獲取PowerShell上的JSON輸出中的特定值?
下面是它在PS窗口上的外觀。 enter image description here
Get-AzureRmMetric -DetailedOutput -MetricName '\Processor Information(_Total)\% Processor Time'
這是命令,我只想要平均值。我如何提取它?如何獲取PowerShell上的JSON輸出中的特定值?
下面是它在PS窗口上的外觀。 enter image description here
昨天我問了這個問題,雖然我找不到通過PowerShell的直接解決方案,但我確實通過Visual Studio使其工作。這就是我所做的。
基於一點修補,我將輸出存儲爲字符串,然後使用'Regex.Split
'方法處理字符串。