ZabbixでCPU周波数を取得する方法【2.0以降】

今までの方法では、

cat /proc/cpuinfo | grep “cpu MHz” | sed -n -e 1″p” | awk ‘{print $4}’

というコマンドラインでCPU周波数を取得して監視していた。

 

ドキュメントを覗いてみるとこんな記述が…..

system.hw.cpu[<cpu>,<info>]
Returns CPU info String or numeric value cpuCPU number or all (default) info – one of full (default), curfreq, maxfreq, model or vendor Example: system.hw.cpu[0,vendor] AuthenticAMD
Gathers info from /proc/cpuinfo and /sys/devices/system/cpu/[cpunum]/cpufreq/cpuinfo_max_freq. If a CPU number and curfreq or maxfreq is specified, a numeric value is returned (Hz).
Supported since Zabbix agent version 2.0.

おっとこれはサポートされてたって事でいいのかな!?

早速設定開始。 続きを読む ZabbixでCPU周波数を取得する方法【2.0以降】