]> arthur.barton.de Git - netdata.git/commitdiff
updated charts.d readme and makefile
authorpaulfantom <paulfantom@gmail.com>
Wed, 8 Jun 2016 14:35:16 +0000 (16:35 +0200)
committerpaulfantom <paulfantom@gmail.com>
Wed, 8 Jun 2016 14:35:16 +0000 (16:35 +0200)
charts.d/Makefile.am
charts.d/README.md

index 268b4086f7cb88733942764c70b175495e9ceda1..c7da39ea12512e8fe764dfaa9e10c4bf166d64da 100644 (file)
@@ -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 \
index fd66c0d6a14526128a5655641cba8b6f2312c3a1..37c9d22ec39b92134e8831a287f2f5e2f45d34f0 100644 (file)
@@ -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=()
 ```
 
 ---