sensors.conf 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. # Global Variables
  9. # These variables set the defaults for all JOBs, however each JOB
  10. # may define its own, overriding the defaults.
  11. # update_every sets the default data collection frequency.
  12. # If unset, the python.d.plugin default is used.
  13. # update_every: 1
  14. # priority controls the order of charts at the netdata dashboard.
  15. # Lower numbers move the charts towards the top of the page.
  16. # If unset, the default for python.d.plugin is used.
  17. # priority: 60000
  18. # penalty indicates whether to apply penalty to update_every in case of failures.
  19. # Penalty will increase every 5 failed updates in a row. Maximum penalty is 10 minutes.
  20. # penalty: yes
  21. # autodetection_retry sets the job re-check interval in seconds.
  22. # The job is not deleted if check fails.
  23. # Attempts to start the job are made once every autodetection_retry.
  24. # This feature is disabled by default.
  25. # autodetection_retry: 0
  26. # ----------------------------------------------------------------------
  27. # Limit the number of sensors types.
  28. # Comment the ones you want to disable.
  29. # Also, re-arranging this list controls the order of the charts at the
  30. # netdata dashboard.
  31. types:
  32. - temperature
  33. - fan
  34. - voltage
  35. - current
  36. - power
  37. - energy
  38. - humidity
  39. # ----------------------------------------------------------------------
  40. # Limit the number of sensors chips.
  41. # Uncomment the first line (chips:) and add chip names below it.
  42. # The chip names that start with like that will be matched.
  43. # You can find the chip names using the sensors command.
  44. #chips:
  45. # - i8k
  46. # - coretemp
  47. #
  48. # chip names can be found using the sensors shell command
  49. # the prefix is matched (anything that starts like that)
  50. #
  51. #----------------------------------------------------------------------