Browse Source

Regenerate integrations.js (#18708)

Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>
Netdata bot 5 months ago
parent
commit
d7ac51b010

File diff suppressed because it is too large
+ 0 - 0
integrations/integrations.js


File diff suppressed because it is too large
+ 0 - 0
integrations/integrations.json


+ 2 - 2
src/go/plugin/go.d/modules/coredns/integrations/coredns.md

@@ -177,7 +177,7 @@ The following options can be defined globally: update_every, autodetection_retry
 
 Metrics of servers matching the selector will be collected.
 - Logic: (pattern1 OR pattern2) AND !(pattern3 or pattern4)
-- Pattern syntax: [matcher](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#supported-format).
+- Pattern syntax: [matcher](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#supported-format).
 - Syntax:
 
 ```yaml
@@ -195,7 +195,7 @@ per_server_stats:
 
 Metrics of zones matching the selector will be collected.
 - Logic: (pattern1 OR pattern2) AND !(pattern3 or pattern4)
-- Pattern syntax: [matcher](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#supported-format).
+- Pattern syntax: [matcher](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#supported-format).
 - Syntax:
 
 ```yaml

+ 2 - 2
src/go/plugin/go.d/modules/httpcheck/integrations/http_endpoints.md

@@ -129,7 +129,7 @@ The following options can be defined globally: update_every, autodetection_retry
 | headers_match | This option defines a set of rules that check for specific key-value pairs in the HTTP headers of the response. | [] | no |
 | headers_match.exclude | This option determines whether the rule should check for the presence of the specified key-value pair or the absence of it. | no | no |
 | headers_match.key | The exact name of the HTTP header to check for. |  | yes |
-| headers_match.value | The [pattern](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#supported-format) to match against the value of the specified header. |  | no |
+| headers_match.value | The [pattern](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#supported-format) to match against the value of the specified header. |  | no |
 | cookie_file | Path to cookie file. See [cookie file format](https://everything.curl.dev/http/cookies/fileformat). |  | no |
 | timeout | HTTP request timeout. | 1 | no |
 | username | Username for basic HTTP authentication. |  | no |
@@ -201,7 +201,7 @@ jobs:
 
 ##### With `header_match`
 
-Example configurations with `header_match`. See the value [pattern](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#supported-format) syntax.
+Example configurations with `header_match`. See the value [pattern](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#supported-format) syntax.
 
 <details open><summary>Config</summary>
 

+ 2 - 2
src/go/plugin/go.d/modules/oracledb/integrations/oracle_db.md

@@ -157,7 +157,7 @@ GRANT SELECT_CATALOG_ROLE TO netdata;
 
 #### File
 
-The configuration file name for this integration is `go.d/oracle.conf`.
+The configuration file name for this integration is `go.d/oracledb.conf`.
 
 
 You can edit the configuration file using the `edit-config` script from the
@@ -165,7 +165,7 @@ Netdata [config directory](/docs/netdata-agent/configuration/README.md#the-netda
 
 ```bash
 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
-sudo ./edit-config go.d/oracle.conf
+sudo ./edit-config go.d/oracledb.conf
 ```
 #### Options
 

+ 1 - 1
src/go/plugin/go.d/modules/postgres/integrations/postgresql.md

@@ -299,7 +299,7 @@ The following options can be defined globally: update_every, autodetection_retry
 | autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
 | dsn | Postgres server DSN (Data Source Name). See [DSN syntax](https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING). | postgres://postgres:postgres@127.0.0.1:5432/postgres | yes |
 | timeout | Query timeout in seconds. | 2 | no |
-| collect_databases_matching | Databases selector. Determines which database metrics will be collected. Syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#simple-patterns-matcher). |  | no |
+| collect_databases_matching | Databases selector. Determines which database metrics will be collected. Syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#simple-patterns-matcher). |  | no |
 | max_db_tables | Maximum number of tables in the database. Table metrics will not be collected for databases that have more tables than max_db_tables. 0 means no limit. | 50 | no |
 | max_db_indexes | Maximum number of indexes in the database. Index metrics will not be collected for databases that have more indexes than max_db_indexes. 0 means no limit. | 250 | no |
 

+ 25 - 0
src/go/plugin/go.d/modules/sensors/integrations/linux_sensors.md

@@ -137,6 +137,11 @@ The following options can be defined globally: update_every.
 | Name | Description | Default | Required |
 |:----|:-----------|:-------|:--------:|
 | update_every | Data collection frequency. | 10 | no |
+| relabel | A list used to update existing sensor labels or add labels to sensors that don't have them. | [] | no |
+| relabel[].chip | [Pattern](/src/libnetdata/simple_pattern/README.md#simple-patterns) to match the `chip_id` label value. |  | no |
+| relabel[].sensors | A list of sensors to be relabeled for the specified chip. | [] | no |
+| relabel[].sensors[].name | The exact sensor name (e.g., `'temp1'`, `'in1'`, `'voltage1'`). |  | no |
+| relabel[].sensors[].label | The new label value for the sensor. |  | no |
 
 </details>
 
@@ -156,6 +161,26 @@ jobs:
 ```
 </details>
 
+##### Renaming labels
+
+Allows you to override/add labels.
+
+<details open><summary>Config</summary>
+
+```yaml
+jobs:
+  - name: sensors
+    relabel:
+      - chip: as99127f-*
+        sensors:
+          - name: temp1
+            label: Mobo Temp
+          - name: temp2
+            label: CPU0 Temp
+
+```
+</details>
+
 
 
 ## Troubleshooting

+ 1 - 1
src/go/plugin/go.d/modules/weblog/integrations/web_server_log_files.md

@@ -216,7 +216,7 @@ Notes:
 | exclude_path | Path to exclude. | *.gz | no |
 | url_patterns | List of URL patterns. | [] | no |
 | url_patterns.name | Used as a dimension name. |  | yes |
-| url_patterns.pattern | Used to match against full original request URI. Pattern syntax in [matcher](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/pkg/matcher#supported-format). |  | yes |
+| url_patterns.pattern | Used to match against full original request URI. Pattern syntax in [matcher](https://github.com/netdata/netdata/tree/master/src/go/pkg/matcher#supported-format). |  | yes |
 | log_type | Log parser type. | auto | no |
 | csv_config | CSV log parser config. |  | no |
 | csv_config.delimiter | CSV field delimiter. | , | no |

Some files were not shown because too many files changed in this diff