@cryptotaxi247 / netdata-1 / commits / efef917b4

Regenerate integrations.js (#17464)

Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>

Netdata bot committed Apr 21, 2024 at 16:21 UTC efef917b453250fcf3e9098dda244ca7e94f2f40
5 files changed +270
integrations/integrations.js
+39
@@ -4182,6 +4182,45 @@ export const integrations = [
4182 "edit_link": "https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/haproxy/metadata.yaml",
4183 "related_resources": ""
4184 },
4185 + {
4186 + "meta": {
4187 + "id": "collector-go.d.plugin-hddtemp",
4188 + "plugin_name": "go.d.plugin",
4189 + "module_name": "hddtemp",
4190 + "monitored_instance": {
4191 + "name": "HDD temperature",
4192 + "link": "https://linux.die.net/man/8/hddtemp",
4193 + "categories": [
4194 + "data-collection.hardware-devices-and-sensors"
4195 + ],
4196 + "icon_filename": "hard-drive.svg"
4197 + },
4198 + "related_resources": {
4199 + "integrations": {
4200 + "list": []
4201 + }
4202 + },
4203 + "info_provided_to_referring_integrations": {
4204 + "description": ""
4205 + },
4206 + "keywords": [
4207 + "hardware",
4208 + "hdd temperature",
4209 + "disk temperature",
4210 + "temperature"
4211 + ],
4212 + "most_popular": false
4213 + },
4214 + "overview": "# HDD temperature\n\nPlugin: go.d.plugin\nModule: hddtemp\n\n## Overview\n\nThis collector monitors disk temperatures.\n\n\nIt retrieves temperature data for attached disks by querying the hddtemp daemon at regular intervals.\n\n\nThis collector is only supported on the following platforms:\n\n- Linux\n\nThis collector supports collecting metrics from multiple instances of this integration, including remote instances.\n\n\n### Default Behavior\n\n#### Auto-Detection\n\nBy default, this collector will attempt to connect to the `hddtemp` daemon on `127.0.0.1:7634`\n\n#### Limits\n\nThe default configuration for this integration does not impose any limits on data collection.\n\n#### Performance Impact\n\nThe default configuration for this integration is not expected to impose a significant performance impact on the system.\n",
4215 + "setup": "## Setup\n\n### Prerequisites\n\n#### Install hddtemp\n\nInstall `hddtemp` using your distribution's package manager.\n\n\n\n### Configuration\n\n#### File\n\nThe configuration file name for this integration is `go.d/hddtemp.conf`.\n\n\nYou can edit the configuration file using the `edit-config` script from the\nNetdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).\n\n```bash\ncd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata\nsudo ./edit-config go.d/hddtemp.conf\n```\n#### Options\n\nThe following options can be defined globally: update_every, autodetection_retry.\n\n\n{% details summary=\"Config options\" %}\n| Name | Description | Default | Required |\n|:----|:-----------|:-------|:--------:|\n| update_every | Data collection frequency. | 1 | no |\n| autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |\n| address | The IP address and port where the hddtemp daemon listens for connections. | 127.0.0.1:7634 | yes |\n| timeout | Connection, read, and write timeout duration in seconds. The timeout includes name resolution. | 1 | no |\n\n{% /details %}\n#### Examples\n\n##### Basic\n\nA basic example configuration.\n\n{% details summary=\"Config\" %}\n```yaml\njobs:\n - name: local\n address: 127.0.0.1:7634\n\n```\n{% /details %}\n##### Multi-instance\n\n> **Note**: When you define multiple jobs, their names must be unique.\n\nCollecting metrics from local and remote instances.\n\n\n{% details summary=\"Config\" %}\n```yaml\njobs:\n - name: local\n address: 127.0.0.1:7634\n\n - name: remote\n address: 203.0.113.0:7634\n\n```\n{% /details %}\n",
4216 + "troubleshooting": "## Troubleshooting\n\n### Debug Mode\n\nTo troubleshoot issues with the `hddtemp` collector, run the `go.d.plugin` with the debug option enabled. The output\nshould give you clues as to why the collector isn't working.\n\n- Navigate to the `plugins.d` directory, usually at `/usr/libexec/netdata/plugins.d/`. If that's not the case on\n your system, open `netdata.conf` and look for the `plugins` setting under `[directories]`.\n\n ```bash\n cd /usr/libexec/netdata/plugins.d/\n ```\n\n- Switch to the `netdata` user.\n\n ```bash\n sudo -u netdata -s\n ```\n\n- Run the `go.d.plugin` to debug the collector:\n\n ```bash\n ./go.d.plugin -d -m hddtemp\n ```\n\n",
4217 + "alerts": "## Alerts\n\nThere are no alerts configured by default for this integration.\n",
4218 + "metrics": "## Metrics\n\nMetrics grouped by *scope*.\n\nThe scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.\n\n\n\n### Per disk\n\nThese metrics refer to the Disk.\n\nLabels:\n\n| Label | Description |\n|:-----------|:----------------|\n| disk_id | Disk identifier. It is derived from the device path (e.g. sda or ata-HUP722020APA330_BFJ0WS3F) |\n| model | Disk model |\n\nMetrics:\n\n| Metric | Dimensions | Unit |\n|:------|:----------|:----|\n| hddtemp.disk_temperature | temperature | Celsius |\n| hddtemp.disk_temperature_sensor_status | ok, err, na, unk, nos, slp | status |\n\n",
4219 + "integration_type": "collector",
4220 + "id": "go.d.plugin-hddtemp-HDD_temperature",
4221 + "edit_link": "https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/hddtemp/metadata.yaml",
4222 + "related_resources": ""
4223 + },
4224 {
4225 "meta": {
4226 "id": "collector-go.d.plugin-hfs",
integrations/integrations.json
+39
@@ -4180,6 +4180,45 @@
4180 "edit_link": "https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/haproxy/metadata.yaml",
4181 "related_resources": ""
4182 },
4183 + {
4184 + "meta": {
4185 + "id": "collector-go.d.plugin-hddtemp",
4186 + "plugin_name": "go.d.plugin",
4187 + "module_name": "hddtemp",
4188 + "monitored_instance": {
4189 + "name": "HDD temperature",
4190 + "link": "https://linux.die.net/man/8/hddtemp",
4191 + "categories": [
4192 + "data-collection.hardware-devices-and-sensors"
4193 + ],
4194 + "icon_filename": "hard-drive.svg"
4195 + },
4196 + "related_resources": {
4197 + "integrations": {
4198 + "list": []
4199 + }
4200 + },
4201 + "info_provided_to_referring_integrations": {
4202 + "description": ""
4203 + },
4204 + "keywords": [
4205 + "hardware",
4206 + "hdd temperature",
4207 + "disk temperature",
4208 + "temperature"
4209 + ],
4210 + "most_popular": false
4211 + },
4212 + "overview": "# HDD temperature\n\nPlugin: go.d.plugin\nModule: hddtemp\n\n## Overview\n\nThis collector monitors disk temperatures.\n\n\nIt retrieves temperature data for attached disks by querying the hddtemp daemon at regular intervals.\n\n\nThis collector is only supported on the following platforms:\n\n- Linux\n\nThis collector supports collecting metrics from multiple instances of this integration, including remote instances.\n\n\n### Default Behavior\n\n#### Auto-Detection\n\nBy default, this collector will attempt to connect to the `hddtemp` daemon on `127.0.0.1:7634`\n\n#### Limits\n\nThe default configuration for this integration does not impose any limits on data collection.\n\n#### Performance Impact\n\nThe default configuration for this integration is not expected to impose a significant performance impact on the system.\n",
4213 + "setup": "## Setup\n\n### Prerequisites\n\n#### Install hddtemp\n\nInstall `hddtemp` using your distribution's package manager.\n\n\n\n### Configuration\n\n#### File\n\nThe configuration file name for this integration is `go.d/hddtemp.conf`.\n\n\nYou can edit the configuration file using the `edit-config` script from the\nNetdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).\n\n```bash\ncd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata\nsudo ./edit-config go.d/hddtemp.conf\n```\n#### Options\n\nThe following options can be defined globally: update_every, autodetection_retry.\n\n\n| Name | Description | Default | Required |\n|:----|:-----------|:-------|:--------:|\n| update_every | Data collection frequency. | 1 | no |\n| autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |\n| address | The IP address and port where the hddtemp daemon listens for connections. | 127.0.0.1:7634 | yes |\n| timeout | Connection, read, and write timeout duration in seconds. The timeout includes name resolution. | 1 | no |\n\n#### Examples\n\n##### Basic\n\nA basic example configuration.\n\n```yaml\njobs:\n - name: local\n address: 127.0.0.1:7634\n\n```\n##### Multi-instance\n\n> **Note**: When you define multiple jobs, their names must be unique.\n\nCollecting metrics from local and remote instances.\n\n\n```yaml\njobs:\n - name: local\n address: 127.0.0.1:7634\n\n - name: remote\n address: 203.0.113.0:7634\n\n```\n",
4214 + "troubleshooting": "## Troubleshooting\n\n### Debug Mode\n\nTo troubleshoot issues with the `hddtemp` collector, run the `go.d.plugin` with the debug option enabled. The output\nshould give you clues as to why the collector isn't working.\n\n- Navigate to the `plugins.d` directory, usually at `/usr/libexec/netdata/plugins.d/`. If that's not the case on\n your system, open `netdata.conf` and look for the `plugins` setting under `[directories]`.\n\n ```bash\n cd /usr/libexec/netdata/plugins.d/\n ```\n\n- Switch to the `netdata` user.\n\n ```bash\n sudo -u netdata -s\n ```\n\n- Run the `go.d.plugin` to debug the collector:\n\n ```bash\n ./go.d.plugin -d -m hddtemp\n ```\n\n",
4215 + "alerts": "## Alerts\n\nThere are no alerts configured by default for this integration.\n",
4216 + "metrics": "## Metrics\n\nMetrics grouped by *scope*.\n\nThe scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.\n\n\n\n### Per disk\n\nThese metrics refer to the Disk.\n\nLabels:\n\n| Label | Description |\n|:-----------|:----------------|\n| disk_id | Disk identifier. It is derived from the device path (e.g. sda or ata-HUP722020APA330_BFJ0WS3F) |\n| model | Disk model |\n\nMetrics:\n\n| Metric | Dimensions | Unit |\n|:------|:----------|:----|\n| hddtemp.disk_temperature | temperature | Celsius |\n| hddtemp.disk_temperature_sensor_status | ok, err, na, unk, nos, slp | status |\n\n",
4217 + "integration_type": "collector",
4218 + "id": "go.d.plugin-hddtemp-HDD_temperature",
4219 + "edit_link": "https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/hddtemp/metadata.yaml",
4220 + "related_resources": ""
4221 + },
4222 {
4223 "meta": {
4224 "id": "collector-go.d.plugin-hfs",
src/collectors/COLLECTORS.md
+2
@@ -493,6 +493,8 @@ If you don't see the app/service you'd like to monitor in this list:
493
494 - [HDD temperature](https://github.com/netdata/netdata/blob/master/src/collectors/python.d.plugin/hddtemp/integrations/hdd_temperature.md)
495
496 +- [HDD temperature](https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/hddtemp/integrations/hdd_temperature.md)
497 +
498 - [HP iLO](https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/prometheus/integrations/hp_ilo.md)
499
500 - [IBM CryptoExpress (CEX) cards](https://github.com/netdata/netdata/blob/master/src/go/collectors/go.d.plugin/modules/prometheus/integrations/ibm_cryptoexpress_cex_cards.md)
src/go/collectors/go.d.plugin/modules/hddtemp/README.md new
+1
@@ -0,0 +1 @@
1 +integrations/hdd_temperature.md
\ No newline at end of file
src/go/collectors/go.d.plugin/modules/hddtemp/integrations/hdd_temperature.md new
+189
@@ -0,0 +1,189 @@
1 +<!--startmeta
2 +custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/go/collectors/go.d.plugin/modules/hddtemp/README.md"
3 +meta_yaml: "https://github.com/netdata/netdata/edit/master/src/go/collectors/go.d.plugin/modules/hddtemp/metadata.yaml"
4 +sidebar_label: "HDD temperature"
5 +learn_status: "Published"
6 +learn_rel_path: "Collecting Metrics/Hardware Devices and Sensors"
7 +most_popular: False
8 +message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE"
9 +endmeta-->
10 +
11 +# HDD temperature
12 +
13 +
14 +<img src="https://netdata.cloud/img/hard-drive.svg" width="150"/>
15 +
16 +
17 +Plugin: go.d.plugin
18 +Module: hddtemp
19 +
20 +<img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21 +
22 +## Overview
23 +
24 +This collector monitors disk temperatures.
25 +
26 +
27 +It retrieves temperature data for attached disks by querying the hddtemp daemon at regular intervals.
28 +
29 +
30 +This collector is only supported on the following platforms:
31 +
32 +- Linux
33 +
34 +This collector supports collecting metrics from multiple instances of this integration, including remote instances.
35 +
36 +
37 +### Default Behavior
38 +
39 +#### Auto-Detection
40 +
41 +By default, this collector will attempt to connect to the `hddtemp` daemon on `127.0.0.1:7634`
42 +
43 +#### Limits
44 +
45 +The default configuration for this integration does not impose any limits on data collection.
46 +
47 +#### Performance Impact
48 +
49 +The default configuration for this integration is not expected to impose a significant performance impact on the system.
50 +
51 +
52 +## Metrics
53 +
54 +Metrics grouped by *scope*.
55 +
56 +The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.
57 +
58 +
59 +
60 +### Per disk
61 +
62 +These metrics refer to the Disk.
63 +
64 +Labels:
65 +
66 +| Label | Description |
67 +|:-----------|:----------------|
68 +| disk_id | Disk identifier. It is derived from the device path (e.g. sda or ata-HUP722020APA330_BFJ0WS3F) |
69 +| model | Disk model |
70 +
71 +Metrics:
72 +
73 +| Metric | Dimensions | Unit |
74 +|:------|:----------|:----|
75 +| hddtemp.disk_temperature | temperature | Celsius |
76 +| hddtemp.disk_temperature_sensor_status | ok, err, na, unk, nos, slp | status |
77 +
78 +
79 +
80 +## Alerts
81 +
82 +There are no alerts configured by default for this integration.
83 +
84 +
85 +## Setup
86 +
87 +### Prerequisites
88 +
89 +#### Install hddtemp
90 +
91 +Install `hddtemp` using your distribution's package manager.
92 +
93 +
94 +
95 +### Configuration
96 +
97 +#### File
98 +
99 +The configuration file name for this integration is `go.d/hddtemp.conf`.
100 +
101 +
102 +You can edit the configuration file using the `edit-config` script from the
103 +Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration.md#the-netdata-config-directory).
104 +
105 +```bash
106 +cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
107 +sudo ./edit-config go.d/hddtemp.conf
108 +```
109 +#### Options
110 +
111 +The following options can be defined globally: update_every, autodetection_retry.
112 +
113 +
114 +<details><summary>Config options</summary>
115 +
116 +| Name | Description | Default | Required |
117 +|:----|:-----------|:-------|:--------:|
118 +| update_every | Data collection frequency. | 1 | no |
119 +| autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
120 +| address | The IP address and port where the hddtemp daemon listens for connections. | 127.0.0.1:7634 | yes |
121 +| timeout | Connection, read, and write timeout duration in seconds. The timeout includes name resolution. | 1 | no |
122 +
123 +</details>
124 +
125 +#### Examples
126 +
127 +##### Basic
128 +
129 +A basic example configuration.
130 +
131 +<details><summary>Config</summary>
132 +
133 +```yaml
134 +jobs:
135 + - name: local
136 + address: 127.0.0.1:7634
137 +
138 +```
139 +</details>
140 +
141 +##### Multi-instance
142 +
143 +> **Note**: When you define multiple jobs, their names must be unique.
144 +
145 +Collecting metrics from local and remote instances.
146 +
147 +
148 +<details><summary>Config</summary>
149 +
150 +```yaml
151 +jobs:
152 + - name: local
153 + address: 127.0.0.1:7634
154 +
155 + - name: remote
156 + address: 203.0.113.0:7634
157 +
158 +```
159 +</details>
160 +
161 +
162 +
163 +## Troubleshooting
164 +
165 +### Debug Mode
166 +
167 +To troubleshoot issues with the `hddtemp` collector, run the `go.d.plugin` with the debug option enabled. The output
168 +should give you clues as to why the collector isn't working.
169 +
170 +- Navigate to the `plugins.d` directory, usually at `/usr/libexec/netdata/plugins.d/`. If that's not the case on
171 + your system, open `netdata.conf` and look for the `plugins` setting under `[directories]`.
172 +
173 + ```bash
174 + cd /usr/libexec/netdata/plugins.d/
175 + ```
176 +
177 +- Switch to the `netdata` user.
178 +
179 + ```bash
180 + sudo -u netdata -s
181 + ```
182 +
183 +- Run the `go.d.plugin` to debug the collector:
184 +
185 + ```bash
186 + ./go.d.plugin -d -m hddtemp
187 + ```
188 +
189 +