Skip to content

Commit

Permalink
Regenerate integrations.js (netdata#18708)
Browse files Browse the repository at this point in the history
Co-authored-by: ilyam8 <[email protected]>
  • Loading branch information
netdatabot and ilyam8 authored Oct 7, 2024
1 parent 6096b95 commit d7ac51b
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 20 deletions.
12 changes: 6 additions & 6 deletions integrations/integrations.js

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions integrations/integrations.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/go/plugin/go.d/modules/coredns/integrations/coredns.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down Expand Up @@ -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>

Expand Down
4 changes: 2 additions & 2 deletions src/go/plugin/go.d/modules/oracledb/integrations/oracle_db.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,15 +157,15 @@ 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
Netdata [config directory](/docs/netdata-agent/configuration/README.md#the-netdata-config-directory).

```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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

Expand Down
25 changes: 25 additions & 0 deletions src/go/plugin/go.d/modules/sensors/integrations/linux_sensors.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down

0 comments on commit d7ac51b

Please sign in to comment.