aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Weiske <cweiske@cweiske.de>2011-02-06 12:59:28 +0100
committerChristian Weiske <cweiske@cweiske.de>2011-02-06 12:59:28 +0100
commit4608405dc7fc16fdde1231e10be2ff76bb0796d8 (patch)
tree781fabb289023448ff483fc2abfdf6141aab4539
parentb47b4cde0022da49c160d40030e79dfc12f2fb30 (diff)
downloadusb-wde1-tools-4608405dc7fc16fdde1231e10be2ff76bb0796d8.tar.gz
usb-wde1-tools-4608405dc7fc16fdde1231e10be2ff76bb0796d8.zip
munin plugin config should work now
-rwxr-xr-xmunin/usb-wde1_17
1 files changed, 10 insertions, 7 deletions
diff --git a/munin/usb-wde1_ b/munin/usb-wde1_
index 388a9b4..44443a8 100755
--- a/munin/usb-wde1_
+++ b/munin/usb-wde1_
@@ -8,12 +8,16 @@
usb-wde1 - Munin plugin to report usb-wde1 temperature and humidity data
=head1 CONFIGURATION
+ The plugin offers two modes: temperature and humidity graphing.
+
+ Symlink usb-wde1_ as "usb-wde1_temperature" and/or "usb-wde1_humidity".
=head2 EXAMPLE CONFIGURATION
- [usb-wde1]
+ [usb-wde1_temperature]
env.logfile /var/log/usb-wde1.log
env.host_name House
+ env.sensors 0 1 2 3 4 7
env.sensor0 Living room
env.sensor1 Kitchen
@@ -24,12 +28,6 @@ usb-wde1 - Munin plugin to report usb-wde1 temperature and humidity data
=cut
-# params:
-# - logfile
-# - sensor names
-# - type (temperature / humidity)
-# - hostname
-
if [ "$1" = "autoconf" ]; then
if [ -r "$logfile" ]; then
echo yes
@@ -57,12 +55,17 @@ if [ "$1" = "config" ]; then
echo 'graph_title Temperature'
echo 'graph_args --base 1000 --lower-limit -30 --upper-limit 60'
echo 'graph_vlabel Temperature'
+ echo 'graph_info Shows the temperature of different thermometers'
else
echo 'graph_title Humidity'
echo 'graph_args --base 1000 --lower-limit 0 --upper-limit 100'
echo 'graph_vlabel Humidity'
+ echo 'graph_info Shows the air humidity of different thermometers (in %)'
fi
echo 'graph_scale no'
echo 'graph_category sensors'
+
#FIXME: warning/critical values
+
+ exit 0
fi \ No newline at end of file