Regenerate integrations docs (#21898)
Co-authored-by: ilyam8 <22274335+ilyam8@users.noreply.github.com>
Netdata bot committed
Mar 5, 2026 at 19:17 UTC
519f236cb317233062bc9e7ad759ec2ae192a148
226 files changed
+1167
-584
src/exporting/aws_kinesis/integrations/aws_kinesis.md
+12
-6
@@ -58,21 +58,22 @@ The following options can be defined for this exporter.
58
| Option | Description | Default | Required |
59
|:-----|:------------|:--------|:---------:|
60
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
61
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
61
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
62
| username | Username for HTTP authentication | my_username | no |
63
| password | Password for HTTP authentication | my_password | no |
64
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
65
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
66
| prefix | The prefix to add to all metrics. | Netdata | no |
67
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
68
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
67
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
68
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
69
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 2 * update_every * 1000 | no |
70
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
71
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
72
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
70
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
71
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
72
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
73
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
74
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
75
76
+<a id="option-destination"></a>
77
##### destination
78
79
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -91,17 +92,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
92
When multiple servers are defined, Netdata will try the next one when the previous one fails.
93
94
95
+<a id="option-update-every"></a>
96
##### update every
97
98
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
99
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
100
101
102
+<a id="option-buffer-on-failures"></a>
103
##### buffer on failures
104
105
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
106
107
108
+<a id="option-send-hosts-matching"></a>
109
##### send hosts matching
110
111
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -112,6 +116,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
116
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
117
118
119
+<a id="option-send-charts-matching"></a>
120
##### send charts matching
121
122
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -120,6 +125,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
125
has a higher priority than the configuration option.
126
127
128
+<a id="option-send-names-instead-of-ids"></a>
129
##### send names instead of ids
130
131
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/graphite/integrations/blueflood.md
+12
-6
@@ -39,21 +39,22 @@ The following options can be defined for this exporter.
39
| Option | Description | Default | Required |
40
|:-----|:------------|:--------|:---------:|
41
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
42
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
42
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
43
| username | Username for HTTP authentication | my_username | no |
44
| password | Password for HTTP authentication | my_password | no |
45
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
46
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
47
| prefix | The prefix to add to all metrics. | netdata | no |
48
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
49
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
48
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
49
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
50
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
51
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
52
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
53
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
51
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
52
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
53
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
54
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
55
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
56
57
+<a id="option-destination"></a>
58
##### destination
59
60
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -72,17 +73,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
73
When multiple servers are defined, Netdata will try the next one when the previous one fails.
74
75
76
+<a id="option-update-every"></a>
77
##### update every
78
79
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
80
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
81
82
83
+<a id="option-buffer-on-failures"></a>
84
##### buffer on failures
85
86
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
87
88
89
+<a id="option-send-hosts-matching"></a>
90
##### send hosts matching
91
92
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -93,6 +97,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
97
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
98
99
100
+<a id="option-send-charts-matching"></a>
101
##### send charts matching
102
103
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -101,6 +106,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
106
has a higher priority than the configuration option.
107
108
109
+<a id="option-send-names-instead-of-ids"></a>
110
##### send names instead of ids
111
112
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/graphite/integrations/graphite.md
+12
-6
@@ -40,21 +40,22 @@ The following options can be defined for this exporter.
40
| Option | Description | Default | Required |
41
|:-----|:------------|:--------|:---------:|
42
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
43
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
43
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
44
| username | Username for HTTP authentication | my_username | no |
45
| password | Password for HTTP authentication | my_password | no |
46
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
47
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
48
| prefix | The prefix to add to all metrics. | netdata | no |
49
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
50
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
49
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
50
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
51
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
52
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
53
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
54
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
52
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
53
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
54
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
55
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
56
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
57
58
+<a id="option-destination"></a>
59
##### destination
60
61
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -73,17 +74,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
74
When multiple servers are defined, Netdata will try the next one when the previous one fails.
75
76
77
+<a id="option-update-every"></a>
78
##### update every
79
80
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
81
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
82
83
84
+<a id="option-buffer-on-failures"></a>
85
##### buffer on failures
86
87
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
88
89
90
+<a id="option-send-hosts-matching"></a>
91
##### send hosts matching
92
93
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -94,6 +98,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
98
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
99
100
101
+<a id="option-send-charts-matching"></a>
102
##### send charts matching
103
104
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -102,6 +107,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
107
has a higher priority than the configuration option.
108
109
110
+<a id="option-send-names-instead-of-ids"></a>
111
##### send names instead of ids
112
113
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/graphite/integrations/kairosdb.md
+12
-6
@@ -39,21 +39,22 @@ The following options can be defined for this exporter.
39
| Option | Description | Default | Required |
40
|:-----|:------------|:--------|:---------:|
41
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
42
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
42
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
43
| username | Username for HTTP authentication | my_username | no |
44
| password | Password for HTTP authentication | my_password | no |
45
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
46
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
47
| prefix | The prefix to add to all metrics. | netdata | no |
48
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
49
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
48
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
49
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
50
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
51
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
52
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
53
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
51
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
52
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
53
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
54
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
55
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
56
57
+<a id="option-destination"></a>
58
##### destination
59
60
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -72,17 +73,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
73
When multiple servers are defined, Netdata will try the next one when the previous one fails.
74
75
76
+<a id="option-update-every"></a>
77
##### update every
78
79
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
80
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
81
82
83
+<a id="option-buffer-on-failures"></a>
84
##### buffer on failures
85
86
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
87
88
89
+<a id="option-send-hosts-matching"></a>
90
##### send hosts matching
91
92
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -93,6 +97,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
97
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
98
99
100
+<a id="option-send-charts-matching"></a>
101
##### send charts matching
102
103
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -101,6 +106,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
106
has a higher priority than the configuration option.
107
108
109
+<a id="option-send-names-instead-of-ids"></a>
110
##### send names instead of ids
111
112
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/json/integrations/json.md
+12
-6
@@ -44,21 +44,22 @@ The following options can be defined for this exporter.
44
| Option | Description | Default | Required |
45
|:-----|:------------|:--------|:---------:|
46
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
47
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | pubsub.googleapis.com | yes |
47
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | pubsub.googleapis.com | yes |
48
| username | Username for HTTP authentication | my_username | no |
49
| password | Password for HTTP authentication | my_password | no |
50
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
51
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
52
| prefix | The prefix to add to all metrics. | Netdata | no |
53
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
54
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
53
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
54
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
55
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 2 * update_every * 1000 | no |
56
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
57
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
58
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
56
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
57
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
58
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
59
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
60
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
61
62
+<a id="option-destination"></a>
63
##### destination
64
65
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -73,17 +74,20 @@ Example IPv4:
74
When multiple servers are defined, Netdata will try the next one when the previous one fails.
75
76
77
+<a id="option-update-every"></a>
78
##### update every
79
80
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
81
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
82
83
84
+<a id="option-buffer-on-failures"></a>
85
##### buffer on failures
86
87
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
88
89
90
+<a id="option-send-hosts-matching"></a>
91
##### send hosts matching
92
93
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -94,6 +98,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
98
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
99
100
101
+<a id="option-send-charts-matching"></a>
102
##### send charts matching
103
104
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -102,6 +107,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
107
has a higher priority than the configuration option.
108
109
110
+<a id="option-send-names-instead-of-ids"></a>
111
##### send names instead of ids
112
113
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/mongodb/integrations/mongodb.md
+12
-6
@@ -46,21 +46,22 @@ The following options can be defined for this exporter.
46
| Option | Description | Default | Required |
47
|:-----|:------------|:--------|:---------:|
48
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
49
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | localhost | yes |
49
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | localhost | yes |
50
| username | Username for HTTP authentication | my_username | no |
51
| password | Password for HTTP authentication | my_password | no |
52
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
53
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
54
| prefix | The prefix to add to all metrics. | Netdata | no |
55
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
56
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
55
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
56
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
57
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 2 * update_every * 1000 | no |
58
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
59
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
60
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
58
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
59
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
60
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
62
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
63
64
+<a id="option-destination"></a>
65
##### destination
66
67
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -79,17 +80,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
80
When multiple servers are defined, Netdata will try the next one when the previous one fails.
81
82
83
+<a id="option-update-every"></a>
84
##### update every
85
86
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
87
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
88
89
90
+<a id="option-buffer-on-failures"></a>
91
##### buffer on failures
92
93
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
94
95
96
+<a id="option-send-hosts-matching"></a>
97
##### send hosts matching
98
99
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -100,6 +104,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
104
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
105
106
107
+<a id="option-send-charts-matching"></a>
108
##### send charts matching
109
110
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -108,6 +113,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
113
has a higher priority than the configuration option.
114
115
116
+<a id="option-send-names-instead-of-ids"></a>
117
##### send names instead of ids
118
119
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/opentsdb/integrations/opentsdb.md
+12
-6
@@ -44,21 +44,22 @@ The following options can be defined for this exporter.
44
| Option | Description | Default | Required |
45
|:-----|:------------|:--------|:---------:|
46
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
47
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
47
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
48
| username | Username for HTTP authentication | my_username | no |
49
| password | Password for HTTP authentication | my_password | no |
50
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
51
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
52
| prefix | The prefix to add to all metrics. | Netdata | no |
53
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
54
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
53
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
54
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
55
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 2 * update_every * 1000 | no |
56
-| send hosts matching | Hosts filter. Determines which hosts will be sent to OpenTSDB. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
57
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
58
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
56
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to OpenTSDB. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
57
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
58
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
59
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
60
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
61
62
+<a id="option-destination"></a>
63
##### destination
64
65
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -77,17 +78,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
78
When multiple servers are defined, Netdata will try the next one when the previous one fails.
79
80
81
+<a id="option-update-every"></a>
82
##### update every
83
84
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
85
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
86
87
88
+<a id="option-buffer-on-failures"></a>
89
##### buffer on failures
90
91
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
92
93
94
+<a id="option-send-hosts-matching"></a>
95
##### send hosts matching
96
97
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -98,6 +102,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
102
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
103
104
105
+<a id="option-send-charts-matching"></a>
106
##### send charts matching
107
108
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -106,6 +111,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
111
has a higher priority than the configuration option.
112
113
114
+<a id="option-send-names-instead-of-ids"></a>
115
##### send names instead of ids
116
117
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/appoptics.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/azure_data_explorer.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/azure_event_hub.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/chronix.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/cortex.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/cratedb.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/elasticsearch.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/gnocchi.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/google_bigquery.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/greptimedb.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/irondb.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/kafka.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/m3db.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/metricfire.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/new_relic.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/opeansearch.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/postgresql.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/prometheus_remote_write.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/quasardb.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/splunk_signalfx.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/thanos.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/tikv.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/timescaledb.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/victoriametrics.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/vmware_aria.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/prometheus/integrations/wavefront.md
+12
-6
@@ -49,21 +49,22 @@ The following options can be defined for this exporter.
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
52
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
52
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | no | yes |
53
| username | Username for HTTP authentication | my_username | no |
54
| password | Password for HTTP authentication | my_password | no |
55
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
56
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
57
| prefix | The prefix to add to all metrics. | netdata | no |
58
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
58
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
59
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
60
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 20000 | no |
61
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
62
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
63
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
64
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
65
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
66
67
+<a id="option-destination"></a>
68
##### destination
69
70
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -82,17 +83,20 @@ destination = [ffff:...:0001]:2003 10.11.12.1:2003
83
When multiple servers are defined, Netdata will try the next one when the previous one fails.
84
85
86
+<a id="option-update-every"></a>
87
##### update every
88
89
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
90
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
91
92
93
+<a id="option-buffer-on-failures"></a>
94
##### buffer on failures
95
96
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
97
98
99
+<a id="option-send-hosts-matching"></a>
100
##### send hosts matching
101
102
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -103,6 +107,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
107
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
108
109
110
+<a id="option-send-charts-matching"></a>
111
##### send charts matching
112
113
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -111,6 +116,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
116
has a higher priority than the configuration option.
117
118
119
+<a id="option-send-names-instead-of-ids"></a>
120
##### send names instead of ids
121
122
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/exporting/pubsub/integrations/google_cloud_pub_sub.md
+12
-6
@@ -46,21 +46,22 @@ The following options can be defined for this exporter.
46
| Option | Description | Default | Required |
47
|:-----|:------------|:--------|:---------:|
48
| enabled | Enables or disables an exporting connector instance (yes/no). | no | yes |
49
-| destination | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | pubsub.googleapis.com | yes |
49
+| [destination](#option-destination) | Accepts a space separated list of hostnames, IPs (IPv4 and IPv6) and ports to connect to. Netdata will use the first available to send the metrics. | pubsub.googleapis.com | yes |
50
| username | Username for HTTP authentication | my_username | no |
51
| password | Password for HTTP authentication | my_password | no |
52
| data source | Selects the kind of data that will be sent to the external database. (as collected/average/sum) | | no |
53
| hostname | The hostname to be used for sending data to the external database server. | [global].hostname | no |
54
| prefix | The prefix to add to all metrics. | Netdata | no |
55
-| update every | Frequency of sending sending data to the external database, in seconds. | 10 | no |
56
-| buffer on failures | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
55
+| [update every](#option-update-every) | Frequency of sending sending data to the external database, in seconds. | 10 | no |
56
+| [buffer on failures](#option-buffer-on-failures) | The number of iterations (`update every` seconds) to buffer data, when the external database server is not available. | 10 | no |
57
| timeout ms | The timeout in milliseconds to wait for the external database server to process the data. | 2 * update_every * 1000 | no |
58
-| send hosts matching | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
59
-| send charts matching | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
60
-| send names instead of ids | Controls the metric names Netdata should send to the external database (yes/no). | | no |
58
+| [send hosts matching](#option-send-hosts-matching) | Hosts filter. Determines which hosts will be sent to the external database. The syntax is [simple patterns](https://github.com/netdata/netdata/tree/master/src/libnetdata/simple_pattern#simple-patterns). | localhost * | no |
59
+| [send charts matching](#option-send-charts-matching) | One or more space separated patterns (use * as wildcard) checked against both chart id and chart name. | * | no |
60
+| [send names instead of ids](#option-send-names-instead-of-ids) | Controls the metric names Netdata should send to the external database (yes/no). | | no |
61
| send configured labels | Controls if host labels defined in the `[host labels]` section in `netdata.conf` should be sent to the external database (yes/no). | | no |
62
| send automatic labels | Controls if automatically created labels, like `_os_name` or `_architecture` should be sent to the external database (yes/no). | | no |
63
64
+<a id="option-destination"></a>
65
##### destination
66
67
The format of each item in this list, is: [PROTOCOL:]IP[:PORT].
@@ -75,17 +76,20 @@ Example IPv4:
76
When multiple servers are defined, Netdata will try the next one when the previous one fails.
77
78
79
+<a id="option-update-every"></a>
80
##### update every
81
82
Netdata will add some randomness to this number, to prevent stressing the external server when many Netdata servers
83
send data to the same database. This randomness does not affect the quality of the data, only the time they are sent.
84
85
86
+<a id="option-buffer-on-failures"></a>
87
##### buffer on failures
88
89
If the server fails to receive the data after that many failures, data loss on the connector instance is expected (Netdata will also log it).
90
91
92
+<a id="option-send-hosts-matching"></a>
93
##### send hosts matching
94
95
Includes one or more space separated patterns, using * as wildcard (any number of times within each pattern).
@@ -96,6 +100,7 @@ A pattern starting with `!` gives a negative match. So to match all hosts named
100
use `!*child* *db*` (so, the order is important: the first pattern matching the hostname will be used - positive or negative).
101
102
103
+<a id="option-send-charts-matching"></a>
104
##### send charts matching
105
106
A pattern starting with ! gives a negative match. So to match all charts named apps.* except charts ending in *reads,
@@ -104,6 +109,7 @@ positive or negative). There is also a URL parameter filter that can be used whi
109
has a higher priority than the configuration option.
110
111
112
+<a id="option-send-names-instead-of-ids"></a>
113
##### send names instead of ids
114
115
Netdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names
src/go/plugin/go.d/collector/coredns/integrations/coredns.md
+4
-2
@@ -169,8 +169,8 @@ The following options can be defined globally: update_every, autodetection_retry
169
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
170
| **Target** | url | Target endpoint URL. | http://127.0.0.1:9153/metrics | yes |
171
| | timeout | HTTP request timeout (seconds). | 1 | no |
172
-| **Filters** | per_server_stats | Server filter. | | no |
173
-| | per_zone_stats | Zone filter. | | no |
172
+| **Filters** | [per_server_stats](#option-filters-per-server-stats) | Server filter. | | no |
173
+| | [per_zone_stats](#option-filters-per-zone-stats) | Zone filter. | | no |
174
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
175
| | password | Password for Basic HTTP authentication. | | no |
176
| | bearer_token_file | Path to a file containing a bearer token (used for `Authorization: Bearer`). | | no |
@@ -188,6 +188,7 @@ The following options can be defined globally: update_every, autodetection_retry
188
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
189
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
190
191
+<a id="option-filters-per-server-stats"></a>
192
##### per_server_stats
193
194
Metrics of servers matching the selector will be collected.
@@ -206,6 +207,7 @@ per_server_stats:
207
```
208
209
210
+<a id="option-filters-per-zone-stats"></a>
211
##### per_zone_stats
212
213
Metrics of zones matching the selector will be collected.
src/go/plugin/go.d/collector/filecheck/integrations/files_and_directories.md
+4
-2
@@ -135,10 +135,11 @@ The following options can be defined globally: update_every, autodetection_retry
135
|:------|:-----|:------------|:--------|:---------:|
136
| **Collection** | update_every | Data collection interval (seconds). | 10 | no |
137
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
138
-| **Target** | files | File selector. Defines which files to monitor. | | yes |
139
-| | dirs | Directory selector. Defines which directories to monitor. | | yes |
138
+| **Target** | [files](#option-target-files) | File selector. Defines which files to monitor. | | yes |
139
+| | [dirs](#option-target-dirs) | Directory selector. Defines which directories to monitor. | | yes |
140
| **Discovery** | discovery_every | Files and directories discovery interval (seconds). | 60 | no |
141
142
+<a id="option-target-files"></a>
143
##### files
144
145
Files matching the selector will be monitored.
@@ -158,6 +159,7 @@ files:
159
```
160
161
162
+<a id="option-target-dirs"></a>
163
##### dirs
164
165
Directories matching the selector will be monitored.
src/go/plugin/go.d/collector/isc_dhcpd/integrations/isc_dhcp.md
+2
-1
@@ -129,8 +129,9 @@ The following options can be defined globally: update_every, autodetection_retry
129
| **Collection** | update_every | Data collection interval (seconds). | 1 | no |
130
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
131
| **Target** | leases_path | Path to DHCP client lease database. | /var/lib/dhcp/dhcpd.leases | no |
132
-| | pools | DHCP IP pools to monitor. | | yes |
132
+| | [pools](#option-target-pools) | DHCP IP pools to monitor. | | yes |
133
134
+<a id="option-target-pools"></a>
135
##### pools
136
137
List of IP pools to monitor.
src/go/plugin/go.d/collector/prometheus/integrations/4d_server.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/8430ft_modem.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/alamos_fe2_server.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/amd_cpu_&_gpu.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/apicast.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/authlog.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/aws_ec2_compute_instances.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/aws_quota.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/aws_rds.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/bird_routing_daemon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/blackbox.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/bosh.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/bungeecord.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/celery.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/chia.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cilium_agent.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cilium_operator.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cilium_proxy.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/clamav_daemon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/clamscan_results.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/clash.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry_firehose.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cloudwatch.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/clustercontrol_cmon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/collectd.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/concourse.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/craftbeerpi.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/crowdsec.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/cryptowatch.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/discourse.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/dmarc.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/dnsbl.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/dutch_electricity_smart_meter.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/dynatrace.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/elgato_key_light_devices..md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/energomera_smart_power_meters.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/eos.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/etcd.md
+4
-2
@@ -113,10 +113,10 @@ The following options can be defined globally: update_every, autodetection_retry
113
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
114
| **Target** | url | Target endpoint URL. | | yes |
115
| | timeout | HTTP request timeout (seconds). | 10 | no |
116
-| **Filters** | selector | Time series selector (filter). | | no |
116
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
117
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
118
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
119
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
119
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
120
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
121
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
122
| | password | Password for Basic HTTP authentication. | | no |
@@ -135,6 +135,7 @@ The following options can be defined globally: update_every, autodetection_retry
135
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
136
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
137
138
+<a id="option-filters-selector"></a>
139
##### selector
140
141
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -154,6 +155,7 @@ selector:
155
```
156
157
158
+<a id="option-customization-fallback-type"></a>
159
##### fallback_type
160
161
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/fastd.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/freebsd_nfs.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/freebsd_rctl-racct.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/freifunk_network.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/frrouting.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/gcp_gce.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/generic_storage_enclosure_tool.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/github_api_rate_limit.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/github_repository.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/gitlab_runner.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/gobetween.md
+4
-2
@@ -113,10 +113,10 @@ The following options can be defined globally: update_every, autodetection_retry
113
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
114
| **Target** | url | Target endpoint URL. | | yes |
115
| | timeout | HTTP request timeout (seconds). | 10 | no |
116
-| **Filters** | selector | Time series selector (filter). | | no |
116
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
117
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
118
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
119
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
119
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
120
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
121
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
122
| | password | Password for Basic HTTP authentication. | | no |
@@ -135,6 +135,7 @@ The following options can be defined globally: update_every, autodetection_retry
135
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
136
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
137
138
+<a id="option-filters-selector"></a>
139
##### selector
140
141
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -154,6 +155,7 @@ selector:
155
```
156
157
158
+<a id="option-customization-fallback-type"></a>
159
##### fallback_type
160
161
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/google_cloud_platform.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/google_pagespeed.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/google_stackdriver.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/gpsd.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/grafana.md
+4
-2
@@ -113,10 +113,10 @@ The following options can be defined globally: update_every, autodetection_retry
113
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
114
| **Target** | url | Target endpoint URL. | | yes |
115
| | timeout | HTTP request timeout (seconds). | 10 | no |
116
-| **Filters** | selector | Time series selector (filter). | | no |
116
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
117
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
118
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
119
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
119
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
120
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
121
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
122
| | password | Password for Basic HTTP authentication. | | no |
@@ -135,6 +135,7 @@ The following options can be defined globally: update_every, autodetection_retry
135
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
136
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
137
138
+<a id="option-filters-selector"></a>
139
##### selector
140
141
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -154,6 +155,7 @@ selector:
155
```
156
157
158
+<a id="option-customization-fallback-type"></a>
159
##### fallback_type
160
161
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/graylog_server.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/halon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/hana.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/hitron_coda_cable_modem.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/homebridge.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/homey.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/honeypot.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/hubble.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_aix_systems_njmon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_cryptoexpress_cex_cards.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_mq.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum_virtualize.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ibm_z_hardware_management_console.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/influxdb.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/jarvis_standing_desk.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/jenkins.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/jmx.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/journald.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/kafka.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/kafka_consumer_lag.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/kafka_zookeeper.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/kannel.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/keepalived.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/linode.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/loki.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/lustre_metadata.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/lynis_audit_reports.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/meilisearch.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/mesos.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/minecraft.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/modbus_protocol.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/mogilefs.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/mosquitto.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/mqtt_blackbox.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/mtail.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/nagios.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/nature_remo_e_lite_devices.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/netapp_ontap_api.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/netapp_solidfire.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/netatmo_sensors.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/nextcloud_servers.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/nextdns.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/nrpe_daemon.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/obs_studio.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/open_vswitch.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/openrc.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/openroadm_devices.md
+4
-2
@@ -118,10 +118,10 @@ The following options can be defined globally: update_every, autodetection_retry
118
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
119
| **Target** | url | Target endpoint URL. | | yes |
120
| | timeout | HTTP request timeout (seconds). | 10 | no |
121
-| **Filters** | selector | Time series selector (filter). | | no |
121
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
122
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
123
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
124
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
124
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
125
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
126
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
127
| | password | Password for Basic HTTP authentication. | | no |
@@ -140,6 +140,7 @@ The following options can be defined globally: update_every, autodetection_retry
140
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
141
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
142
143
+<a id="option-filters-selector"></a>
144
##### selector
145
146
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -159,6 +160,7 @@ selector:
160
```
161
162
163
+<a id="option-customization-fallback-type"></a>
164
##### fallback_type
165
166
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/openweathermap.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/patroni.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/personal_weather_station.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/pgbackrest.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/pgpool-ii.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/philips_hue.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/pimoroni_enviro+.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/podman.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/powerpal_devices.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/proftpd.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/prometheus_endpoint.md
+4
-2
@@ -114,10 +114,10 @@ The following options can be defined globally: update_every, autodetection_retry
114
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
115
| **Target** | url | Target endpoint URL. | | yes |
116
| | timeout | HTTP request timeout (seconds). | 10 | no |
117
-| **Filters** | selector | Time series selector (filter). | | no |
117
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
118
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
119
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
120
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
120
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
121
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
122
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
123
| | password | Password for Basic HTTP authentication. | | no |
@@ -136,6 +136,7 @@ The following options can be defined globally: update_every, autodetection_retry
136
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
137
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
138
139
+<a id="option-filters-selector"></a>
140
##### selector
141
142
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -155,6 +156,7 @@ selector:
156
```
157
158
159
+<a id="option-customization-fallback-type"></a>
160
##### fallback_type
161
162
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/proxmox_ve.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/radio_thermostat.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/radius.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/raritan_pdu.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/redis_queue.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ripe_atlas.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sabnzbd.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/salicru_eqx_inverter.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/scylladb.md
+4
-2
@@ -113,10 +113,10 @@ The following options can be defined globally: update_every, autodetection_retry
113
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
114
| **Target** | url | Target endpoint URL. | | yes |
115
| | timeout | HTTP request timeout (seconds). | 10 | no |
116
-| **Filters** | selector | Time series selector (filter). | | no |
116
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
117
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
118
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
119
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
119
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
120
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
121
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
122
| | password | Password for Basic HTTP authentication. | | no |
@@ -135,6 +135,7 @@ The following options can be defined globally: update_every, autodetection_retry
135
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
136
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
137
138
+<a id="option-filters-selector"></a>
139
##### selector
140
141
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -154,6 +155,7 @@ selector:
155
```
156
157
158
+<a id="option-customization-fallback-type"></a>
159
##### fallback_type
160
161
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sense_energy.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/shelly_humidity_sensor.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/siemens_s7_plc.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/site_24x7.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/slurm.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sma_inverters.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/smart_meters_sml.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/softether_vpn_server.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/solar_logging_stick.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/solis_ginlong_5g_inverters.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sonic_nos.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/spacelift.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sphinx.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/starlink_spacex.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/statuspage.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/steam.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/storidge.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/strongswan.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sunspec_solar_energy.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/suricata.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/synology_activebackup.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/sysload.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/tacacs.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/tado_smart_heating_solution.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/tankerkoenig_api.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/tesla_vehicle.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/tesla_wall_connector.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/twitch.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/ubiquiti_ufiber_olt.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/uptimerobot.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/vault_pki.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/vertica.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/vscode.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/warp10.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/xiaomi_mi_flora.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/yourls_url_shortener.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/prometheus/integrations/zerto.md
+4
-2
@@ -117,10 +117,10 @@ The following options can be defined globally: update_every, autodetection_retry
117
| | autodetection_retry | Autodetection retry interval (seconds). Set 0 to disable. | 0 | no |
118
| **Target** | url | Target endpoint URL. | | yes |
119
| | timeout | HTTP request timeout (seconds). | 10 | no |
120
-| **Filters** | selector | Time series selector (filter). | | no |
120
+| **Filters** | [selector](#option-filters-selector) | Time series selector (filter). | | no |
121
| **Limits** | max_time_series | Global time series limit. If an endpoint returns more time series than this, the data is not processed. | 2000 | no |
122
| | max_time_series_per_metric | Per-metric time series limit. Metrics with more time series than this are skipped. | 200 | no |
123
-| **Customization** | fallback_type | Fallback type rules for untyped metrics. | | no |
123
+| **Customization** | [fallback_type](#option-customization-fallback-type) | Fallback type rules for untyped metrics. | | no |
124
| | label_prefix | Optional prefix added to all labels of all charts. Labels will be formatted as `prefix_name`. | | no |
125
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | no |
126
| | password | Password for Basic HTTP authentication. | | no |
@@ -139,6 +139,7 @@ The following options can be defined globally: update_every, autodetection_retry
139
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
140
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
141
142
+<a id="option-filters-selector"></a>
143
##### selector
144
145
This option allows you to filter out unwanted time series. Only metrics matching the selector will be collected.
@@ -158,6 +159,7 @@ selector:
159
```
160
161
162
+<a id="option-customization-fallback-type"></a>
163
##### fallback_type
164
165
This option allows you to process Untyped metrics as Counter or Gauge instead of ignoring them.
src/go/plugin/go.d/collector/smartctl/integrations/s.m.a.r.t..md
+2
-1
@@ -173,8 +173,9 @@ The following options can be defined globally: update_every.
173
| **Target** | device_selector | Pattern to match the 'info name' of devices as reported by `smartctl --scan --json`. | * | no |
174
| | extra_devices | Manually specify devices not auto-detected by `smartctl --scan`. Each entry must include both a name and a type. | [] | no |
175
| **Performance** | concurrent_scans | Number of devices to scan concurrently. Set 0 for sequential scanning (default). Helps performance when monitoring many devices. | 0 | no |
176
-| | no_check_power_mode | Skip data collection when device is in low-power mode (avoids unnecessary spin-up). | standby | no |
176
+| | [no_check_power_mode](#option-performance-no-check-power-mode) | Skip data collection when device is in low-power mode (avoids unnecessary spin-up). | standby | no |
177
178
+<a id="option-performance-no-check-power-mode"></a>
179
##### no_check_power_mode
180
181
Valid arguments:
src/go/plugin/go.d/collector/snmp/integrations/snmp_devices.md
+6
-3
@@ -240,10 +240,10 @@ The following options can be defined globally: update_every, autodetection_retry
240
| **Target** | hostname | Target host (IP or DNS name, IPv4/IPv6). | | yes |
241
| **SNMPv1/2** | community | SNMPv1/2 community string. | public | no |
242
| **SNMPv3** | user.name | SNMPv3 user name. | | no |
243
-| | user.level | Security level of SNMPv3 messages. | | no |
244
-| | user.auth_proto | Authentication protocol for SNMPv3 messages. | | no |
243
+| | [user.level](#option-snmpv3-user-level) | Security level of SNMPv3 messages. | | no |
244
+| | [user.auth_proto](#option-snmpv3-user-auth-proto) | Authentication protocol for SNMPv3 messages. | | no |
245
| | user.auth_key | Authentication protocol pass phrase for SNMPv3 messages. | | no |
246
-| | user.priv_proto | Privacy protocol for SNMPv3 messages. | | no |
246
+| | [user.priv_proto](#option-snmpv3-user-priv-proto) | Privacy protocol for SNMPv3 messages. | | no |
247
| | user.priv_key | Privacy protocol pass phrase for SNMPv3 messages. | | no |
248
| **SNMP transport** | options.version | SNMP version. Available versions: 1, 2, 3. | 2 | no |
249
| | options.port | Target port. | 161 | no |
@@ -263,6 +263,7 @@ The following options can be defined globally: update_every, autodetection_retry
263
| | vnode.hostname | The hostname that will be used for the Virtual Node. If not set, the device's hostname will be used. | | no |
264
| | vnode.labels | Additional key-value pairs to associate with the Virtual Node. | | no |
265
266
+<a id="option-snmpv3-user-level"></a>
267
##### user.level
268
269
The security of an SNMPv3 message as per RFC 3414 (`user.level`):
@@ -274,6 +275,7 @@ The security of an SNMPv3 message as per RFC 3414 (`user.level`):
275
| authPriv | 3 | message authentication and encryption |
276
277
278
+<a id="option-snmpv3-user-auth-proto"></a>
279
##### user.auth_proto
280
281
The digest algorithm for SNMPv3 messages that require authentication (`user.auth_proto`):
@@ -289,6 +291,7 @@ The digest algorithm for SNMPv3 messages that require authentication (`user.auth
291
| sha512 | 7 | SHA message authentication (HMAC-SHA-512) |
292
293
294
+<a id="option-snmpv3-user-priv-proto"></a>
295
##### user.priv_proto
296
297
The encryption algorithm for SNMPv3 messages that require privacy (`user.priv_proto`):
src/go/plugin/go.d/collector/systemdunits/integrations/systemd_units.md
+4
-2
@@ -155,12 +155,13 @@ The following options can be defined globally: update_every, autodetection_retry
155
| **Collection** | update_every | Data collection frequency. | 1 | no |
156
| | autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
157
| | timeout | System bus requests timeout. | 1 | no |
158
-| **Units** | include | Systemd units selector. | *.service | no |
158
+| **Units** | [include](#option-units-include) | Systemd units selector. | *.service | no |
159
| | skip_transient | If set, skip data collection for systemd transient units. | false | no |
160
| **Unit Files** | collect_unit_files | If set to true, collect the state of installed unit files. Enabling this may increase system overhead. | false | no |
161
| | collect_unit_files_every | Interval for querying systemd about unit files and their enablement state, measured in seconds. Data is cached for this interval to reduce system overhead. | 300 | no |
162
-| | include_unit_files | Systemd unit files selector. | *.service | no |
162
+| | [include_unit_files](#option-unit-files-include-unit-files) | Systemd unit files selector. | *.service | no |
163
164
+<a id="option-units-include"></a>
165
##### include
166
167
Systemd units matching the selector will be monitored.
@@ -176,6 +177,7 @@ includes:
177
```
178
179
180
+<a id="option-unit-files-include-unit-files"></a>
181
##### include_unit_files
182
183
Systemd unit files matching the selector will be monitored.
src/go/plugin/go.d/collector/vsphere/integrations/vmware_vcenter_server.md
+4
-2
@@ -210,8 +210,8 @@ The following options can be defined globally: update_every, autodetection_retry
210
| **Target** | url | Target endpoint URL. | http://127.0.0.1/server-status?auto | yes |
211
| | timeout | HTTP request timeout (seconds). | 1 | no |
212
| **Discovery** | discovery_interval | Hosts and VMs discovery interval (seconds). | 300 | no |
213
-| **Filters** | host_include | Hosts selector (filter). | /* | no |
214
-| | vm_include | VM selector (filter). | /* | no |
213
+| **Filters** | [host_include](#option-filters-host-include) | Hosts selector (filter). | /* | no |
214
+| | [vm_include](#option-filters-vm-include) | VM selector (filter). | /* | no |
215
| **HTTP Auth** | username | Username for Basic HTTP authentication. | | yes |
216
| | password | Password for Basic HTTP authentication. | | yes |
217
| | bearer_token_file | Path to a file containing a bearer token (used for `Authorization: Bearer`). | | no |
@@ -229,6 +229,7 @@ The following options can be defined globally: update_every, autodetection_retry
229
| | force_http2 | Force HTTP/2 (including h2c over TCP). | no | no |
230
| **Virtual Node** | vnode | Associates this data collection job with a [Virtual Node](https://learn.netdata.cloud/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts#virtual-nodes). | | no |
231
232
+<a id="option-filters-host-include"></a>
233
##### host_include
234
235
Metrics of hosts matching the selector will be collected.
@@ -245,6 +246,7 @@ Metrics of hosts matching the selector will be collected.
246
```
247
248
249
+<a id="option-filters-vm-include"></a>
250
##### vm_include
251
252
Metrics of VMs matching the selector will be collected.
src/go/plugin/go.d/collector/weblog/integrations/web_server_log_files.md
+10
-5
@@ -218,22 +218,23 @@ Notes:
218
| | autodetection_retry | Recheck interval in seconds. Zero means no recheck will be scheduled. | 0 | no |
219
| **Target** | path | Path to the web server log file. | | yes |
220
| | exclude_path | Path to exclude. | *.gz | no |
221
-| **Customization** | url_patterns | List of URL patterns. | [] | no |
221
+| **Customization** | [url_patterns](#option-customization-url-patterns) | List of URL patterns. | [] | no |
222
| | url_patterns.name | Used as a dimension name. | | yes |
223
| | 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 |
224
-| **Parser** | log_type | Log parser type. | auto | no |
224
+| **Parser** | [log_type](#option-parser-log-type) | Log parser type. | auto | no |
225
| | csv_config | CSV log parser config. | | no |
226
| | csv_config.delimiter | CSV field delimiter. | , | no |
227
| | csv_config.format | CSV log format. | | no |
228
| | ltsv_config | LTSV log parser config. | | no |
229
| | ltsv_config.field_delimiter | LTSV field delimiter. | \t | no |
230
| | ltsv_config.value_delimiter | LTSV value delimiter. | : | no |
231
-| | ltsv_config.mapping | LTSV fields mapping to **known fields**. | | yes |
231
+| | [ltsv_config.mapping](#option-parser-ltsv-config-mapping) | LTSV fields mapping to **known fields**. | | yes |
232
| | json_config | JSON log parser config. | | no |
233
-| | json_config.mapping | JSON fields mapping to **known fields**. | | yes |
233
+| | [json_config.mapping](#option-parser-json-config-mapping) | JSON fields mapping to **known fields**. | | yes |
234
| | regexp_config | RegExp log parser config. | | no |
235
-| | regexp_config.pattern | RegExp pattern with named groups. | | yes |
235
+| | [regexp_config.pattern](#option-parser-regexp-config-pattern) | RegExp pattern with named groups. | | yes |
236
237
+<a id="option-customization-url-patterns"></a>
238
##### url_patterns
239
240
"URL pattern" scope metrics will be collected for each URL pattern.
@@ -249,6 +250,7 @@ url_patterns:
250
```
251
252
253
+<a id="option-parser-log-type"></a>
254
##### log_type
255
256
Weblog supports 5 different log parsers:
@@ -289,6 +291,7 @@ If `log_type` parameter set to `auto` (which is default), weblog will try to aut
291
If you're using the default Apache/NGINX log format, auto-detect will work for you. If it doesn't work you need to set the format manually.
292
293
294
+<a id="option-parser-ltsv-config-mapping"></a>
295
##### ltsv_config.mapping
296
297
The mapping is a dictionary where the key is a field, as in logs, and the value is the corresponding **known field**.
@@ -304,6 +307,7 @@ ltsv_config:
307
```
308
309
310
+<a id="option-parser-json-config-mapping"></a>
311
##### json_config.mapping
312
313
The mapping is a dictionary where the key is a field, as in logs, and the value is the corresponding **known field**.
@@ -319,6 +323,7 @@ json_config:
323
```
324
325
326
+<a id="option-parser-regexp-config-pattern"></a>
327
##### regexp_config.pattern
328
329
Use pattern with subexpressions names. These names should be **known fields**.
src/health/notifications/alerta/README.md
+4
-2
@@ -47,10 +47,11 @@ The following options can be defined for this notification
47
|:-----|:------------|:--------|:---------:|
48
| SEND_ALERTA | Set `SEND_ALERTA` to YES | | yes |
49
| ALERTA_WEBHOOK_URL | set `ALERTA_WEBHOOK_URL` to the API url you defined when you installed the Alerta server. | | yes |
50
-| ALERTA_API_KEY | Set `ALERTA_API_KEY` to your API key. | | yes |
50
+| [ALERTA_API_KEY](#option-alerta-api-key) | Set `ALERTA_API_KEY` to your API key. | | yes |
51
| DEFAULT_RECIPIENT_ALERTA | Set `DEFAULT_RECIPIENT_ALERTA` to the default recipient environment you want the alert notifications to be sent to. All roles will default to this variable if left unconfigured. | | yes |
52
-| DEFAULT_RECIPIENT_CUSTOM | Set different recipient environments per role, by editing `DEFAULT_RECIPIENT_CUSTOM` with the environment name of your choice | | no |
52
+| [DEFAULT_RECIPIENT_CUSTOM](#option-default-recipient-custom) | Set different recipient environments per role, by editing `DEFAULT_RECIPIENT_CUSTOM` with the environment name of your choice | | no |
53
54
+<a id="option-alerta-api-key"></a>
55
##### ALERTA_API_KEY
56
57
You will need an API key to send messages from any source, if Alerta is configured to use authentication (recommended). To create a new API key:
@@ -58,6 +59,7 @@ You will need an API key to send messages from any source, if Alerta is configur
59
2. Create a new API key called "netdata" with `write:alerts` permission.
60
61
62
+<a id="option-default-recipient-custom"></a>
63
##### DEFAULT_RECIPIENT_CUSTOM
64
65
The `DEFAULT_RECIPIENT_CUSTOM` can be edited in the following entries at the bottom of the same file:
src/health/notifications/awssns/README.md
+4
-2
@@ -64,9 +64,10 @@ The following options can be defined for this notification
64
|:-----|:------------|:--------|:---------:|
65
| aws path | The full path of the aws command. If empty, the system `$PATH` will be searched for it. If not found, Amazon SNS notifications will be silently disabled. | | yes |
66
| SEND_AWSNS | Set `SEND_AWSNS` to YES | YES | yes |
67
-| AWSSNS_MESSAGE_FORMAT | Set `AWSSNS_MESSAGE_FORMAT` to to the string that you want the alert to be sent into. | ${status} on ${host} at ${date}: ${chart} ${value_string} | yes |
68
-| DEFAULT_RECIPIENT_AWSSNS | Set `DEFAULT_RECIPIENT_AWSSNS` to the Topic ARN you noted down upon creating the Topic. | | yes |
67
+| [AWSSNS_MESSAGE_FORMAT](#option-awssns-message-format) | Set `AWSSNS_MESSAGE_FORMAT` to to the string that you want the alert to be sent into. | ${status} on ${host} at ${date}: ${chart} ${value_string} | yes |
68
+| [DEFAULT_RECIPIENT_AWSSNS](#option-default-recipient-awssns) | Set `DEFAULT_RECIPIENT_AWSSNS` to the Topic ARN you noted down upon creating the Topic. | | yes |
69
70
+<a id="option-awssns-message-format"></a>
71
##### AWSSNS_MESSAGE_FORMAT
72
73
The supported variables are:
@@ -109,6 +110,7 @@ The supported variables are:
110
| `${total_critical}` | The total number of alarms in CRITICAL state on the host |
111
112
113
+<a id="option-default-recipient-awssns"></a>
114
##### DEFAULT_RECIPIENT_AWSSNS
115
116
All roles will default to this variable if left unconfigured.
src/health/notifications/custom/README.md
+4
-2
@@ -43,9 +43,10 @@ The following options can be defined for this notification
43
| Option | Description | Default | Required |
44
|:-----|:------------|:--------|:---------:|
45
| SEND_CUSTOM | Set `SEND_CUSTOM` to YES | YES | yes |
46
-| DEFAULT_RECIPIENT_CUSTOM | This value is dependent on how you handle the `${to}` variable inside the `custom_sender()` function. | | yes |
47
-| custom_sender() | You can look at the other senders in `/usr/libexec/netdata/plugins.d/alarm-notify.sh` for examples of how to modify the function in this configuration file. | | no |
46
+| [DEFAULT_RECIPIENT_CUSTOM](#option-default-recipient-custom) | This value is dependent on how you handle the `${to}` variable inside the `custom_sender()` function. | | yes |
47
+| [custom_sender()](#option-custom-sender) | You can look at the other senders in `/usr/libexec/netdata/plugins.d/alarm-notify.sh` for examples of how to modify the function in this configuration file. | | no |
48
49
+<a id="option-default-recipient-custom"></a>
50
##### DEFAULT_RECIPIENT_CUSTOM
51
52
All roles will default to this variable if left unconfigured. You can edit `DEFAULT_RECIPIENT_CUSTOM` with the variable you want, in the following entries at the bottom of the same file:
@@ -59,6 +60,7 @@ role_recipients_custom[sitemgr]="sites"
60
```
61
62
63
+<a id="option-custom-sender"></a>
64
##### custom_sender()
65
66
The following is a sample custom_sender() function in health_alarm_notify.conf, to send an SMS via an imaginary HTTPS endpoint to the SMS gateway:
src/health/notifications/discord/README.md
+2
-1
@@ -46,8 +46,9 @@ The following options can be defined for this notification
46
|:-----|:------------|:--------|:---------:|
47
| SEND_DISCORD | Set `SEND_DISCORD` to YES | YES | yes |
48
| DISCORD_WEBHOOK_URL | set `DISCORD_WEBHOOK_URL` to your webhook URL. | | yes |
49
-| DEFAULT_RECIPIENT_DISCORD | Set `DEFAULT_RECIPIENT_DISCORD` to the channel you want the alert notifications to be sent to. You can define multiple channels like this: `alerts` `systems`. | | yes |
49
+| [DEFAULT_RECIPIENT_DISCORD](#option-default-recipient-discord) | Set `DEFAULT_RECIPIENT_DISCORD` to the channel you want the alert notifications to be sent to. You can define multiple channels like this: `alerts` `systems`. | | yes |
50
51
+<a id="option-default-recipient-discord"></a>
52
##### DEFAULT_RECIPIENT_DISCORD
53
54
All roles will default to this variable if left unconfigured.
src/health/notifications/dynatrace/README.md
+4
-2
@@ -50,16 +50,18 @@ The following options can be defined for this notification
50
| SEND_DYNATRACE | Set `SEND_DYNATRACE` to YES | YES | yes |
51
| DYNATRACE_SERVER | Set `DYNATRACE_SERVER` to the Dynatrace server with the protocol prefix, for example `https://monitor.example.com`. | | yes |
52
| DYNATRACE_TOKEN | Set `DYNATRACE_TOKEN` to your Dynatrace API authentication token | | yes |
53
-| DYNATRACE_SPACE | Set `DYNATRACE_SPACE` to the API Space, it is the URL part of the page you have access in order to generate the API Token. | | yes |
53
+| [DYNATRACE_SPACE](#option-dynatrace-space) | Set `DYNATRACE_SPACE` to the API Space, it is the URL part of the page you have access in order to generate the API Token. | | yes |
54
| DYNATRACE_TAG_VALUE | Set `DYNATRACE_TAG_VALUE` to your Dynatrace Server Tag. | | yes |
55
| DYNATRACE_ANNOTATION_TYPE | `DYNATRACE_ANNOTATION_TYPE` can be left to its default value Netdata Alarm, but you can change it to better fit your needs. | Netdata Alarm | no |
56
-| DYNATRACE_EVENT | Set `DYNATRACE_EVENT` to the Dynatrace eventType you want. | Netdata Alarm | no |
56
+| [DYNATRACE_EVENT](#option-dynatrace-event) | Set `DYNATRACE_EVENT` to the Dynatrace eventType you want. | Netdata Alarm | no |
57
58
+<a id="option-dynatrace-space"></a>
59
##### DYNATRACE_SPACE
60
61
For example, the URL for a generated API token might look like: https://monitor.illumineit.com/e/2a93fe0e-4cd5-469a-9d0d-1a064235cfce/#settings/integration/apikeys;gf=all In that case, the Space is 2a93fe0e-4cd5-469a-9d0d-1a064235cfce.
62
63
64
+<a id="option-dynatrace-event"></a>
65
##### DYNATRACE_EVENT
66
67
`AVAILABILITY_EVENT`, `CUSTOM_ALERT`, `CUSTOM_ANNOTATION`, `CUSTOM_CONFIGURATION`, `CUSTOM_DEPLOYMENT`, `CUSTOM_INFO`, `ERROR_EVENT`,
src/health/notifications/email/README.md
+2
-1
@@ -56,8 +56,9 @@ The following options can be defined for this notification
56
|:-----|:------------|:--------|:---------:|
57
| EMAIL_SENDER | You can change `EMAIL_SENDER` to the email address sending the notifications. | netdata | no |
58
| SEND_EMAIL | Set `SEND_EMAIL` to YES | YES | yes |
59
-| DEFAULT_RECIPIENT_EMAIL | Set `DEFAULT_RECIPIENT_EMAIL` to the email address you want the email to be sent by default. You can define multiple email addresses like this: `alarms@example.com` `systems@example.com`. | root | yes |
59
+| [DEFAULT_RECIPIENT_EMAIL](#option-default-recipient-email) | Set `DEFAULT_RECIPIENT_EMAIL` to the email address you want the email to be sent by default. You can define multiple email addresses like this: `alarms@example.com` `systems@example.com`. | root | yes |
60
61
+<a id="option-default-recipient-email"></a>
62
##### DEFAULT_RECIPIENT_EMAIL
63
64
All roles will default to this variable if left unconfigured.
src/health/notifications/flock/README.md
+2
-1
@@ -45,8 +45,9 @@ The following options can be defined for this notification
45
|:-----|:------------|:--------|:---------:|
46
| SEND_FLOCK | Set `SEND_FLOCK` to YES | YES | yes |
47
| FLOCK_WEBHOOK_URL | set `FLOCK_WEBHOOK_URL` to your webhook URL. | | yes |
48
-| DEFAULT_RECIPIENT_FLOCK | Set `DEFAULT_RECIPIENT_FLOCK` to the Flock channel you want the alert notifications to be sent to. All roles will default to this variable if left unconfigured. | | yes |
48
+| [DEFAULT_RECIPIENT_FLOCK](#option-default-recipient-flock) | Set `DEFAULT_RECIPIENT_FLOCK` to the Flock channel you want the alert notifications to be sent to. All roles will default to this variable if left unconfigured. | | yes |
49
50
+<a id="option-default-recipient-flock"></a>
51
##### DEFAULT_RECIPIENT_FLOCK
52
53
You can have different channels per role, by editing DEFAULT_RECIPIENT_FLOCK with the channel you want, in the following entries at the bottom of the same file:
src/health/notifications/irc/README.md
+4
-2
@@ -43,14 +43,15 @@ The following options can be defined for this notification
43
44
| Option | Description | Default | Required |
45
|:-----|:------------|:--------|:---------:|
46
-| nc path | Set the path for nc, otherwise Netdata will search for it in your system $PATH | | yes |
46
+| [nc path](#option-nc-path) | Set the path for nc, otherwise Netdata will search for it in your system $PATH | | yes |
47
| SEND_IRC | Set `SEND_IRC` YES. | YES | yes |
48
| IRC_NETWORK | Set `IRC_NETWORK` to the IRC network which your preferred channels belong to. | | yes |
49
| IRC_PORT | Set `IRC_PORT` to the IRC port to which a connection will occur. | | no |
50
| IRC_NICKNAME | Set `IRC_NICKNAME` to the IRC nickname which is required to send the notification. It must not be an already registered name as the connection's MODE is defined as a guest. | | yes |
51
| IRC_REALNAME | Set `IRC_REALNAME` to the IRC realname which is required in order to make the connection. | | yes |
52
-| DEFAULT_RECIPIENT_IRC | You can have different channels per role, by editing `DEFAULT_RECIPIENT_IRC` with the channel you want | | yes |
52
+| [DEFAULT_RECIPIENT_IRC](#option-default-recipient-irc) | You can have different channels per role, by editing `DEFAULT_RECIPIENT_IRC` with the channel you want | | yes |
53
54
+<a id="option-nc-path"></a>
55
##### nc path
56
57
```sh
@@ -64,6 +65,7 @@ nc="/usr/bin/nc"
65
```
66
67
68
+<a id="option-default-recipient-irc"></a>
69
##### DEFAULT_RECIPIENT_IRC
70
71
The `DEFAULT_RECIPIENT_IRC` can be edited in the following entries at the bottom of the same file:
src/health/notifications/kavenegar/README.md
+2
-1
@@ -47,8 +47,9 @@ The following options can be defined for this notification
47
| SEND_KAVENEGAR | Set `SEND_KAVENEGAR` to YES | YES | yes |
48
| KAVENEGAR_API_KEY | Set `KAVENEGAR_API_KEY` to your API key. | | yes |
49
| KAVENEGAR_SENDER | Set `KAVENEGAR_SENDER` to the value of your Sender. | | yes |
50
-| DEFAULT_RECIPIENT_KAVENEGAR | Set `DEFAULT_RECIPIENT_KAVENEGAR` to the SMS recipient you want the alert notifications to be sent to. You can define multiple recipients like this: 09155555555 09177777777. | | yes |
50
+| [DEFAULT_RECIPIENT_KAVENEGAR](#option-default-recipient-kavenegar) | Set `DEFAULT_RECIPIENT_KAVENEGAR` to the SMS recipient you want the alert notifications to be sent to. You can define multiple recipients like this: 09155555555 09177777777. | | yes |
51
52
+<a id="option-default-recipient-kavenegar"></a>
53
##### DEFAULT_RECIPIENT_KAVENEGAR
54
55
All roles will default to this variable if lest unconfigured.
src/health/notifications/matrix/README.md
+4
-2
@@ -47,9 +47,10 @@ The following options can be defined for this notification
47
|:-----|:------------|:--------|:---------:|
48
| SEND_MATRIX | Set `SEND_MATRIX` to YES | YES | yes |
49
| MATRIX_HOMESERVER | set `MATRIX_HOMESERVER` to the URL of the Matrix homeserver. | | yes |
50
-| MATRIX_ACCESSTOKEN | Set `MATRIX_ACCESSTOKEN` to the access token from your Matrix account. | | yes |
51
-| DEFAULT_RECIPIENT_MATRIX | Set `DEFAULT_RECIPIENT_MATRIX` to the Rooms you want the alert notifications to be sent to. The format is `!roomid:homeservername`. | | yes |
50
+| [MATRIX_ACCESSTOKEN](#option-matrix-accesstoken) | Set `MATRIX_ACCESSTOKEN` to the access token from your Matrix account. | | yes |
51
+| [DEFAULT_RECIPIENT_MATRIX](#option-default-recipient-matrix) | Set `DEFAULT_RECIPIENT_MATRIX` to the Rooms you want the alert notifications to be sent to. The format is `!roomid:homeservername`. | | yes |
52
53
+<a id="option-matrix-accesstoken"></a>
54
##### MATRIX_ACCESSTOKEN
55
56
To obtain the access token, you can use the following curl command:
@@ -58,6 +59,7 @@ curl -XPOST -d '{"type":"m.login.password", "user":"example", "password":"wordpa
59
```
60
61
62
+<a id="option-default-recipient-matrix"></a>
63
##### DEFAULT_RECIPIENT_MATRIX
64
65
The Room ids are unique identifiers and can be obtained from the Room settings in a Matrix client (e.g. Riot).
src/health/notifications/messagebird/README.md
+2
-1
@@ -46,8 +46,9 @@ The following options can be defined for this notification
46
| SEND_MESSAGEBIRD | Set `SEND_MESSAGEBIRD` to YES | YES | yes |
47
| MESSAGEBIRD_ACCESS_KEY | Set `MESSAGEBIRD_ACCESS_KEY` to your API key. | | yes |
48
| MESSAGEBIRD_NUMBER | Set `MESSAGEBIRD_NUMBER` to the MessageBird number you want to use for the alert. | | yes |
49
-| DEFAULT_RECIPIENT_MESSAGEBIRD | Set `DEFAULT_RECIPIENT_MESSAGEBIRD` to the number you want the alert notification to be sent as an SMS. You can define multiple recipients like this: +15555555555 +17777777777. | | yes |
49
+| [DEFAULT_RECIPIENT_MESSAGEBIRD](#option-default-recipient-messagebird) | Set `DEFAULT_RECIPIENT_MESSAGEBIRD` to the number you want the alert notification to be sent as an SMS. You can define multiple recipients like this: +15555555555 +17777777777. | | yes |
50
51
+<a id="option-default-recipient-messagebird"></a>
52
##### DEFAULT_RECIPIENT_MESSAGEBIRD
53
54
All roles will default to this variable if left unconfigured.
src/health/notifications/msteams/README.md
+2
-1
@@ -46,8 +46,9 @@ The following options can be defined for this notification
46
|:-----|:------------|:--------|:---------:|
47
| SEND_MSTEAMS | Set `SEND_MSTEAMS` to YES | YES | yes |
48
| MSTEAMS_WEBHOOK_URL | set `MSTEAMS_WEBHOOK_URL` to the incoming webhook URL as given by Microsoft Teams. | | yes |
49
-| DEFAULT_RECIPIENT_MSTEAMS | Set `DEFAULT_RECIPIENT_MSTEAMS` to the encoded Microsoft Teams channel name you want the alert notifications to be sent to. | | yes |
49
+| [DEFAULT_RECIPIENT_MSTEAMS](#option-default-recipient-msteams) | Set `DEFAULT_RECIPIENT_MSTEAMS` to the encoded Microsoft Teams channel name you want the alert notifications to be sent to. | | yes |
50
51
+<a id="option-default-recipient-msteams"></a>
52
##### DEFAULT_RECIPIENT_MSTEAMS
53
54
In Microsoft Teams the channel name is encoded in the URI after `/IncomingWebhook/`. You can define multiple channels like this: `CHANNEL1` `CHANNEL2`.
src/health/notifications/ntfy/README.md
+8
-4
@@ -46,11 +46,12 @@ The following options can be defined for this notification
46
| Option | Description | Default | Required |
47
|:-----|:------------|:--------|:---------:|
48
| SEND_NTFY | Set `SEND_NTFY` to YES | YES | yes |
49
-| DEFAULT_RECIPIENT_NTFY | URL formed by the server-topic combination you want the alert notifications to be sent to. Unless hosting your own server, the server should always be set to https://ntfy.sh. | | yes |
50
-| NTFY_USERNAME | The username for netdata to use to authenticate with an ntfy server. | | no |
51
-| NTFY_PASSWORD | The password for netdata to use to authenticate with an ntfy server. | | no |
52
-| NTFY_ACCESS_TOKEN | The access token for netdata to use to authenticate with an ntfy server. | | no |
49
+| [DEFAULT_RECIPIENT_NTFY](#option-default-recipient-ntfy) | URL formed by the server-topic combination you want the alert notifications to be sent to. Unless hosting your own server, the server should always be set to https://ntfy.sh. | | yes |
50
+| [NTFY_USERNAME](#option-ntfy-username) | The username for netdata to use to authenticate with an ntfy server. | | no |
51
+| [NTFY_PASSWORD](#option-ntfy-password) | The password for netdata to use to authenticate with an ntfy server. | | no |
52
+| [NTFY_ACCESS_TOKEN](#option-ntfy-access-token) | The access token for netdata to use to authenticate with an ntfy server. | | no |
53
54
+<a id="option-default-recipient-ntfy"></a>
55
##### DEFAULT_RECIPIENT_NTFY
56
57
You can define multiple recipient URLs like this: `https://SERVER1/TOPIC1` `https://SERVER2/TOPIC2`
@@ -68,18 +69,21 @@ role_recipients_ntfy[sitemgr]="https://SERVER6/TOPIC6"
69
```
70
71
72
+<a id="option-ntfy-username"></a>
73
##### NTFY_USERNAME
74
75
Only useful on self-hosted ntfy instances. See [users and roles](https://docs.ntfy.sh/config/#users-and-roles) for details.
76
Ensure that your user has proper read/write access to the provided topic in `DEFAULT_RECIPIENT_NTFY`
77
78
79
+<a id="option-ntfy-password"></a>
80
##### NTFY_PASSWORD
81
82
Only useful on self-hosted ntfy instances. See [users and roles](https://docs.ntfy.sh/config/#users-and-roles) for details.
83
Ensure that your user has proper read/write access to the provided topic in `DEFAULT_RECIPIENT_NTFY`
84
85
86
+<a id="option-ntfy-access-token"></a>
87
##### NTFY_ACCESS_TOKEN
88
89
This can be used in place of `NTFY_USERNAME` and `NTFY_PASSWORD` to authenticate with a self-hosted ntfy instance. See [access tokens](https://docs.ntfy.sh/config/?h=access+to#access-tokens) for details.
src/health/notifications/pagerduty/README.md
+2
-1
@@ -47,8 +47,9 @@ The following options can be defined for this notification
47
| Option | Description | Default | Required |
48
|:-----|:------------|:--------|:---------:|
49
| SEND_PD | Set `SEND_PD` to YES | YES | yes |
50
-| DEFAULT_RECIPIENT_PD | Set `DEFAULT_RECIPIENT_PD` to the PagerDuty service key you want the alert notifications to be sent to. You can define multiple service keys like this: `pd_service_key_1` `pd_service_key_2`. | | yes |
50
+| [DEFAULT_RECIPIENT_PD](#option-default-recipient-pd) | Set `DEFAULT_RECIPIENT_PD` to the PagerDuty service key you want the alert notifications to be sent to. You can define multiple service keys like this: `pd_service_key_1` `pd_service_key_2`. | | yes |
51
52
+<a id="option-default-recipient-pd"></a>
53
##### DEFAULT_RECIPIENT_PD
54
55
All roles will default to this variable if left unconfigured.
src/health/notifications/prowl/README.md
+2
-1
@@ -50,8 +50,9 @@ The following options can be defined for this notification
50
| Option | Description | Default | Required |
51
|:-----|:------------|:--------|:---------:|
52
| SEND_PROWL | Set `SEND_PROWL` to YES | YES | yes |
53
-| DEFAULT_RECIPIENT_PROWL | Set `DEFAULT_RECIPIENT_PROWL` to the Prowl API key you want the alert notifications to be sent to. You can define multiple API keys like this: `APIKEY1`, `APIKEY2`. | | yes |
53
+| [DEFAULT_RECIPIENT_PROWL](#option-default-recipient-prowl) | Set `DEFAULT_RECIPIENT_PROWL` to the Prowl API key you want the alert notifications to be sent to. You can define multiple API keys like this: `APIKEY1`, `APIKEY2`. | | yes |
54
55
+<a id="option-default-recipient-prowl"></a>
56
##### DEFAULT_RECIPIENT_PROWL
57
58
All roles will default to this variable if left unconfigured.
src/health/notifications/pushbullet/README.md
+2
-1
@@ -45,8 +45,9 @@ The following options can be defined for this notification
45
|:-----|:------------|:--------|:---------:|
46
| Send_PUSHBULLET | Set `Send_PUSHBULLET` to YES | YES | yes |
47
| PUSHBULLET_ACCESS_TOKEN | set `PUSHBULLET_ACCESS_TOKEN` to the access token you generated. | | yes |
48
-| DEFAULT_RECIPIENT_PUSHBULLET | Set `DEFAULT_RECIPIENT_PUSHBULLET` to the email (e.g. `example@domain.com`) or the channel tag (e.g. `#channel`) you want the alert notifications to be sent to. | | yes |
48
+| [DEFAULT_RECIPIENT_PUSHBULLET](#option-default-recipient-pushbullet) | Set `DEFAULT_RECIPIENT_PUSHBULLET` to the email (e.g. `example@domain.com`) or the channel tag (e.g. `#channel`) you want the alert notifications to be sent to. | | yes |
49
50
+<a id="option-default-recipient-pushbullet"></a>
51
##### DEFAULT_RECIPIENT_PUSHBULLET
52
53
You can define multiple entries like this: user1@email.com user2@email.com.
src/health/notifications/pushover/README.md
+2
-1
@@ -49,8 +49,9 @@ The following options can be defined for this notification
49
|:-----|:------------|:--------|:---------:|
50
| SEND_PUSHOVER | Set `SEND_PUSHOVER` to YES | YES | yes |
51
| PUSHOVER_WEBHOOK_URL | set `PUSHOVER_WEBHOOK_URL` to your Pushover Application token. | | yes |
52
-| DEFAULT_RECIPIENT_PUSHOVER | Set `DEFAULT_RECIPIENT_PUSHOVER` the Pushover User token you want the alert notifications to be sent to. You can define multiple User tokens like this: `USERTOKEN1` `USERTOKEN2`. | | yes |
52
+| [DEFAULT_RECIPIENT_PUSHOVER](#option-default-recipient-pushover) | Set `DEFAULT_RECIPIENT_PUSHOVER` the Pushover User token you want the alert notifications to be sent to. You can define multiple User tokens like this: `USERTOKEN1` `USERTOKEN2`. | | yes |
53
54
+<a id="option-default-recipient-pushover"></a>
55
##### DEFAULT_RECIPIENT_PUSHOVER
56
57
All roles will default to this variable if left unconfigured.
src/health/notifications/rocketchat/README.md
+2
-1
@@ -46,8 +46,9 @@ The following options can be defined for this notification
46
|:-----|:------------|:--------|:---------:|
47
| SEND_ROCKETCHAT | Set `SEND_ROCKETCHAT` to `YES` | YES | yes |
48
| ROCKETCHAT_WEBHOOK_URL | set `ROCKETCHAT_WEBHOOK_URL` to your webhook URL. | | yes |
49
-| DEFAULT_RECIPIENT_ROCKETCHAT | Set `DEFAULT_RECIPIENT_ROCKETCHAT` to the channel you want the alert notifications to be sent to. You can define multiple channels like this: `alerts` `systems`. | | yes |
49
+| [DEFAULT_RECIPIENT_ROCKETCHAT](#option-default-recipient-rocketchat) | Set `DEFAULT_RECIPIENT_ROCKETCHAT` to the channel you want the alert notifications to be sent to. You can define multiple channels like this: `alerts` `systems`. | | yes |
50
51
+<a id="option-default-recipient-rocketchat"></a>
52
##### DEFAULT_RECIPIENT_ROCKETCHAT
53
54
All roles will default to this variable if left unconfigured.
src/health/notifications/smseagle/README.md
+13
-7
@@ -50,13 +50,14 @@ The following options can be defined for this notification
50
51
| Option | Description | Default | Required |
52
|:-----|:------------|:--------|:---------:|
53
-| DEFAULT_RECIPIENT_SMSEAGLE | If a role's recipients are not configured, a notification will be sent to this SMS recipient (empty = do not send a notification for unconfigured roles). Multiple recipients can be given like this: "PHONE1,PHONE2..." | | yes |
54
-| SMSEAGLE_API_URL | | | yes |
55
-| SMSEAGLE_API_ACCESSTOKEN | | | yes |
56
-| SMSEAGLE_MSG_TYPE | | sms | yes |
57
-| SMSEAGLE_CALL_DURATION | | 10 | yes |
58
-| SMSEAGLE_VOICE_ID | | 10 | yes |
59
-
53
+| [DEFAULT_RECIPIENT_SMSEAGLE](#option-default-recipient-smseagle) | If a role's recipients are not configured, a notification will be sent to this SMS recipient (empty = do not send a notification for unconfigured roles). Multiple recipients can be given like this: "PHONE1,PHONE2..." | | yes |
54
+| [SMSEAGLE_API_URL](#option-smseagle-api-url) | | | yes |
55
+| [SMSEAGLE_API_ACCESSTOKEN](#option-smseagle-api-accesstoken) | | | yes |
56
+| [SMSEAGLE_MSG_TYPE](#option-smseagle-msg-type) | | sms | yes |
57
+| [SMSEAGLE_CALL_DURATION](#option-smseagle-call-duration) | | 10 | yes |
58
+| [SMSEAGLE_VOICE_ID](#option-smseagle-voice-id) | | 10 | yes |
59
+
60
+<a id="option-default-recipient-smseagle"></a>
61
##### DEFAULT_RECIPIENT_SMSEAGLE
62
63
All roles will default to this variable if left unconfigured.
@@ -72,26 +73,31 @@ role_recipients_smseagle[sitemgr]="+11222333449"
73
```
74
75
76
+<a id="option-smseagle-api-url"></a>
77
##### SMSEAGLE_API_URL
78
79
The url of the SMSEagle device accessible from NetData, e.g https://192.168.0.101
80
81
82
+<a id="option-smseagle-api-accesstoken"></a>
83
##### SMSEAGLE_API_ACCESSTOKEN
84
85
An access token for the user created at SMSEagle device
86
87
88
+<a id="option-smseagle-msg-type"></a>
89
##### SMSEAGLE_MSG_TYPE
90
91
Choose a type of message/call. Available types: sms, mms, ring (wake-up call), tts (text-to-speech call), tts_advanced (multilanguage text-to-speech call). Be aware that some types require additional parameters to be set.
92
93
94
+<a id="option-smseagle-call-duration"></a>
95
##### SMSEAGLE_CALL_DURATION
96
97
Call duration, parameter required for Ring, TTS and TTS Advanced.
98
99
100
+<a id="option-smseagle-voice-id"></a>
101
##### SMSEAGLE_VOICE_ID
102
103
ID of the voice model, required for TTS Advanced.
src/health/notifications/smstools3/README.md
+4
-2
@@ -48,10 +48,11 @@ The following options can be defined for this notification
48
49
| Option | Description | Default | Required |
50
|:-----|:------------|:--------|:---------:|
51
-| sendsms | Set the path for `sendsms`, otherwise Netdata will search for it in your system `$PATH:` | YES | yes |
51
+| [sendsms](#option-sendsms) | Set the path for `sendsms`, otherwise Netdata will search for it in your system `$PATH:` | YES | yes |
52
| SEND_SMS | Set `SEND_SMS` to `YES`. | | yes |
53
-| DEFAULT_RECIPIENT_SMS | Set DEFAULT_RECIPIENT_SMS to the phone number you want the alert notifications to be sent to. You can define multiple phone numbers like this: PHONE1 PHONE2. | | yes |
53
+| [DEFAULT_RECIPIENT_SMS](#option-default-recipient-sms) | Set DEFAULT_RECIPIENT_SMS to the phone number you want the alert notifications to be sent to. You can define multiple phone numbers like this: PHONE1 PHONE2. | | yes |
54
55
+<a id="option-sendsms"></a>
56
##### sendsms
57
58
# The full path of the sendsms command (smstools3).
@@ -60,6 +61,7 @@ The following options can be defined for this notification
61
sendsms="/usr/bin/sendsms"
62
63
64
+<a id="option-default-recipient-sms"></a>
65
##### DEFAULT_RECIPIENT_SMS
66
67
All roles will default to this variable if left unconfigured.
src/health/notifications/syslog/README.md
+4
-2
@@ -44,9 +44,10 @@ The following options can be defined for this notification
44
| Option | Description | Default | Required |
45
|:-----|:------------|:--------|:---------:|
46
| SYSLOG_FACILITY | Set `SYSLOG_FACILITY` to the facility used for logging, by default this value is set to `local6`. | | yes |
47
-| DEFAULT_RECIPIENT_SYSLOG | Set `DEFAULT_RECIPIENT_SYSLOG` to the recipient you want the alert notifications to be sent to. | | yes |
48
-| SEND_SYSLOG | Set SEND_SYSLOG to YES, make sure you have everything else configured before turning this on. | | yes |
47
+| [DEFAULT_RECIPIENT_SYSLOG](#option-default-recipient-syslog) | Set `DEFAULT_RECIPIENT_SYSLOG` to the recipient you want the alert notifications to be sent to. | | yes |
48
+| [SEND_SYSLOG](#option-send-syslog) | Set SEND_SYSLOG to YES, make sure you have everything else configured before turning this on. | | yes |
49
50
+<a id="option-default-recipient-syslog"></a>
51
##### DEFAULT_RECIPIENT_SYSLOG
52
53
Targets are defined as follows:
@@ -65,6 +66,7 @@ You can define multiple recipients like this: daemon.notice@loghost:514/netdata
66
All roles will default to this variable if left unconfigured.
67
68
69
+<a id="option-send-syslog"></a>
70
##### SEND_SYSLOG
71
72
You can then have different recipients per role, by editing DEFAULT_RECIPIENT_SYSLOG with the recipient you want, in the following entries at the bottom of the same file:
src/health/notifications/telegram/README.md
+2
-1
@@ -47,8 +47,9 @@ The following options can be defined for this notification
47
| SEND_TELEGRAM | Set `SEND_TELEGRAM` to YES | YES | yes |
48
| TELEGRAM_API_URL | Set `TELEGRAM_API_URL` to the corresponding URL if you have your own Telegram Bot API server (e.g., for privacy or local hosting). Defaults to the official Telegram API. | https://api.telegram.org | no |
49
| TELEGRAM_BOT_TOKEN | set `TELEGRAM_BOT_TOKEN` to your bot token. | | yes |
50
-| DEFAULT_RECIPIENT_TELEGRAM | Set the `DEFAULT_RECIPIENT_TELEGRAM` variable in your config file to your Telegram chat ID (find it with @myidbot). Separate multiple chat IDs with spaces. To send alerts to a specific topic within a chat, use `chatID:topicID`. | | yes |
50
+| [DEFAULT_RECIPIENT_TELEGRAM](#option-default-recipient-telegram) | Set the `DEFAULT_RECIPIENT_TELEGRAM` variable in your config file to your Telegram chat ID (find it with @myidbot). Separate multiple chat IDs with spaces. To send alerts to a specific topic within a chat, use `chatID:topicID`. | | yes |
51
52
+<a id="option-default-recipient-telegram"></a>
53
##### DEFAULT_RECIPIENT_TELEGRAM
54
55
All roles will default to this variable if left unconfigured.
src/health/notifications/twilio/README.md
+2
-1
@@ -47,8 +47,9 @@ The following options can be defined for this notification
47
| TWILIO_ACCOUNT_SID | set `TWILIO_ACCOUNT_SID` to your account SID. | | yes |
48
| TWILIO_ACCOUNT_TOKEN | Set `TWILIO_ACCOUNT_TOKEN` to your account token. | | yes |
49
| TWILIO_NUMBER | Set `TWILIO_NUMBER` to your account's number. | | yes |
50
-| DEFAULT_RECIPIENT_TWILIO | Set DEFAULT_RECIPIENT_TWILIO to the number you want the alert notifications to be sent to. You can define multiple numbers like this: +15555555555 +17777777777. | | yes |
50
+| [DEFAULT_RECIPIENT_TWILIO](#option-default-recipient-twilio) | Set DEFAULT_RECIPIENT_TWILIO to the number you want the alert notifications to be sent to. You can define multiple numbers like this: +15555555555 +17777777777. | | yes |
51
52
+<a id="option-default-recipient-twilio"></a>
53
##### DEFAULT_RECIPIENT_TWILIO
54
55
You can then have different recipients per role, by editing DEFAULT_RECIPIENT_TWILIO with the recipient's number you want, in the following entries at the bottom of the same file: