From wschroeder at expertnetworks.us Fri Feb 14 14:26:47 2014 From: wschroeder at expertnetworks.us (William Schroeder) Date: Fri, 14 Feb 2014 19:26:47 -0000 Subject: Argus 3.7 (Duplicate Notifications) Message-ID: 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::disk_used_c} / %{Top:All-Devices::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 "
" { sendnotify: no Alias "" "Top:All-Devices:" }