mirror of
https://github.com/munin-monitoring/contrib.git
synced 2025-07-22 02:51:03 +00:00
commit
e3c6fe06c8
1 changed files with 28 additions and 6 deletions
|
@ -61,7 +61,7 @@ EXAMPLES and USAGE for details).
|
||||||
Link this plugin to /etc/munin/plugins/ and restart the munin-node. The link
|
Link this plugin to /etc/munin/plugins/ and restart the munin-node. The link
|
||||||
should be in the format: dspam_<graph>_<target>, where:
|
should be in the format: dspam_<graph>_<target>, where:
|
||||||
|
|
||||||
graph - One of: accuracy, processed, processed_abs.
|
graph - One of: accuracy, processed, absprocessed, relprocessed.
|
||||||
target - The uid that DSPAM generates in dspam_stats output,
|
target - The uid that DSPAM generates in dspam_stats output,
|
||||||
but converted to Munin internal name format. Normally
|
but converted to Munin internal name format. Normally
|
||||||
this means that non-alphabetic and non-numeral characters
|
this means that non-alphabetic and non-numeral characters
|
||||||
|
@ -88,7 +88,11 @@ The plugin supports the following graph types:
|
||||||
numbers are stacked, making the height of the column
|
numbers are stacked, making the height of the column
|
||||||
display the increase of processed messages over time.
|
display the increase of processed messages over time.
|
||||||
|
|
||||||
processed - Shows the same data as dspam_processed_abs_, but as
|
relprocessed - Shows the same data as dspam_absprocessed_, but as
|
||||||
|
messages per minute instead of ever-growing asolute
|
||||||
|
values.
|
||||||
|
|
||||||
|
processed - Shows the same data as dspam_absprocessed_, but as
|
||||||
percentage of the total amount of processed messages,
|
percentage of the total amount of processed messages,
|
||||||
making it clear to see how the amounts of classified
|
making it clear to see how the amounts of classified
|
||||||
messages are divided.
|
messages are divided.
|
||||||
|
@ -211,7 +215,16 @@ file_is_locked() {
|
||||||
local file=$1
|
local file=$1
|
||||||
local lock=$1.lock
|
local lock=$1.lock
|
||||||
|
|
||||||
[ -f $lock ] && debug file $file is locked && return 0 # EX_OK
|
if [ -f "$lock" ];then
|
||||||
|
debug file $file is locked
|
||||||
|
local pid=$(cat "$lock")
|
||||||
|
if ps h -p "$pid" -o comm=|grep -q dspam_; then
|
||||||
|
return 0 # EX_OK
|
||||||
|
else
|
||||||
|
debug lock for file $file is no longer valid
|
||||||
|
file_remove_lock $file
|
||||||
|
fi
|
||||||
|
fi
|
||||||
debug file $file is not locked
|
debug file $file is not locked
|
||||||
return 69 # EX_UNAVAILABLE
|
return 69 # EX_UNAVAILABLE
|
||||||
}
|
}
|
||||||
|
@ -331,6 +344,7 @@ print_suggest() {
|
||||||
echo accuracy_ALL
|
echo accuracy_ALL
|
||||||
echo processed_ALL
|
echo processed_ALL
|
||||||
echo absprocessed_ALL
|
echo absprocessed_ALL
|
||||||
|
echo relprocessed_ALL
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -429,7 +443,7 @@ print_config() {
|
||||||
echo nc.draw AREASTACK
|
echo nc.draw AREASTACK
|
||||||
;;
|
;;
|
||||||
|
|
||||||
absprocessed)
|
*processed)
|
||||||
if [ -n "$pattern" ]; then
|
if [ -n "$pattern" ]; then
|
||||||
debug env.pattern was set, so use it: $pattern
|
debug env.pattern was set, so use it: $pattern
|
||||||
local uid=$description
|
local uid=$description
|
||||||
|
@ -452,26 +466,34 @@ print_config() {
|
||||||
echo "graph_title Processed messages for $uid"
|
echo "graph_title Processed messages for $uid"
|
||||||
echo graph_category spamfilter
|
echo graph_category spamfilter
|
||||||
echo graph_args --base 1000
|
echo graph_args --base 1000
|
||||||
echo graph_vlabel Messages
|
[ "$graph" = absprocessed ] && echo graph_vlabel Messages
|
||||||
|
[ "$graph" = relprocessed ] && echo graph_vlabel Messages / minute
|
||||||
|
[ "$graph" = relprocessed ] && echo graph_period minute
|
||||||
echo graph_total Total
|
echo graph_total Total
|
||||||
echo "graph_info This graph shows the messages that DSPAM processed for $uid ($uid_count uids). Messages are divided in the following categories: true positives/negatives, false positives/negatives, and corpusfed ham/spam."
|
echo "graph_info This graph shows the messages that DSPAM processed for $uid ($uid_count uids). Messages are divided in the following categories: true positives/negatives, false positives/negatives, and corpusfed ham/spam."
|
||||||
echo tp.label True positives
|
echo tp.label True positives
|
||||||
echo tp.info Spam messages correctly classified as spam.
|
echo tp.info Spam messages correctly classified as spam.
|
||||||
|
[ "$graph" = relprocessed ] && echo tp.type DERIVE
|
||||||
echo tp.draw AREASTACK
|
echo tp.draw AREASTACK
|
||||||
echo tn.label True negatives
|
echo tn.label True negatives
|
||||||
echo tn.info Ham messages correctly classified as ham.
|
echo tn.info Ham messages correctly classified as ham.
|
||||||
|
[ "$graph" = relprocessed ] && echo tn.type DERIVE
|
||||||
echo tn.draw AREASTACK
|
echo tn.draw AREASTACK
|
||||||
echo fp.label False positives
|
echo fp.label False positives
|
||||||
echo fp.info Ham messages incorrectly classified as spam, but corrected by the user.
|
echo fp.info Ham messages incorrectly classified as spam, but corrected by the user.
|
||||||
|
[ "$graph" = relprocessed ] && echo fp.type DERIVE
|
||||||
echo fp.draw AREASTACK
|
echo fp.draw AREASTACK
|
||||||
echo fn.label False negatives
|
echo fn.label False negatives
|
||||||
echo fn.info Spam messages incorrectly classified as ham, but corrected by the user.
|
echo fn.info Spam messages incorrectly classified as ham, but corrected by the user.
|
||||||
|
[ "$graph" = relprocessed ] && echo fn.type DERIVE
|
||||||
echo fn.draw AREASTACK
|
echo fn.draw AREASTACK
|
||||||
echo sc.label Corpusfed spam
|
echo sc.label Corpusfed spam
|
||||||
echo sc.info Spam messages from a collected corpus for training purposes.
|
echo sc.info Spam messages from a collected corpus for training purposes.
|
||||||
|
[ "$graph" = relprocessed ] && echo sc.type DERIVE
|
||||||
echo sc.draw AREASTACK
|
echo sc.draw AREASTACK
|
||||||
echo nc.label Corpusfed ham
|
echo nc.label Corpusfed ham
|
||||||
echo nc.info Ham messages from a collected corpus for training purposes.
|
echo nc.info Ham messages from a collected corpus for training purposes.
|
||||||
|
[ "$graph" = relprocessed ] && echo nc.type DERIVE
|
||||||
echo nc.draw AREASTACK
|
echo nc.draw AREASTACK
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
@ -560,7 +582,7 @@ print_fetch() {
|
||||||
echo nc.value $(abs2perc $all_nc $total)
|
echo nc.value $(abs2perc $all_nc $total)
|
||||||
;;
|
;;
|
||||||
|
|
||||||
absprocessed)
|
*processed)
|
||||||
if [ -n "$pattern" ]; then
|
if [ -n "$pattern" ]; then
|
||||||
debug env.pattern was set, so use it: $pattern
|
debug env.pattern was set, so use it: $pattern
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue