我正在尝试使用 powershell 设置一个脚本,该脚本每隔一定时间生成 blg 文件。我知道这可以使用 perfmon XML 模板来完成,但是对于这个特定的项目,如果可能的话,我必须使用 powershell 来完成。
我的主要问题是我无法将要使用的性能计数器列表存储在变量中并重用它们。
我尝试使用以下脚本创建要使用的性能计数器列表:
$Counters = @()
$Counters += '\Memory\Available Bytes'
$counters += '\Paging File(*)\% Usage'
$Counters += '\PhysicalDisk(*)\Disk Reads/sec'
$Counters += '\PhysicalDisk(*)\Disk Writes/sec'
$Counters += '\PhysicalDisk(*)\Avg. Disk sec/Read'
$Counters += '\PhysicalDisk(*)\Avg. Disk sec/Write'
$Counters += '\Processor(*)\% Processor Time'
$Counters += '\System\Processor Queue Length'
foreach($counter in $Counters)
{
$string = $string + ", '" + $counter + "'"
$string = $string.TrimStart(",")
}
如果我继续使用 get-counter $string 我收到以下错误:
Get-Counter : The specified counter path could not be interpreted.
然而,当我复制字符串的确切值并使用$string 的 get-counter -counter 值时,它可以正常工作......
有人可以建议我让get-counter使用数组或带有计数器列表的字符串吗?
当我使用你的
+=
块时,我得到$counters
一个长连接字符串。那可能不是你想要的。如果你
$counters
明确地制作一个数组,事情会更好一些。