]> arthur.barton.de Git - netdata.git/blob - conf.d/python.d/sensors.conf
postgres_plugin: module configuration file update
[netdata.git] / conf.d / python.d / sensors.conf
1 # netdata python.d.plugin configuration for sensors
2 #
3 # This file is in YaML format. Generally the format is:
4 #
5 # name: value
6 #
7
8 # ----------------------------------------------------------------------
9 # Global Variables
10 # These variables set the defaults for all JOBs, however each JOB
11 # may define its own, overriding the defaults.
12
13 # update_every sets the default data collection frequency.
14 # If unset, the python.d.plugin default is used.
15 # update_every: 1
16
17 # priority controls the order of charts at the netdata dashboard.
18 # Lower numbers move the charts towards the top of the page.
19 # If unset, the default for python.d.plugin is used.
20 # priority: 60000
21
22 # retries sets the number of retries to be made in case of failures.
23 # If unset, the default for python.d.plugin is used.
24 # Attempts to restore the service are made once every update_every
25 # and only if the module has collected values in the past.
26 # retries: 5
27
28 # ----------------------------------------------------------------------
29 # Limit the number of sensors types.
30 # Comment the ones you want to disable.
31 # Also, re-arranging this list controls the order of the charts at the
32 # netdata dashboard.
33
34 types:
35   - temperature
36   - fan
37   - voltage
38   - current
39   - power
40   - energy
41   - humidity
42
43 # ----------------------------------------------------------------------
44 # Limit the number of sensors chips.
45 # Uncomment the first line (chips:) and add chip names below it.
46 # The chip names that start with like that will be matched.
47 # You can find the chip names using the sensors command.
48
49 #chips:
50 #  - i8k
51 #  - coretemp
52 #
53 # chip names can be found using the sensors shell command
54 # the prefix is matched (anything that starts like that)
55 #
56 #----------------------------------------------------------------------
57 # To change celsius to fahrenheit uncomment line below
58 #fahrenheit: True