Argus 3.7 (Duplicate Notifications)

William Schroeder wschroeder at expertnetworks.us
Fri Feb 14 14:26:47 EST 2014


I never had this problem in 3.6 but in 3.7. An example is with the config excerpt below. If the compute crosses a threshold to warn, it sends five notifications immediately. When the threshold drops below it sends five clears as well.

renotify:              1800
renotify.major:  3600
renotify.minor:  7200
renotify.warning:             14400

All-Devices {
frequency: 1min
               retries: 3

# ... down into the server
Service UDP/SNMP {
               # determine total space
               sendnotify: no
               severity: minor
               hidden: yes
               oid: .1.3.6.1.2.1.25.2.3.1.5.2
               uname: disk_total_c
}
Service UDP/SNMP {
               # determine space used
               sendnotify: no
               severity: minor
               hidden: yes
               oid: .1.3.6.1.2.1.25.2.3.1.6.2
               uname: disk_used_c
}
Service Compute {
               # determines percent of used space
               expr: int(( %{Top:All-Devices:<server>:disk_used_c} / %{Top:All-Devices:<server>:disk_total_c} ) * 100 )
               gr_range: 0-100
               ylabel: percent used
               graph: yes
               drawgrid: yes
               label: disk usage on C:
               uname: disk_usage_c
               renotify:       86400
               maxvalue.warning: 90
               maxvalue.major: 95
               messagedn: Disk usage (C:) at %v%
               messageup: Disk usage (C:) lowered to %v%
}

Group "<Section>" {
               sendnotify: no
               Alias "<server>" "Top:All-Devices:<server>"
}


More information about the Arguslist mailing list