ディスク容量不足などのイベントが発生したときに、snmpd が監視システムに通知するようにしたいと考えています。Debian 8 で snmpd を使用しています。
私の snmpd.conf ファイルは次のようになります:
##
# Daemon
##
agentAddress udp:161
master agentx
dontLogTCPWrappersConnects 1
##
# Authentication
##
agentSecName authOnlyUser
#rouser internalUser
view systemonly included .1.3.6.1.2.1.1
view systemonly included .1.3.6.1.2.1.25.1
rocommunity modify
rouser authOnlyUser
rwuser authPrivUser priv
##
# Process Monitoring
##
proc sshd
proc ntpd
proc nginx
##
# Disk Monitoring
# 10MBs required on root disk, 5% free on /var, 10% free on all other disks
##
disk / 10000
disk /var 5%
includeAllDisks 10%
##
# System Load
##
monitor machineTooBusy hrProcessorLoad > 90
load 12 10 5 # Unacceptable 1-, 5-, and 15-minute load averages
##
# Event MIB - automatically generate alerts
##
defaultMonitors yes
linkUpDownNotifications no
##
# Send events to spectrum
##
informsink 172.16.102.98 public
実行すると、snmpd -Lo -d -r 10 -f
nginx を停止し、意図的にファイル システムをいっぱいにします。送信されたトラップは表示されません。tcpdump を実行すると、スタートアップ トラップとシャットダウン トラップが送信されているのを確認できますが、他のトラップは生成されません。
「authOnlyUser」ユーザーを作成しました。
何か単純で馬鹿げたことをやっているのは確かだが、それが何なのか分からない。