metadata.yaml 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. plugin_name: python.d.plugin
  2. modules:
  3. - meta:
  4. plugin_name: python.d.plugin
  5. module_name: hddtemp
  6. monitored_instance:
  7. name: HDD temperature
  8. link: https://linux.die.net/man/8/hddtemp
  9. categories:
  10. - data-collection.hardware-devices-and-sensors
  11. icon_filename: "hard-drive.svg"
  12. related_resources:
  13. integrations:
  14. list: []
  15. info_provided_to_referring_integrations:
  16. description: ""
  17. keywords:
  18. - hardware
  19. - hdd temperature
  20. - disk temperature
  21. - temperature
  22. most_popular: false
  23. overview:
  24. data_collection:
  25. metrics_description: |
  26. This collector monitors disk temperatures.
  27. method_description: |
  28. It uses the `hddtemp` daemon to gather the metrics.
  29. supported_platforms:
  30. include:
  31. - Linux
  32. exclude: []
  33. multi_instance: true
  34. additional_permissions:
  35. description: ""
  36. default_behavior:
  37. auto_detection:
  38. description: By default, this collector will attempt to connect to the `hddtemp` daemon on `127.0.0.1:7634`
  39. limits:
  40. description: ""
  41. performance_impact:
  42. description: ""
  43. setup:
  44. prerequisites:
  45. list:
  46. - title: Run `hddtemp` in daemon mode
  47. description: |
  48. You can execute `hddtemp` in TCP/IP daemon mode by using the `-d` argument.
  49. So running `hddtemp -d` would run the daemon, by default on port 7634.
  50. configuration:
  51. file:
  52. name: "python.d/hddtemp.conf"
  53. options:
  54. description: |
  55. There are 2 sections:
  56. * Global variables
  57. * One or more JOBS that can define multiple different instances to monitor.
  58. The following options can be defined globally: priority, penalty, autodetection_retry, update_every, but can also be defined per JOB to override the global values.
  59. Additionally, the following collapsed table contains all the options that can be configured inside a JOB definition.
  60. Every configuration JOB starts with a `job_name` value which will appear in the dashboard, unless a `name` parameter is specified.
  61. By default this collector will try to autodetect disks (autodetection works only for disk which names start with "sd"). However this can be overridden by setting the option `disks` to an array of desired disks.
  62. folding:
  63. title: "Config options"
  64. enabled: true
  65. list:
  66. - name: update_every
  67. description: Sets the default data collection frequency.
  68. default_value: 1
  69. required: false
  70. - name: priority
  71. description: Controls the order of charts at the netdata dashboard.
  72. default_value: 60000
  73. required: false
  74. - name: autodetection_retry
  75. description: Sets the job re-check interval in seconds.
  76. default_value: 0
  77. required: false
  78. - name: penalty
  79. description: Indicates whether to apply penalty to update_every in case of failures.
  80. default_value: yes
  81. required: false
  82. - name: name
  83. description: >
  84. Job name. This value will overwrite the `job_name` value. JOBS with the same name are mutually exclusive. Only one of them will be allowed running at any time. This allows autodetection to try several alternatives and pick the one that works.
  85. default_value: "local"
  86. required: false
  87. - name: devices
  88. description: Array of desired disks to detect, in case their name doesn't start with `sd`.
  89. default_value: ""
  90. required: false
  91. - name: host
  92. description: The IP or HOSTNAME to connect to.
  93. default_value: "localhost"
  94. required: true
  95. - name: port
  96. description: The port to connect to.
  97. default_value: 7634
  98. required: false
  99. examples:
  100. folding:
  101. enabled: true
  102. title: "Config"
  103. list:
  104. - name: Basic
  105. description: A basic example configuration.
  106. folding:
  107. enabled: false
  108. config: |
  109. localhost:
  110. name: 'local'
  111. host: '127.0.0.1'
  112. port: 7634
  113. - name: Custom disk names
  114. description: An example defining the disk names to detect.
  115. config: |
  116. localhost:
  117. name: 'local'
  118. host: '127.0.0.1'
  119. port: 7634
  120. devices:
  121. - customdisk1
  122. - customdisk2
  123. - name: Multi-instance
  124. description: |
  125. > **Note**: When you define multiple jobs, their names must be unique.
  126. Collecting metrics from local and remote instances.
  127. config: |
  128. localhost:
  129. name: 'local'
  130. host: '127.0.0.1'
  131. port: 7634
  132. remote_job:
  133. name : 'remote'
  134. host : 'http://192.0.2.1:2812'
  135. troubleshooting:
  136. problems:
  137. list: []
  138. alerts: []
  139. metrics:
  140. folding:
  141. title: Metrics
  142. enabled: false
  143. description: ""
  144. availability: []
  145. scopes:
  146. - name: global
  147. description: "These metrics refer to the entire monitored application."
  148. labels: []
  149. metrics:
  150. - name: hddtemp.temperatures
  151. description: Disk Temperatures
  152. unit: "Celsius"
  153. chart_type: line
  154. dimensions:
  155. - name: a dimension per disk