docs: fix go.d modules rename leftovers (#19087)
Ilya Mashchenko committed
Nov 25, 2024 at 21:29 UTC
1311afca3451d997d831502cf107ea10fc79b2d5
141 files changed
+286
-286
docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md
+2
-2
@@ -8,7 +8,7 @@ You can use the [LTSV log format](http://ltsv.org/), track TLS and cipher usage,
8
ever. In one test on a system with SSD storage, the collector consistently parsed the logs for 200,000 requests in
9
200ms, using ~30% of a single core.
10
11
-The [web_log](/src/go/plugin/go.d/modules/weblog/README.md) collector is currently compatible
11
+The [web_log](/src/go/plugin/go.d/collector/weblog/README.md) collector is currently compatible
12
with [Nginx](https://nginx.org/en/) and [Apache](https://httpd.apache.org/).
13
14
This guide will walk you through using the new Go-based web log collector to turn the logs these web servers
@@ -87,7 +87,7 @@ Restart Netdata with `sudo systemctl restart netdata`, or the [appropriate metho
87
88
The web log collector is capable of parsing custom Nginx and Apache log formats and presenting them as charts, but we'll leave that topic for a separate guide.
89
90
-We do have [extensive documentation](/src/go/plugin/go.d/modules/weblog/README.md) on how to build custom parsing for Nginx and Apache logs.
90
+We do have [extensive documentation](/src/go/plugin/go.d/collector/weblog/README.md) on how to build custom parsing for Nginx and Apache logs.
91
92
## Tweak web log collector alerts
93
docs/developer-and-contributor-corner/kubernetes-k8s-netdata.txt
+7
-7
@@ -136,7 +136,7 @@ Let's explore the most colorful box by hovering over it.
136
container](https://user-images.githubusercontent.com/1153921/109049544-a8417980-7695-11eb-80a7-109b4a645a27.png)
137
138
The **Context** tab shows `rabbitmq-5bb66bb6c9-6xr5b` as the container's image name, which means this container is
139
-running a [RabbitMQ](/src/go/plugin/go.d/modules/rabbitmq/README.md) workload.
139
+running a [RabbitMQ](/src/go/plugin/go.d/collector/rabbitmq/README.md) workload.
140
141
Click the **Metrics** tab to see real-time metrics from that container. Unsurprisingly, it shows a spike in CPU
142
utilization at regular intervals.
@@ -165,13 +165,13 @@ for complete customization. For example, grouping the top chart by `k8s_containe
165
Netdata has a [service discovery plugin](https://github.com/netdata/agent-service-discovery), which discovers and
166
creates configuration files for [compatible
167
services](https://github.com/netdata/helmchart#service-discovery-and-supported-services) and any endpoints covered by
168
-our [generic Prometheus collector](/src/go/plugin/go.d/modules/prometheus/README.md).
168
+our [generic Prometheus collector](/src/go/plugin/go.d/collector/prometheus/README.md).
169
Netdata uses these files to collect metrics from any compatible application as they run _inside_ of a pod. Service
170
discovery happens without manual intervention as pods are created, destroyed, or moved between nodes.
171
172
Service metrics show up on the Overview as well, beneath the **Kubernetes** section, and are labeled according to the
173
service in question. For example, the **RabbitMQ** section has numerous charts from the [`rabbitmq`
174
-collector](/src/go/plugin/go.d/modules/rabbitmq/README.md):
174
+collector](/src/go/plugin/go.d/collector/rabbitmq/README.md):
175
176

@@ -192,7 +192,7 @@ Netdata also automatically collects metrics from two essential Kubernetes proces
192
193
The **k8s kubelet** section visualizes metrics from the Kubernetes agent responsible for managing every pod on a given
194
node. This also happens without any configuration thanks to the [kubelet
195
-collector](/src/go/plugin/go.d/modules/k8s_kubelet/README.md).
195
+collector](/src/go/plugin/go.d/collector/k8s_kubelet/README.md).
196
197
Monitoring each node's kubelet can be invaluable when diagnosing issues with your Kubernetes cluster. For example, you
198
can see if the number of running containers/pods has dropped, which could signal a fault or crash in a particular
@@ -208,7 +208,7 @@ configuration-related errors, and the actual vs. desired numbers of volumes, plu
208
The **k8s kube-proxy** section displays metrics about the network proxy that runs on each node in your Kubernetes
209
cluster. kube-proxy lets pods communicate with each other and accept sessions from outside your cluster. Its metrics are
210
collected by the [kube-proxy
211
-collector](/src/go/plugin/go.d/modules/k8s_kubeproxy/README.md).
211
+collector](/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md).
212
213
With Netdata, you can monitor how often your k8s proxies are syncing proxy rules between nodes. Dramatic changes in
214
these figures could indicate an anomaly in your cluster that's worthy of further investigation.
@@ -228,7 +228,7 @@ clusters of all sizes.
228
- [Netdata Helm chart](https://github.com/netdata/helmchart)
229
- [Netdata service discovery](https://github.com/netdata/agent-service-discovery)
230
- [Netdata Agent · `kubelet`
231
- collector](/src/go/plugin/go.d/modules/k8s_kubelet/README.md)
231
+ collector](/src/go/plugin/go.d/collector/k8s_kubelet/README.md)
232
- [Netdata Agent · `kube-proxy`
233
- collector](/src/go/plugin/go.d/modules/k8s_kubeproxy/README.md)
233
+ collector](/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md)
234
- [Netdata Agent · `cgroups.plugin`](/src/collectors/cgroups.plugin/README.md)
docs/developer-and-contributor-corner/lamp-stack.txt
+9
-9
@@ -69,7 +69,7 @@ metrics from each using the [cgroups data collector](/src/collectors/cgroups.plu
69
## Enable Apache monitoring
70
71
Let's begin by configuring Apache to work with Netdata's [Apache data
72
-collector](/src/go/plugin/go.d/modules/apache/README.md).
72
+collector](/src/go/plugin/go.d/collector/apache/README.md).
73
74
Actually, there's nothing for you to do to enable Apache monitoring with Netdata.
75
@@ -80,7 +80,7 @@ metrics](https://httpd.apache.org/docs/2.4/mod/mod_status.html), which is just _
80
## Enable web log monitoring
81
82
The Netdata Agent also comes with a [web log
83
-collector](/src/go/plugin/go.d/modules/weblog/README.md), which reads Apache's access
83
+collector](/src/go/plugin/go.d/collector/weblog/README.md), which reads Apache's access
84
log file, processes each line, and converts them into per-second metrics. On Debian systems, it reads the file at
85
`/var/log/apache2/access.log`.
86
@@ -93,7 +93,7 @@ monitoring.
93
94
Because your MySQL database is password-protected, you do need to tell MySQL to allow the `netdata` user to connect to
95
without a password. Netdata's [MySQL data
96
-collector](/src/go/plugin/go.d/modules/mysql/README.md) collects metrics in _read-only_
96
+collector](/src/go/plugin/go.d/collector/mysql/README.md) collects metrics in _read-only_
97
mode, without being able to alter or affect operations in any way.
98
99
First, log into the MySQL shell. Then, run the following three commands, one at a time:
@@ -112,7 +112,7 @@ Unlike Apache or MySQL, PHP isn't a service that you can monitor directly, unles
112
with [StatsD](/src/collectors/statsd.plugin/README.md).
113
114
However, if you use [PHP-FPM](https://php-fpm.org/) in your LAMP stack, you can monitor that process with our [PHP-FPM
115
-data collector](/src/go/plugin/go.d/modules/phpfpm/README.md).
115
+data collector](/src/go/plugin/go.d/collector/phpfpm/README.md).
116
117
Open your PHP-FPM configuration for editing, replacing `7.4` with your version of PHP:
118
@@ -214,7 +214,7 @@ services. The per-second metrics granularity means you have the most accurate in
214
any LAMP-related issues.
215
216
Another powerful way to monitor the availability of a LAMP stack is the [`httpcheck`
217
-collector](/src/go/plugin/go.d/modules/httpcheck/README.md), which pings a web server at
217
+collector](/src/go/plugin/go.d/collector/httpcheck/README.md), which pings a web server at
218
a regular interval and tells you whether if and how quickly it's responding. The `response_match` option also lets you
219
monitor when the web server's response isn't what you expect it to be, which might happen if PHP-FPM crashes, for
220
example.
@@ -230,8 +230,8 @@ source of issues faster with [Metric Correlations](/docs/metric-correlations.md)
230
### Related reference documentation
231
232
- [Netdata Agent · Get started](/packaging/installer/README.md)
233
-- [Netdata Agent · Apache data collector](/src/go/plugin/go.d/modules/apache/README.md)
234
-- [Netdata Agent · Web log collector](/src/go/plugin/go.d/modules/weblog/README.md)
235
-- [Netdata Agent · MySQL data collector](/src/go/plugin/go.d/modules/mysql/README.md)
236
-- [Netdata Agent · PHP-FPM data collector](/src/go/plugin/go.d/modules/phpfpm/README.md)
233
+- [Netdata Agent · Apache data collector](/src/go/plugin/go.d/collector/apache/README.md)
234
+- [Netdata Agent · Web log collector](/src/go/plugin/go.d/collector/weblog/README.md)
235
+- [Netdata Agent · MySQL data collector](/src/go/plugin/go.d/collector/mysql/README.md)
236
+- [Netdata Agent · PHP-FPM data collector](/src/go/plugin/go.d/collector/phpfpm/README.md)
237
docs/developer-and-contributor-corner/monitor-cockroachdb.txt
+1
-1
@@ -11,7 +11,7 @@ learn_rel_path: "Miscellaneous"
11
12
[CockroachDB](https://github.com/cockroachdb/cockroach) is an open-source project that brings SQL databases into
13
scalable, disaster-resilient cloud deployments. Thanks to
14
-a [new CockroachDB collector](/src/go/plugin/go.d/modules/cockroachdb/README.md)
14
+a [new CockroachDB collector](/src/go/plugin/go.d/collector/cockroachdb/README.md)
15
released in
16
[v1.20](https://blog.netdata.cloud/posts/release-1.20/), you can now monitor any number of CockroachDB databases with
17
maximum granularity using Netdata. Collect more than 50 unique metrics and put them on interactive visualizations
docs/developer-and-contributor-corner/monitor-hadoop-cluster.md
+2
-2
@@ -18,8 +18,8 @@ alternative, like the guide available from
18
19
For more specifics on the collection modules used in this guide, read the respective pages in our documentation:
20
21
-- [HDFS](/src/go/plugin/go.d/modules/hdfs/README.md)
22
-- [Zookeeper](/src/go/plugin/go.d/modules/zookeeper/README.md)
21
+- [HDFS](/src/go/plugin/go.d/collector/hdfs/README.md)
22
+- [Zookeeper](/src/go/plugin/go.d/collector/zookeeper/README.md)
23
24
## Set up your HDFS and Zookeeper installations
25
docs/developer-and-contributor-corner/pi-hole-raspberry-pi.txt
+1
-1
@@ -81,7 +81,7 @@ service](https://discourse.pi-hole.net/t/how-do-i-configure-my-devices-to-use-pi
81
finished setting up Pi-hole at this point.
82
83
As far as configuring Netdata to monitor Pi-hole metrics, there's nothing you actually need to do. Netdata's [Pi-hole
84
-collector](/src/go/plugin/go.d/modules/pihole/README.md) will autodetect the new service
84
+collector](/src/go/plugin/go.d/collector/pihole/README.md) will autodetect the new service
85
running on your Raspberry Pi and immediately start collecting metrics every second.
86
87
Restart Netdata with `sudo systemctl restart netdata`, which will then recognize that Pi-hole is running and start a
docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md
+1
-1
@@ -41,7 +41,7 @@ We recommend a few strategies for organizing your Rooms.
41
If you have a user-facing SaaS product, or an internal service that this said product relies on, you may want to monitor that entire stack in a single Room. This might include Kubernetes clusters, Docker containers, proxies, databases, web servers, brokers, and more. End-to-end Rooms are valuable tools for ensuring the health and performance of your organization's essential services.
42
43
- **Incident response**
44
- You can also create new Rooms as one of the first steps in your incident response process. For example, you have a user-facing web app that relies on Apache Pulsar for a message queue, and one of your nodes using the [Pulsar collector](/src/go/plugin/go.d/modules/pulsar/README.md) begins reporting a suspiciously low messages rate. You can create a Room called `$year-$month-$day-pulsar-rate`, add all your Pulsar nodes in addition to nodes they connect to, and begin diagnosing the root cause in a Room optimized for getting to resolution as fast as possible.
44
+ You can also create new Rooms as one of the first steps in your incident response process. For example, you have a user-facing web app that relies on Apache Pulsar for a message queue, and one of your nodes using the [Pulsar collector](/src/go/plugin/go.d/collector/pulsar/README.md) begins reporting a suspiciously low messages rate. You can create a Room called `$year-$month-$day-pulsar-rate`, add all your Pulsar nodes in addition to nodes they connect to, and begin diagnosing the root cause in a Room optimized for getting to resolution as fast as possible.
45
46
### Add Rooms
47
src/collectors/COLLECTORS.md
+1
-1
@@ -13,7 +13,7 @@ Learn more about [how collectors work](/src/collectors/README.md), and then lear
13
14
If you don't see the app/service you'd like to monitor in this list:
15
16
-- If your application has a Prometheus endpoint, Netdata can monitor it! Look at our [generic Prometheus collector](/src/go/plugin/go.d/modules/prometheus/README.md).
16
+- If your application has a Prometheus endpoint, Netdata can monitor it! Look at our [generic Prometheus collector](/src/go/plugin/go.d/collector/prometheus/README.md).
17
18
- If your application is instrumented to expose [StatsD](https://blog.netdata.cloud/introduction-to-statsd/) metrics, see our [generic StatsD collector](/src/collectors/statsd.plugin/README.md).
19
src/collectors/proc.plugin/README.md
+1
-1
@@ -609,7 +609,7 @@ The `drm` path can be configured if it differs from the default:
609
610
> **Note**
611
>
612
-> Temperature, fan speed, voltage and power metrics for AMD GPUs can be monitored using the [Sensors](/src/go/plugin/go.d/modules/sensors/README.md) plugin.
612
+> Temperature, fan speed, voltage and power metrics for AMD GPUs can be monitored using the [Sensors](/src/go/plugin/go.d/collector/sensors/README.md) plugin.
613
614
## IPC
615
src/collectors/python.d.plugin/haproxy/metadata.yaml
+1
-1
@@ -1,5 +1,5 @@
1
# This collector will not appear in documentation, as the go version is preferred,
2
-# /src/go/plugin/go.d/modules/haproxy/README.md
2
+# /src/go/plugin/go.d/collector/haproxy/README.md
3
#
4
#
5
# meta:
src/collectors/python.d.plugin/traefik/metadata.yaml
+1
-1
@@ -1,5 +1,5 @@
1
# This collector will not appear in documentation, as the go version is preferred,
2
-# /src/go/plugin/go.d/modules/traefik/README.md
2
+# /src/go/plugin/go.d/collector/traefik/README.md
3
#
4
# meta:
5
# plugin_name: python.d.plugin
src/go/plugin/go.d/README.md
+123
-123
@@ -16,9 +16,9 @@ All capabilities are set automatically during Netdata installation using the [of
16
17
| Capability | Required by |
18
|:--------------------|:-------------------------------------------------------------------------------------------------------:|
19
-| CAP_NET_RAW | [Ping](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ping#readme) |
20
-| CAP_NET_ADMIN | [Wireguard](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/wireguard#readme) |
21
-| CAP_DAC_READ_SEARCH | [Filecheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/filecheck#readme) |
19
+| CAP_NET_RAW | [Ping](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ping#readme) |
20
+| CAP_NET_ADMIN | [Wireguard](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/wireguard#readme) |
21
+| CAP_DAC_READ_SEARCH | [Filecheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/filecheck#readme) |
22
23
## Available modules
24
@@ -27,126 +27,126 @@ All capabilities are set automatically during Netdata installation using the [of
27
28
| Name | Monitors |
29
|:-------------------------------------------------------------------------------------------------------------------|:-----------------------------:|
30
-| [adaptec_raid](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/adaptecraid) | Adaptec Hardware RAID |
31
-| [activemq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/activemq) | ActiveMQ |
32
-| [ap](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ap) | Wireless AP |
33
-| [apache](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/apache) | Apache |
34
-| [apcupsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/apcupsd) | UPS (APC) |
35
-| [beanstalk](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/beanstalk) | Beanstalk |
36
-| [bind](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/bind) | ISC Bind |
37
-| [boinc](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/boinc) | BOINC |
38
-| [cassandra](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/cassandra) | Cassandra |
39
-| [ceph](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ceph) | Ceph |
40
-| [chrony](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/chrony) | Chrony |
41
-| [clickhouse](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/clickhouse) | ClickHouse |
42
-| [cockroachdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/cockroachdb) | CockroachDB |
43
-| [consul](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/consul) | Consul |
44
-| [coredns](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/coredns) | CoreDNS |
45
-| [couchbase](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/couchbase) | Couchbase |
46
-| [couchdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/couchdb) | CouchDB |
47
-| [dmcache](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dmcache) | DMCache |
48
-| [dnsdist](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsdist) | Dnsdist |
49
-| [dnsmasq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsmasq) | Dnsmasq DNS Forwarder |
50
-| [dnsmasq_dhcp](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsmasq_dhcp) | Dnsmasq DHCP |
51
-| [dns_query](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsquery) | DNS Query RTT |
52
-| [docker](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/docker) | Docker Engine |
53
-| [docker_engine](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/docker_engine) | Docker Engine |
54
-| [dockerhub](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dockerhub) | Docker Hub |
55
-| [dovecot](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dovecot) | Dovecot |
56
-| [elasticsearch](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/elasticsearch) | Elasticsearch/OpenSearch |
57
-| [envoy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/envoy) | Envoy |
58
-| [exim](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/exim) | Exim |
59
-| [fail2ban](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/fail2ban) | Fail2Ban Jails |
60
-| [filecheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/filecheck) | Files and Directories |
61
-| [fluentd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/fluentd) | Fluentd |
62
-| [freeradius](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/freeradius) | FreeRADIUS |
63
-| [gearman](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/gearman) | Gearman |
64
-| [haproxy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/haproxy) | HAProxy |
65
-| [hddtemp](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hddtemp) | Disks temperature |
66
-| [hdfs](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hdfs) | HDFS |
67
-| [hpssa](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hpssa) | HPE Smart Array |
68
-| [httpcheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/httpcheck) | Any HTTP Endpoint |
69
-| [icecast](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/icecast) | Icecast |
70
-| [intelgpu](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/intelgpu) | Intel integrated GPU |
71
-| [ipfs](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ipfs) | IPFS |
72
-| [isc_dhcpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/isc_dhcpd) | ISC DHCP |
73
-| [k8s_kubelet](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_kubelet) | Kubelet |
74
-| [k8s_kubeproxy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_kubeproxy) | Kube-proxy |
75
-| [k8s_state](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_state) | Kubernetes cluster state |
76
-| [lighttpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/lighttpd) | Lighttpd |
77
-| [litespeed](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/litespeed) | Litespeed |
78
-| [logind](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/logind) | systemd-logind |
79
-| [logstash](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/logstash) | Logstash |
80
-| [lvm](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/lvm) | LVM logical volumes |
81
-| [maxscale](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/maxscale) | MaxScale |
82
-| [megacli](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/megacli) | MegaCli Hardware Raid |
83
-| [memcached](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/memcached) | Memcached |
84
-| [mongoDB](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/mongodb) | MongoDB |
85
-| [monit](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/monit) | Monit |
86
-| [mysql](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/mysql) | MySQL |
87
-| [nginx](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginx) | NGINX |
88
-| [nginxplus](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxplus) | NGINX Plus |
89
-| [nginxunit](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxunit) | NGINX Unit |
90
-| [nginxvts](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxvts) | NGINX VTS |
91
-| [nsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nsd) | NSD (NLnet Labs) |
92
-| [ntpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ntpd) | NTP daemon |
93
-| [nvidia_smi](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvidia_smi) | Nvidia SMI |
94
-| [nvme](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvme) | NVMe devices |
95
-| [openldap](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openldap) | OpenLDAP |
96
-| [openvpn](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openvpn) | OpenVPN |
97
-| [openvpn_status_log](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openvpn_status_log) | OpenVPN |
98
-| [pgbouncer](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pgbouncer) | PgBouncer |
99
-| [oracledb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/oracledb) | Oracle DB |
100
-| [phpdaemon](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/phpdaemon) | phpDaemon |
101
-| [phpfpm](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/phpfpm) | PHP-FPM |
102
-| [pihole](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pihole) | Pi-hole |
103
-| [pika](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pika) | Pika |
104
-| [ping](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ping) | Any network host |
105
-| [prometheus](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/prometheus) | Any Prometheus Endpoint |
106
-| [portcheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/portcheck) | Any TCP Endpoint |
107
-| [postgres](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/postgres) | PostgreSQL |
108
-| [postfix](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/postfix) | Postfix |
109
-| [powerdns](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/powerdns) | PowerDNS Authoritative Server |
110
-| [powerdns_recursor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/powerdns_recursor) | PowerDNS Recursor |
111
-| [proxysql](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/proxysql) | ProxySQL |
112
-| [pulsar](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pulsar) | Apache Pulsar |
113
-| [puppet](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/puppet) | Puppet |
114
-| [rabbitmq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rabbitmq) | RabbitMQ |
115
-| [redis](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/redis) | Redis |
116
-| [rethinkdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rethinkdb) | RethinkDB |
117
-| [riakkv](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/riakkv) | Riak KV |
118
-| [rspamd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rspamd) | Rspamd |
119
-| [samba](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/samba) | Samba |
120
-| [scaleio](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/scaleio) | Dell EMC ScaleIO |
121
-| [sensors](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/sensors) | Hardware Sensors |
122
-| [SNMP](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/snmp) | SNMP |
123
-| [squid](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/squid) | Squid |
124
-| [squidlog](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/squidlog) | Squid |
125
-| [smartctl](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/smartctl) | S.M.A.R.T Storage Devices |
126
-| [spigotmc](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/spigotmc) | SpigotMC |
127
-| [storcli](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/storcli) | Broadcom Hardware RAID |
128
-| [supervisord](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/supervisord) | Supervisor |
129
-| [systemdunits](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/systemdunits) | Systemd unit state |
130
-| [tengine](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tengine) | Tengine |
131
-| [tomcat](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tomcat) | Tomcat |
132
-| [tor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tor) | Tor |
133
-| [traefik](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/traefik) | Traefik |
134
-| [typesense](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/typesense) | Typesense |
135
-| [unbound](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/unbound) | Unbound |
136
-| [upsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/upsd) | UPSd (Nut) |
137
-| [uwsgi](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/uwsgi) | uWSGI |
138
-| [varnish](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/varnish) | Varnish |
139
-| [vcsa](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vcsa) | vCenter Server Appliance |
140
-| [vernemq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vernemq) | VerneMQ |
141
-| [vsphere](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vsphere) | VMware vCenter Server |
142
-| [w1sensor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/w1sensor) | 1-Wire Sensors |
143
-| [web_log](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/weblog) | Apache/NGINX |
144
-| [wireguard](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/wireguard) | WireGuard |
145
-| [whoisquery](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/whoisquery) | Domain Expiry |
146
-| [windows](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/windows) | Windows |
147
-| [x509check](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/x509check) | Digital Certificates |
148
-| [zfspool](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/zfspool) | ZFS Pools |
149
-| [zookeeper](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/zookeeper) | ZooKeeper |
30
+| [adaptec_raid](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/adaptecraid) | Adaptec Hardware RAID |
31
+| [activemq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/activemq) | ActiveMQ |
32
+| [ap](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ap) | Wireless AP |
33
+| [apache](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/apache) | Apache |
34
+| [apcupsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/apcupsd) | UPS (APC) |
35
+| [beanstalk](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/beanstalk) | Beanstalk |
36
+| [bind](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/bind) | ISC Bind |
37
+| [boinc](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/boinc) | BOINC |
38
+| [cassandra](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/cassandra) | Cassandra |
39
+| [ceph](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ceph) | Ceph |
40
+| [chrony](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/chrony) | Chrony |
41
+| [clickhouse](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/clickhouse) | ClickHouse |
42
+| [cockroachdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/cockroachdb) | CockroachDB |
43
+| [consul](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/consul) | Consul |
44
+| [coredns](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/coredns) | CoreDNS |
45
+| [couchbase](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/couchbase) | Couchbase |
46
+| [couchdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/couchdb) | CouchDB |
47
+| [dmcache](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dmcache) | DMCache |
48
+| [dnsdist](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsdist) | Dnsdist |
49
+| [dnsmasq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsmasq) | Dnsmasq DNS Forwarder |
50
+| [dnsmasq_dhcp](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsmasq_dhcp) | Dnsmasq DHCP |
51
+| [dns_query](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsquery) | DNS Query RTT |
52
+| [docker](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/docker) | Docker Engine |
53
+| [docker_engine](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/docker_engine) | Docker Engine |
54
+| [dockerhub](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dockerhub) | Docker Hub |
55
+| [dovecot](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dovecot) | Dovecot |
56
+| [elasticsearch](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/elasticsearch) | Elasticsearch/OpenSearch |
57
+| [envoy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/envoy) | Envoy |
58
+| [exim](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/exim) | Exim |
59
+| [fail2ban](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/fail2ban) | Fail2Ban Jails |
60
+| [filecheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/filecheck) | Files and Directories |
61
+| [fluentd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/fluentd) | Fluentd |
62
+| [freeradius](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/freeradius) | FreeRADIUS |
63
+| [gearman](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/gearman) | Gearman |
64
+| [haproxy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/haproxy) | HAProxy |
65
+| [hddtemp](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hddtemp) | Disks temperature |
66
+| [hdfs](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hdfs) | HDFS |
67
+| [hpssa](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hpssa) | HPE Smart Array |
68
+| [httpcheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/httpcheck) | Any HTTP Endpoint |
69
+| [icecast](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/icecast) | Icecast |
70
+| [intelgpu](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/intelgpu) | Intel integrated GPU |
71
+| [ipfs](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ipfs) | IPFS |
72
+| [isc_dhcpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/isc_dhcpd) | ISC DHCP |
73
+| [k8s_kubelet](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_kubelet) | Kubelet |
74
+| [k8s_kubeproxy](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_kubeproxy) | Kube-proxy |
75
+| [k8s_state](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_state) | Kubernetes cluster state |
76
+| [lighttpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/lighttpd) | Lighttpd |
77
+| [litespeed](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/litespeed) | Litespeed |
78
+| [logind](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/logind) | systemd-logind |
79
+| [logstash](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/logstash) | Logstash |
80
+| [lvm](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/lvm) | LVM logical volumes |
81
+| [maxscale](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/maxscale) | MaxScale |
82
+| [megacli](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/megacli) | MegaCli Hardware Raid |
83
+| [memcached](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/memcached) | Memcached |
84
+| [mongoDB](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/mongodb) | MongoDB |
85
+| [monit](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/monit) | Monit |
86
+| [mysql](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/mysql) | MySQL |
87
+| [nginx](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginx) | NGINX |
88
+| [nginxplus](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxplus) | NGINX Plus |
89
+| [nginxunit](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxunit) | NGINX Unit |
90
+| [nginxvts](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxvts) | NGINX VTS |
91
+| [nsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nsd) | NSD (NLnet Labs) |
92
+| [ntpd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ntpd) | NTP daemon |
93
+| [nvidia_smi](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvidia_smi) | Nvidia SMI |
94
+| [nvme](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme) | NVMe devices |
95
+| [openldap](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openldap) | OpenLDAP |
96
+| [openvpn](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openvpn) | OpenVPN |
97
+| [openvpn_status_log](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openvpn_status_log) | OpenVPN |
98
+| [pgbouncer](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pgbouncer) | PgBouncer |
99
+| [oracledb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/oracledb) | Oracle DB |
100
+| [phpdaemon](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/phpdaemon) | phpDaemon |
101
+| [phpfpm](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/phpfpm) | PHP-FPM |
102
+| [pihole](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pihole) | Pi-hole |
103
+| [pika](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pika) | Pika |
104
+| [ping](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ping) | Any network host |
105
+| [prometheus](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/prometheus) | Any Prometheus Endpoint |
106
+| [portcheck](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/portcheck) | Any TCP Endpoint |
107
+| [postgres](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/postgres) | PostgreSQL |
108
+| [postfix](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/postfix) | Postfix |
109
+| [powerdns](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/powerdns) | PowerDNS Authoritative Server |
110
+| [powerdns_recursor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/powerdns_recursor) | PowerDNS Recursor |
111
+| [proxysql](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/proxysql) | ProxySQL |
112
+| [pulsar](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pulsar) | Apache Pulsar |
113
+| [puppet](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/puppet) | Puppet |
114
+| [rabbitmq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rabbitmq) | RabbitMQ |
115
+| [redis](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/redis) | Redis |
116
+| [rethinkdb](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rethinkdb) | RethinkDB |
117
+| [riakkv](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/riakkv) | Riak KV |
118
+| [rspamd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rspamd) | Rspamd |
119
+| [samba](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/samba) | Samba |
120
+| [scaleio](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/scaleio) | Dell EMC ScaleIO |
121
+| [sensors](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/sensors) | Hardware Sensors |
122
+| [SNMP](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/snmp) | SNMP |
123
+| [squid](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/squid) | Squid |
124
+| [squidlog](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/squidlog) | Squid |
125
+| [smartctl](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/smartctl) | S.M.A.R.T Storage Devices |
126
+| [spigotmc](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/spigotmc) | SpigotMC |
127
+| [storcli](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/storcli) | Broadcom Hardware RAID |
128
+| [supervisord](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/supervisord) | Supervisor |
129
+| [systemdunits](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/systemdunits) | Systemd unit state |
130
+| [tengine](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tengine) | Tengine |
131
+| [tomcat](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tomcat) | Tomcat |
132
+| [tor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tor) | Tor |
133
+| [traefik](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/traefik) | Traefik |
134
+| [typesense](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/typesense) | Typesense |
135
+| [unbound](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/unbound) | Unbound |
136
+| [upsd](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/upsd) | UPSd (Nut) |
137
+| [uwsgi](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/uwsgi) | uWSGI |
138
+| [varnish](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/varnish) | Varnish |
139
+| [vcsa](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vcsa) | vCenter Server Appliance |
140
+| [vernemq](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vernemq) | VerneMQ |
141
+| [vsphere](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vsphere) | VMware vCenter Server |
142
+| [w1sensor](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/w1sensor) | 1-Wire Sensors |
143
+| [web_log](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/weblog) | Apache/NGINX |
144
+| [wireguard](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/wireguard) | WireGuard |
145
+| [whoisquery](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/whoisquery) | Domain Expiry |
146
+| [windows](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/windows) | Windows |
147
+| [x509check](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/x509check) | Digital Certificates |
148
+| [zfspool](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/zfspool) | ZFS Pools |
149
+| [zookeeper](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/zookeeper) | ZooKeeper |
150
151
</details>
152
src/go/plugin/go.d/collector/ping/config_schema.json
+1
-1
@@ -13,7 +13,7 @@
13
},
14
"privileged": {
15
"title": "Privileged mode",
16
- "description": "If unset, sends unprivileged UDP ping packets (require [additional configuration](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ping#overview)); otherwise, sends raw ICMP ping packets ([not recommended](https://github.com/netdata/netdata/issues/15410)).",
16
+ "description": "If unset, sends unprivileged UDP ping packets (require [additional configuration](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ping#overview)); otherwise, sends raw ICMP ping packets ([not recommended](https://github.com/netdata/netdata/issues/15410)).",
17
"type": "boolean",
18
"default": false
19
},
src/go/plugin/go.d/collector/smartctl/integrations/s.m.a.r.t..md
+1
-1
@@ -139,7 +139,7 @@ Install `smartmontools` version 7.0 or later using your distribution's package m
139
140
> **Multiple Devices**: These examples only show mapping of one device (/dev/sda). You'll need to add additional `--device` options (in docker run) or entries in the `devices` list (in docker-compose.yml) for each storage device you want Netdata's smartctl collector to monitor.
141
142
- > **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvme#readme) to monitor NVMe devices.
142
+ > **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme#readme) to monitor NVMe devices.
143
144
145
src/go/plugin/go.d/collector/smartctl/metadata.yaml
+1
-1
@@ -83,7 +83,7 @@ modules:
83
84
> **Multiple Devices**: These examples only show mapping of one device (/dev/sda). You'll need to add additional `--device` options (in docker run) or entries in the `devices` list (in docker-compose.yml) for each storage device you want Netdata's smartctl collector to monitor.
85
86
- > **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvme#readme) to monitor NVMe devices.
86
+ > **NVMe Devices**: Do not map NVMe devices using this method. Netdata uses a [dedicated collector](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme#readme) to monitor NVMe devices.
87
configuration:
88
file:
89
name: go.d/smartctl.conf
src/go/plugin/go.d/config/go.d/activemq.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/activemq#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/activemq#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/adaptec_raid.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/adaptecraid#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/adaptecraid#readme
3
4
jobs:
5
- name: adaptec_raid
src/go/plugin/go.d/config/go.d/ap.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ap#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ap#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/apache.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/apache#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/apache#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/apcupsd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/apcupsd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/apcupsd#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/beanstalk.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/beanstalk#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/beanstalk#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/bind.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/bind#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/bind#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/boinc.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/boinc#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/boinc#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/cassandra.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/cassandra#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/cassandra#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/ceph.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ceph#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ceph#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/chrony.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/chrony#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/chrony#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/clickhouse.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/clickhouse#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/clickhouse#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/cockroachdb.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/cockroachdb#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/cockroachdb#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/consul.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/consul#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/consul#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/coredns.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/coredns#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/coredns#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/couchbase.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/couchbase#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/couchbase#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/couchdb.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/couchdb#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/couchdb#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/dmcache.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dmcache#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dmcache#readme
3
4
jobs:
5
- name: dmcache
src/go/plugin/go.d/config/go.d/dns_query.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsquery#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsquery#readme
3
4
#jobs:
5
# - name: example
src/go/plugin/go.d/config/go.d/dnsdist.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsdist#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsdist#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/dnsmasq.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsmasq#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsmasq#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/dnsmasq_dhcp.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dnsmasq_dhcp#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dnsmasq_dhcp#readme
3
4
jobs:
5
- name: dnsmasq_dhcp
src/go/plugin/go.d/config/go.d/docker.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/docker#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/docker#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/docker_engine.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/docker_engine#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/docker_engine#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/dockerhub.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dockerhub#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dockerhub#readme
3
4
#jobs:
5
# - name: dockerhub
src/go/plugin/go.d/config/go.d/dovecot.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/dovecot#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/dovecot#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/elasticsearch.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/elasticsearch#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/elasticsearch#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/envoy.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/envoy#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/envoy#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/exim.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/exim#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/exim#readme
3
4
jobs:
5
- name: exim
src/go/plugin/go.d/config/go.d/fail2ban.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/fail2ban#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/fail2ban#readme
3
4
jobs:
5
- name: fail2ban
src/go/plugin/go.d/config/go.d/filecheck.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/filecheck#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/filecheck#readme
3
4
#jobs:
5
# - name: files_example
src/go/plugin/go.d/config/go.d/fluentd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/fluentd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/fluentd#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/freeradius.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/freeradius#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/freeradius#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/gearman.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/gearman#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/gearman#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/geth.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/geth#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/geth#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/haproxy.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/haproxy#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/haproxy#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/hddtemp.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hddtemp#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hddtemp#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/hdfs.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hdfs#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hdfs#readme
3
4
#jobs:
5
# - name: namenode
src/go/plugin/go.d/config/go.d/hpssa.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/hpssa#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/hpssa#readme
3
4
jobs:
5
- name: hpssa
src/go/plugin/go.d/config/go.d/httpcheck.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/httpcheck#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/httpcheck#readme
3
4
#jobs:
5
# - name: jira
src/go/plugin/go.d/config/go.d/icecast.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/icecast#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/icecast#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/intelgpu.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/intelgpu#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/intelgpu#readme
3
4
jobs:
5
- name: intelgpu
src/go/plugin/go.d/config/go.d/ipfs.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ipfs#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ipfs#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/isc_dhcpd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/isc_dhcpd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/isc_dhcpd#readme
3
4
#jobs:
5
# - name: ipv4_example
src/go/plugin/go.d/config/go.d/k8s_kubelet.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_kubelet#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_kubelet#readme
3
4
#jobs:
5
# - url: http://127.0.0.1:10255/metrics
src/go/plugin/go.d/config/go.d/k8s_kubeproxy.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_kubeproxy#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_kubeproxy#readme
3
4
#jobs:
5
# - url: http://127.0.0.1:10249/metrics
src/go/plugin/go.d/config/go.d/k8s_state.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/k8s_state#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/k8s_state#readme
3
4
jobs:
5
- name: k8s_state
src/go/plugin/go.d/config/go.d/lighttpd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/lighttpd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/lighttpd#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/litespeed.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/litespeed#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/litespeed#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/logind.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/logind#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/logind#readme
3
4
jobs:
5
- name: logind
src/go/plugin/go.d/config/go.d/logstash.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/logstash#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/logstash#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/lvm.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/lvm#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/lvm#readme
3
4
jobs:
5
- name: lvm
src/go/plugin/go.d/config/go.d/maxscale.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/maxscale#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/maxscale#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/megacli.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/megacli#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/megacli#readme
3
4
jobs:
5
- name: megacli
src/go/plugin/go.d/config/go.d/memcached.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/memcached#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/memcached#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/mongodb.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/mongodb#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/mongodb#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/monit.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/monit#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/monit#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/mysql.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/mysql#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/mysql#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nginx.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginx#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginx#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nginxplus.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxplus#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxplus#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nginxunit.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxunit#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxunit#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nginxvts.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nginxvts#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nginxvts#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nsd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nsd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nsd#readme
3
4
jobs:
5
- name: nsd
src/go/plugin/go.d/config/go.d/ntpd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ntpd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ntpd#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/nvidia_smi.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvidia_smi#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvidia_smi#readme
3
4
jobs:
5
- name: nvidia_smi
src/go/plugin/go.d/config/go.d/nvme.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/nvme#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/nvme#readme
3
4
jobs:
5
- name: nvme
src/go/plugin/go.d/config/go.d/openldap.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openldap#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openldap#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/openvpn.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openvpn#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openvpn#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/openvpn_status_log.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/openvpn_status_log#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/openvpn_status_log#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/oracledb.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/oracledb#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/oracledb#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/pgbouncer.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pgbouncer#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pgbouncer#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/phpdaemon.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/phpdaemon#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/phpdaemon#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/phpfpm.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/phpfpm#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/phpfpm#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/pihole.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pihole#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pihole#readme
3
4
#jobs:
5
# - name: pihole
src/go/plugin/go.d/config/go.d/pika.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pika#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pika#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/ping.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/ping#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/ping#readme
3
4
#jobs:
5
# - name: example
src/go/plugin/go.d/config/go.d/portcheck.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/portcheck#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/portcheck#readme
3
4
#jobs:
5
# - name: job1
src/go/plugin/go.d/config/go.d/postfix.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/postfix#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/postfix#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/postgres.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/postgres#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/postgres#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/powerdns.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/powerdns#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/powerdns#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/powerdns_recursor.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/powerdns_recursor#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/powerdns_recursor#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/prometheus.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/prometheus#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/prometheus#readme
3
4
#jobs:
5
# - name: node_exporter_local
src/go/plugin/go.d/config/go.d/proxysql.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/proxysql#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/proxysql#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/pulsar.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/pulsar#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/pulsar#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/puppet.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/puppet#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/puppet#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/rabbitmq.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rabbitmq#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rabbitmq#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/redis.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/redis#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/redis#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/rethinkdb.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rethinkdb#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rethinkdb#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/riakkv.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/riakkv#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/riakkv#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/rspamd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/rspamd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/rspamd#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/samba.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/samba#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/samba#readme
3
4
jobs:
5
- name: samba
src/go/plugin/go.d/config/go.d/scaleio.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/scaleio#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/scaleio#readme
3
4
#jobs:
5
# - name : local
src/go/plugin/go.d/config/go.d/sensors.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/sensors#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/sensors#readme
3
4
jobs:
5
- name: sensors
src/go/plugin/go.d/config/go.d/smartctl.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/smartctl#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/smartctl#readme
3
4
jobs:
5
- name: smartctl
src/go/plugin/go.d/config/go.d/snmp.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/snmp#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/snmp#readme
3
4
#jobs:
5
# - name: switch
src/go/plugin/go.d/config/go.d/spigotmc.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/spigotmc#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/spigotmc#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/squid.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/squid#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/squid#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/squidlog.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/squidlog#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/squidlog#readme
3
4
jobs:
5
- name: squidlog
src/go/plugin/go.d/config/go.d/storcli.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/storcli#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/storcli#readme
3
4
jobs:
5
- name: storcli
src/go/plugin/go.d/config/go.d/supervisord.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/supervisord#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/supervisord#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/systemdunits.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/systemdunits#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/systemdunits#readme
3
4
jobs:
5
- name: service-units
src/go/plugin/go.d/config/go.d/tengine.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tengine#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tengine#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/tomcat.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tomcat#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tomcat#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/tor.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/tor#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/tor#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/traefik.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/traefik#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/traefik#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/typesense.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/typesense#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/typesense#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/unbound.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/unbound#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/unbound#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/upsd.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/upsd#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/upsd#readme
3
4
#jobs:
5
# - name: upsd
src/go/plugin/go.d/config/go.d/uwsgi.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/uwsgi#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/uwsgi#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/varnish.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/varnish#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/varnish#readme
3
4
jobs:
5
- name: local
src/go/plugin/go.d/config/go.d/vcsa.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vcsa#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vcsa#readme
3
4
#jobs:
5
# - name : vcsa1
src/go/plugin/go.d/config/go.d/vernemq.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vernemq#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vernemq#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/config/go.d/vsphere.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/vsphere#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/vsphere#readme
3
4
#jobs:
5
# - name : vcenter1
src/go/plugin/go.d/config/go.d/w1sensor.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/w1sensor#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/w1sensor#readme
3
4
jobs:
5
- name: w1sensor
src/go/plugin/go.d/config/go.d/web_log.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/web_log#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/web_log#readme
3
4
jobs:
5
# NGINX
src/go/plugin/go.d/config/go.d/whoisquery.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/whoisquery#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/whoisquery#readme
3
4
#jobs:
5
# - name: example
src/go/plugin/go.d/config/go.d/windows.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/windows#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/windows#readme
3
4
#jobs:
5
# - name: win_server1
src/go/plugin/go.d/config/go.d/wireguard.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/wireguard#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/wireguard#readme
3
4
jobs:
5
- name: wireguard
src/go/plugin/go.d/config/go.d/x509check.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/x509check#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/x509check#readme
3
4
#jobs:
5
# - name: my_site_cert
src/go/plugin/go.d/config/go.d/zfspool.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/zfspool#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/zfspool#readme
3
4
jobs:
5
- name: zfspool
src/go/plugin/go.d/config/go.d/zookeeper.conf
+1
-1
@@ -1,5 +1,5 @@
1
## All available configuration options, their descriptions and default values:
2
-## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/zookeeper#readme
2
+## https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/zookeeper#readme
3
4
#jobs:
5
# - name: local
src/go/plugin/go.d/docs/how-to-write-a-module.md
+8
-8
@@ -12,7 +12,7 @@
12
## Write and test a simple collector
13
14
> :exclamation: You can skip most of these steps if you first experiment directly with the existing
15
-> [example module](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules/example), which
15
+> [example module](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/example), which
16
> will
17
> give you an idea of how things work.
18
@@ -21,7 +21,7 @@ Let's assume you want to write a collector named `example2`.
21
The steps are:
22
23
- Add the source code
24
- to [`modules/example2/`](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/modules).
24
+ to [`modules/example2/`](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector).
25
- [module interface](#module-interface).
26
- [suggested module layout](#module-layout).
27
- [helper packages](#helper-packages).
@@ -30,7 +30,7 @@ The steps are:
30
- Add the module
31
to [`config/go.d.conf`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/config/go.d.conf).
32
- Import the module
33
- in [`modules/init.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/init.go).
33
+ in [`modules/init.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/init.go).
34
- Update
35
the [`available modules list`](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d#available-modules).
36
- To build it, run `make` from the plugin root dir. This will create a new `go.d.plugin` binary that includes your newly
@@ -191,7 +191,7 @@ Suggested minimal layout:
191
### File `module_name.go`
192
193
> :exclamation: See the
194
-> example [`example.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/example/example.go).
194
+> example [`example.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/example/example.go).
195
196
Don't overload this file with the implementation details.
197
@@ -204,14 +204,14 @@ Usually it contains only:
204
### File `charts.go`
205
206
> :exclamation: See the
207
-> example: [`charts.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/example/charts.go).
207
+> example: [`charts.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/example/charts.go).
208
209
Put charts, charts templates and charts constructor functions in this file.
210
211
### File `init.go`
212
213
> :exclamation: See the
214
-> example: [`init.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/example/init.go).
214
+> example: [`init.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/example/init.go).
215
216
All the module initialization details should go in this file.
217
@@ -238,7 +238,7 @@ func (e *Example) initSomeValue() error {
238
### File `collect.go`
239
240
> :exclamation: See the
241
-> example: [`collect.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/example/collect.go).
241
+> example: [`collect.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/example/collect.go).
242
243
This file is the entry point for the metrics collection.
244
@@ -261,7 +261,7 @@ func (e *Example) collect() (map[string]int64, error) {
261
### File `module_name_test.go`
262
263
> :exclamation: See the
264
-> example: [`example_test.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/modules/example/example_test.go).
264
+> example: [`example_test.go`](https://github.com/netdata/netdata/blob/master/src/go/plugin/go.d/collector/example/example_test.go).
265
>
266
> if you have no experience in testing we recommend starting
267
> with [testing package documentation](https://golang.org/pkg/testing/).
src/health/guides/httpcheck/httpcheck_web_service_bad_content.md
+1
-1
@@ -27,4 +27,4 @@ sudo ./edit-config go.d/httpcheck.conf
27
28
### Useful resources
29
30
-1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/modules/httpcheck/integrations/http_endpoints.md)
\ No newline at end of file
30
+1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/collector/httpcheck/integrations/http_endpoints.md)
\ No newline at end of file
src/health/guides/httpcheck/httpcheck_web_service_bad_status.md
+1
-1
@@ -18,4 +18,4 @@ root@netdata # curl -v <your_http_endpoint>:<port>/<path>
18
19
### Useful resources
20
21
-1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/modules/httpcheck/integrations/http_endpoints.md)
21
+1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/collector/httpcheck/integrations/http_endpoints.md)
src/health/guides/httpcheck/httpcheck_web_service_slow.md
+1
-1
@@ -14,5 +14,5 @@ To troubleshoot this issue, check for:
14
15
### Useful resources
16
17
-1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/modules/httpcheck/integrations/http_endpoints.md)
17
+1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/collector/httpcheck/integrations/http_endpoints.md)
18
src/health/guides/httpcheck/httpcheck_web_service_unreachable.md
+1
-1
@@ -30,4 +30,4 @@ To troubleshoot this error, check the following:
30
31
### Useful resources
32
33
-1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/modules/httpcheck/integrations/http_endpoints.md)
\ No newline at end of file
33
+1. [HTTP endpoint monitoring with Netdata](/src/go/plugin/go.d/collector/httpcheck/integrations/http_endpoints.md)
\ No newline at end of file