zabbix笔记之Windows性能监视器
由于Windows下的性能监视器可将Windows性能数字化,让zabbix监控更加轻松,直接获取性能计数器的数值即可完成windows监控。
per_counter[counter,{interval}]
说明: counter:性能监视器的计数器 interval:间隔多长时间刷新一次
perf_counter["\Processor(0)\Interrupts/sec",10] perf_counter["\Processor(0)\Interrupts/sec"]
获取所有性能计数器命令
typeperf -qx 数字对应 如上的perf_counter["\Processor(0)\Interrupts/sec"],里面的\Processor(0)\Interrupts/sec很难记忆,而且不同的windows系统名称不可能不相同,这可能会导致获取到错误的值。基于此,windows有相应的数字与名称对应,比如:system对应2,Memory对应4,有几千个性能计数器名称与数字对。那怎么找到名称对应的数字呢?
打开注册表Regedit,找到HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Perflib\009,打开key counter,将其复制出来即可
例如:
\Process(RecordServerAvayaDMCC)\Working Set – Private 可以写成perf_counter[\230(RecordServerAvayaDMCC)\1478]