■CPUとHDDをmuninで監視する設定メモ
稼働中のマシンのCPU温度やHDDの状況をmuninで監視する設定のメモ。
■CPU温度の監視
事前にlm_sensors設定を行っていること
・有効な設定の確認をする
# /usr/share/munin/plugins/sensors_ suggest
・temp設定を追加する
# cd /etc/munin/plugins/
# ln -s /usr/share/munin/plugins/sensors_ sensors_temp
・動作確認
# /usr/sbin/munin-run -servicedir /etc/munin/plugins sensors_temp
・設定を有効にする
# service munin-node restart
■HDDの温度及びSMARTデータの監視
HDDがSMART対応の必要があるので注意
・温度監視を追加
# cd /etc/munin/plugins/
# ln -s /usr/share/munin/plugins/hddtemp_smartctl hddtemp_smartctl
・SMARTデータの監視追加
# ln -s /usr/share/munin/plugins/smart_ smart_sda
・設定ファイルを作成して設定追加
# vi /etc/munin/plugin-conf.d/hddtemp_smartctl
以下を追記
env.drives sda
env.type_sda ata
# vi /etc/munin/plugin-conf.d/smart_
以下を追記
[smart_*]
user root
[smart_sda]
env.smartargs -d ata
・動作確認
# /usr/sbin/munin-run -servicedir /etc/munin/plugins hddtemp_smartctl
# /usr/sbin/munin-run -servicedir /etc/munin/plugins smart_sda
以下のエラーが出た場合には修正をする
Traceback (most recent call last):
File “/etc/munin/plugins/smart_sda”, line 398, in ?
exit(0)
TypeError: ‘str’ object is not callable
398行目の exit(0) → sys.exit(0) に修正
・設定を有効にする
# service munin-node restart
CPUとHDDをmuninで監視する設定メモ http://t.co/MdPOluwz #munin #scientific #centos #coretemp