summaryrefslogtreecommitdiffstats
path: root/charts.d
diff options
context:
space:
mode:
authorpaulfantom <paulfantom@gmail.com>2016-06-07 21:50:38 +0200
committerpaulfantom <paulfantom@gmail.com>2016-06-07 21:50:38 +0200
commit9a8ab8a46b20199016ae586c0b29efda27fcd50e (patch)
treed17a1ba6d97dd1daa0930cfef0b3136bc12948d5 /charts.d
parente71f2d62cd25d7ef81afb1b5ba89cf49f2f0f6f5 (diff)
remove unnecessary forks; add checking if disk is sleeping; remove disk name from legend
Diffstat (limited to 'charts.d')
-rwxr-xr-xcharts.d/hddtemp.chart.sh17
1 files changed, 9 insertions, 8 deletions
diff --git a/charts.d/hddtemp.chart.sh b/charts.d/hddtemp.chart.sh
index e42db092b9..9677bef4bd 100755
--- a/charts.d/hddtemp.chart.sh
+++ b/charts.d/hddtemp.chart.sh
@@ -24,12 +24,13 @@ hddtemp_create() {
unset hddtemp_disks
hddtemp_disks=( `grep -Po '/dev/[^|]+' <<< "$all" | cut -c 6-` )
fi
- local disk_names
- disk_names=(`sed -e 's/||/\n/g;s/^|//' <<< "$all" | cut -d '|' -f2 | tr ' ' '_'`)
+# local disk_names
+# disk_names=(`sed -e 's/||/\n/g;s/^|//' <<< "$all" | cut -d '|' -f2 | tr ' ' '_'`)
echo "CHART hddtemp.temperature 'disks_temp' 'temperature' 'Celsius' 'Disks temperature' 'hddtemp.temp' line $((hddtemp_priority)) $hddtemp_update_every"
for i in `seq 0 $((${#hddtemp_disks[@]}-1))`; do
- echo "DIMENSION ${hddtemp_disks[i]} ${disk_names[i]} absolute 1 1"
+ #echo "DIMENSION ${hddtemp_disks[i]} ${disk_names[i]} absolute 1 1"
+ echo "DIMENSION ${hddtemp_disks[i]} '' absolute 1 1"
done
return 0
}
@@ -38,14 +39,14 @@ hddtemp_create() {
hddtemp_last=0
hddtemp_count=0
hddtemp_update() {
- #local all
-
- local all=( `nc $hddtemp_host $hddtemp_port | sed -e 's/||/\n/g;s/^|//' | cut -d '|' -f3` )
+# local all=( `nc $hddtemp_host $hddtemp_port | sed -e 's/||/\n/g;s/^|//' | cut -d '|' -f3` )
+ local all=( `nc $hddtemp_host $hddtemp_port | awk 'BEGIN { FS="|" };{i=4; while (i <= NF) {print $i+0;i+=5;};}'` )
# write the result of the work.
echo "BEGIN hddtemp.temperature $1"
- for i in `seq 0 $((${#hddtemp_disks[@]}-1))`; do
- echo "SET ${hddtemp_disks[i]} = ${all[i]}"
+ end=${#hddtemp_disks[@]}
+ for ((i=0; i<end; i++)); do
+ echo "SET ${hddtemp_disks[$i]} = ${all[$i]}"
done
echo "END"