summaryrefslogtreecommitdiffstats
path: root/temper/collectd-temper.sh
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2012-11-22 18:26:33 +0100
committermakefu <github@syntax-fehler.de>2012-11-22 18:26:33 +0100
commit431afde0bfcbbccb4c7dad0cece3552384ba2862 (patch)
tree4f2584267ca28a4af74af6a5666f4542b12cf944 /temper/collectd-temper.sh
parentba4faba47f74c9258f0748af7720150ab757c7dc (diff)
retiolum: add find_super
script finds potential supernodes based on the open tinc port. if a dedicated port is added, the script will fail to produce correct output but it gives a good overview of the current supernode constellation
Diffstat (limited to 'temper/collectd-temper.sh')
-rwxr-xr-xtemper/collectd-temper.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/temper/collectd-temper.sh b/temper/collectd-temper.sh
new file mode 100755
index 00000000..f66e9acc
--- /dev/null
+++ b/temper/collectd-temper.sh
@@ -0,0 +1,9 @@
+HOSTNAME="${COLLECTD_HOSTNAME:-localhost}"
+INTERVAL="${COLLECTD_INTERVAL:-30}"
+TEMPERNAME="${TEMPERNAME:-external}"
+TEMPERBIN="${TEMPERBIN:-/krebs/temper/temper}"
+#while sleep "$INTERVAL"; do
+ VALUE=`$TEMPERBIN`
+ echo "PUTVAL \"$HOSTNAME/sensors-temper/temperature-$TEMPERNAME\" N:$VALUE" #interval=$INTERVAL
+ logger "PUTVAL \"$HOSTNAME/sensors-temper/temperature-$TEMPERNAME\" N:$VALUE" #interval=$INTERVAL
+#done