summaryrefslogtreecommitdiffstats
path: root/charts.d
diff options
context:
space:
mode:
authorpaulfantom <paulfantom@gmail.com>2016-06-08 16:35:16 +0200
committerpaulfantom <paulfantom@gmail.com>2016-06-08 16:35:16 +0200
commit2ff99f6a248edfafaef6efbae5a114d210854630 (patch)
tree6b0f6b528f18f1cd0ea8cd7648d107277a9d49f1 /charts.d
parent88e43591df96c9f4948016bbb16f885980939171 (diff)
updated charts.d readme and makefile
Diffstat (limited to 'charts.d')
-rw-r--r--charts.d/Makefile.am1
-rw-r--r--charts.d/README.md30
2 files changed, 31 insertions, 0 deletions
diff --git a/charts.d/Makefile.am b/charts.d/Makefile.am
index 268b4086f7..c7da39ea12 100644
--- a/charts.d/Makefile.am
+++ b/charts.d/Makefile.am
@@ -12,6 +12,7 @@ dist_charts_SCRIPTS = \
crsproxy.chart.sh \
example.chart.sh \
exim.chart.sh \
+ hddtemp.chart.sh \
load_average.chart.sh \
mem_apps.chart.sh \
mysql.chart.sh \
diff --git a/charts.d/README.md b/charts.d/README.md
index fd66c0d6a1..37c9d22ec3 100644
--- a/charts.d/README.md
+++ b/charts.d/README.md
@@ -181,6 +181,36 @@ sensors_source_update=1
# how frequently to collect sensor data
# the default is to collect it at every iteration of charts.d
sensors_update_every=
+
+# array of sensors which are excluded
+# the default is to include all
+sensors_excluded=()
+```
+
+---
+
+# hddtemp
+
+The plugin will collect temperatures from disks
+
+It will create one chart with all active disks
+
+1. **temperature in Celsius**
+
+### configuration
+
+hddtemp needs to be running in daemonized mode
+
+```sh
+# host with daemonized hddtemp
+hddtemp_host="localhost"
+
+# port on which hddtemp is showing data
+hddtemp_port="7634"
+
+# array of included disks
+# the default is to include all
+hddtemp_disks=()
```
---