@cryptotaxi247 / netdata-1 / commits / 271772e3a

Restructure integration categories, add missing metadata (#21753)

Restructure integration categories, add missing metadata, update functions docs - Rename categories: "Hardware and IoT" to "Hardware and Sensors", "Containers and Orchestration" to "Containers and VMs" (names and IDs) - Move ~70 collectors to correct categories (networking, storage, hardware-and-sensors, applications, etc.) - Fix non-standard category IDs in ibm.d and scripts.d modules - Add ibm.d, scripts.d, and netdata-otel to integration generation scripts - Create metadata for otel.plugin (collector format) and OpenTelemetry Logs - Create metadata for network-viewer.plugin (functions) - Update top-monitoring-netdata-functions.md with all go.d database functions (top-queries, running-queries, deadlock-info, error-info) and SNMP interfaces; remove logs entry

Costa Tsaousis committed Feb 12, 2026 at 15:16 UTC 271772e3ac28b5daf07079181a77a9c0c14ba474
55 files changed +577 -193
docs/top-monitoring-netdata-functions.md
+18 -14
@@ -8,20 +8,24 @@ Beyond their primary roles of collecting metrics, collectors can execute specifi
8
9 ## What functions are currently available?
10
11 -| Function | Description | Alternative to CLI tools | Require Cloud | plugin - module |
12 -|:--------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------|:--------------|:---------------------------------------------------------------------------------------------------------------|
13 -| Block-devices | Disk I/O activity for all block devices, offering insights into both data transfer volume and operation performance. | `iostat` | no | [proc](https://github.com/netdata/netdata/tree/master/src/collectors/proc.plugin#readme) |
14 -| Containers-vms | Insights into the resource utilization of containers and QEMU virtual machines: CPU usage, memory consumption, disk I/O, and network traffic. | `docker stats`, `systemd-cgtop` | no | [cgroups](https://github.com/netdata/netdata/tree/master/src/collectors/cgroups.plugin#readme) |
15 -| Ipmi-sensors | Readings and status of IPMI sensors. | `ipmi-sensors` | no | [freeipmi](https://github.com/netdata/netdata/tree/master/src/collectors/freeipmi.plugin#readme) |
16 -| Mount-points | Disk usage for each mount point, including used and available space, both in terms of percentage and actual bytes, as well as used and available inode counts. | `df` | no | [diskspace](https://github.com/netdata/netdata/tree/master/src/collectors/diskspace.plugin#readme) |
17 -| Network-connections | Real-time monitoring of all network connections, showing established connections, ports, protocols, and connection states across TCP/UDP services. | `netstat`, `ss` | yes | [network-viewer](https://github.com/netdata/netdata/tree/master/src/collectors/network-viewer.plugin) |
18 -| Network-interfaces | Network traffic, packet drop rates, interface states, MTU, speed, and duplex mode for all network interfaces. | `bmon`, `bwm-ng` | no | [proc](https://github.com/netdata/netdata/tree/master/src/collectors/proc.plugin#readme) |
19 -| Processes | Real-time information about the system's resource usage, including CPU utilization, memory consumption, and disk IO for every running process. | `top`, `htop` | yes | [apps](/src/collectors/apps.plugin/README.md) |
20 -| Systemd-journal | Viewing, exploring and analyzing systemd journal logs. | `journalctl` | yes | [systemd-journal](https://github.com/netdata/netdata/tree/master/src/collectors/systemd-journal.plugin#readme) |
21 -| Systemd-list-units | Information about all systemd units, including their active state, description, whether or not they are enabled, and more. | `systemctl list-units` | yes | [systemd-journal](https://github.com/netdata/netdata/tree/master/src/collectors/systemd-journal.plugin#readme) |
22 -| Systemd-services | System resource utilization for all running systemd services: CPU, memory, and disk IO. | `systemd-cgtop` | no | [cgroups](https://github.com/netdata/netdata/tree/master/src/collectors/cgroups.plugin#readme) |
23 -| Netdata-api-calls | Real-time tracing of API calls made to the Netdata Agent. It provides information on query, source, status, elapsed time, and more. | | yes | |
24 -| Netdata-streaming | Comprehensive overview of all Netdata children instances, offering detailed information about their status, replication completion time, and many more. | | yes | |
11 +| Function | Description | Alternative to CLI tools | Require Cloud | plugin - module |
12 +|:---|:---|---|:---|:---|
13 +| Block-devices | Disk I/O activity for all block devices, offering insights into both data transfer volume and operation performance. | `iostat` | no | [proc](https://github.com/netdata/netdata/tree/master/src/collectors/proc.plugin#readme) |
14 +| Containers-vms | Insights into the resource utilization of containers and QEMU virtual machines: CPU usage, memory consumption, disk I/O, and network traffic. | `docker stats`, `systemd-cgtop` | no | [cgroups](https://github.com/netdata/netdata/tree/master/src/collectors/cgroups.plugin#readme) |
15 +| Deadlock-info | Most recent deadlock events detected in the database. Supported databases: Microsoft SQL Server, MySQL, MariaDB, Percona MySQL. | | yes | [go.d](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector#readme): mssql, mysql |
16 +| Error-info | Recent SQL errors from database error tracking. Supported databases: Microsoft SQL Server, MySQL, MariaDB, Percona MySQL. | | yes | [go.d](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector#readme): mssql, mysql |
17 +| Ipmi-sensors | Readings and status of IPMI sensors. | `ipmi-sensors` | no | [freeipmi](https://github.com/netdata/netdata/tree/master/src/collectors/freeipmi.plugin#readme) |
18 +| Mount-points | Disk usage for each mount point, including used and available space, both in terms of percentage and actual bytes, as well as used and available inode counts. | `df` | no | [diskspace](https://github.com/netdata/netdata/tree/master/src/collectors/diskspace.plugin#readme) |
19 +| Network-connections | Real-time monitoring of all network connections, showing established connections, ports, protocols, and connection states across TCP/UDP services. | `netstat`, `ss` | yes | [network-viewer](https://github.com/netdata/netdata/tree/master/src/collectors/network-viewer.plugin) |
20 +| Network-interfaces | Network traffic, packet drop rates, interface states, MTU, speed, and duplex mode for all network interfaces. | `bmon`, `bwm-ng` | no | [proc](https://github.com/netdata/netdata/tree/master/src/collectors/proc.plugin#readme) |
21 +| Processes | Real-time information about the system's resource usage, including CPU utilization, memory consumption, and disk IO for every running process. | `top`, `htop` | yes | [apps](/src/collectors/apps.plugin/README.md) |
22 +| Running-queries | Currently executing SQL statements. Supported databases: CockroachDB, Oracle DB, PostgreSQL, RethinkDB, YugabyteDB. | | yes | [go.d](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector#readme): cockroachdb, oracledb, postgres, rethinkdb, yugabytedb |
23 +| SNMP-interfaces | Network interface traffic and status metrics from SNMP-enabled devices, including bandwidth, errors, discards, and operational status. | `snmpwalk` | no | [snmp](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector/snmp#readme) |
24 +| Systemd-list-units | Information about all systemd units, including their active state, description, whether or not they are enabled, and more. | `systemctl list-units` | yes | [systemd-journal](https://github.com/netdata/netdata/tree/master/src/collectors/systemd-journal.plugin#readme) |
25 +| Systemd-services | System resource utilization for all running systemd services: CPU, memory, and disk IO. | `systemd-cgtop` | no | [cgroups](https://github.com/netdata/netdata/tree/master/src/collectors/cgroups.plugin#readme) |
26 +| Top-queries | Aggregated SQL query performance metrics. Supported databases: ClickHouse, CockroachDB, Couchbase, Elasticsearch, MongoDB, Microsoft SQL Server, MySQL, MariaDB, OpenSearch, Oracle DB, Percona MySQL, PostgreSQL, ProxySQL, Redis, YugabyteDB. | | yes | [go.d](https://github.com/netdata/netdata/tree/master/src/go/plugin/go.d/collector#readme): clickhouse, cockroachdb, couchbase, elasticsearch, mongodb, mssql, mysql, oracledb, postgres, proxysql, redis, yugabytedb |
27 +| Netdata-api-calls | Real-time tracing of API calls made to the Netdata Agent. It provides information on query, source, status, elapsed time, and more. | | yes | |
28 +| Netdata-streaming | Comprehensive overview of all Netdata children instances, offering detailed information about their status, replication completion time, and many more. | | yes | |
29
30 ## How do functions work with streaming?
31
integrations/categories.yaml
+5 -5
@@ -40,8 +40,8 @@
40 most_popular: true
41 priority: 2
42 children: []
43 - - id: data-collection.containers-and-orchestration
44 - name: Containers and Orchestration
43 + - id: data-collection.containers-and-vms
44 + name: Containers and VMs
45 description: ""
46 most_popular: true
47 priority: 3
@@ -64,8 +64,8 @@
64 most_popular: true
65 priority: 6
66 children: []
67 - - id: data-collection.hardware-and-iot
68 - name: Hardware and IoT
67 + - id: data-collection.hardware-and-sensors
68 + name: Hardware and Sensors
69 description: ""
70 most_popular: true
71 priority: 7
@@ -78,7 +78,7 @@
78 collector_default: true
79 children: []
80 - id: data-collection.storage
81 - name: Storage
81 + name: Storage and Filesystems
82 description: ""
83 most_popular: true
84 priority: 9
integrations/gen_docs_integrations.py
+3
@@ -24,6 +24,9 @@ def cleanup(only_base_paths=None):
24 """
25 targets = [
26 "src/go/plugin/go.d/collector",
27 + "src/go/plugin/ibm.d/modules",
28 + "src/go/plugin/scripts.d/modules",
29 + "src/crates/netdata-otel",
30 "src/collectors",
31 "src/exporting",
32 "integrations/cloud-notifications",
integrations/gen_integrations.py
+4
@@ -30,6 +30,10 @@ COLLECTOR_SOURCES = [
30 (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'python.d.plugin', True),
31 (AGENT_REPO, REPO_PATH / 'src' / 'collectors' / 'guides', True),
32 (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'plugin' / 'go.d' / 'collector', True),
33 + (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'plugin' / 'ibm.d' / 'modules', True),
34 + (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'plugin' / 'ibm.d' / 'modules' / 'websphere', True),
35 + (AGENT_REPO, REPO_PATH / 'src' / 'go' / 'plugin' / 'scripts.d' / 'modules', True),
36 + (AGENT_REPO, REPO_PATH / 'src' / 'crates' / 'netdata-otel', True),
37 ]
38
39 DEPLOY_SOURCES = [
integrations/logs/metadata.yaml
+36
@@ -73,3 +73,39 @@
73 prerequisites:
74 description: |
75 - Netdata Cloud paid subscription
76 +- id: "logs-opentelemetry"
77 + meta:
78 + name: "OpenTelemetry Logs"
79 + link: "https://github.com/netdata/netdata/blob/master/src/crates/netdata-log-viewer/README.md"
80 + categories:
81 + - logs
82 + icon_filename: "opentelemetry.svg"
83 + keywords:
84 + - opentelemetry
85 + - otel
86 + - otlp
87 + - logs
88 + overview:
89 + description: |
90 + The OpenTelemetry log viewer plugin by Netdata makes viewing, exploring and analyzing OpenTelemetry logs simple and efficient.
91 +
92 + It works with logs ingested by the `otel.plugin`, which receives OTLP-formatted log data and stores them in
93 + systemd-compatible journal files. The log viewer provides the same powerful exploration interface used for
94 + systemd journal logs.
95 + visualization:
96 + description: |
97 + You can start exploring OpenTelemetry logs on the "Logs" tab of the Netdata UI.
98 + key_features:
99 + description: |
100 + - Views logs ingested via **OpenTelemetry OTLP/gRPC** protocol.
101 + - Allows filtering on **any log field** or **field value**, for any time-frame.
102 + - Allows **full text search** (`grep`) on all log fields, for any time-frame.
103 + - Provides a **histogram** for log entries over time, with a break down per field-value, for any field and any time-frame.
104 + - Uses **fast indexed lookups** with pre-built indexes for performance.
105 + - Supports **faceted search** across log fields (severity, hostname, service, etc.).
106 + - In PLAY mode shows new log entries immediately after they are received.
107 + setup:
108 + prerequisites:
109 + description: |
110 + - A Netdata Cloud account
111 + - The `otel.plugin` configured to ingest OpenTelemetry logs
src/collectors/cgroups.plugin/metadata.yaml
+16 -16
@@ -8,7 +8,7 @@ modules:
8 name: Containers
9 link: ""
10 categories:
11 - - data-collection.containers-and-orchestration
11 + - data-collection.containers-and-vms
12 icon_filename: container.svg
13 related_resources:
14 integrations:
@@ -428,8 +428,8 @@ modules:
428 link: https://kubernetes.io/
429 icon_filename: kubernetes.svg
430 categories:
431 - #- data-collection.containers-and-orchestration
432 - - data-collection.containers-and-orchestration
431 + #- data-collection.containers-and-vms
432 + - data-collection.containers-and-vms
433 keywords:
434 - k8s
435 - kubernetes
@@ -989,7 +989,7 @@ modules:
989 link: ""
990 icon_filename: container.svg
991 categories:
992 - - data-collection.containers-and-orchestration
992 + - data-collection.containers-and-vms
993 keywords:
994 - vms
995 - virtual machines
@@ -1017,7 +1017,7 @@ modules:
1017 link: ""
1018 icon_filename: lxc.png
1019 categories:
1020 - - data-collection.containers-and-orchestration
1020 + - data-collection.containers-and-vms
1021 keywords:
1022 - lxc
1023 - lxd
@@ -1038,7 +1038,7 @@ modules:
1038 link: ""
1039 icon_filename: libvirt.png
1040 categories:
1041 - - data-collection.containers-and-orchestration
1041 + - data-collection.containers-and-vms
1042 keywords:
1043 - libvirt
1044 - kvm
@@ -1061,7 +1061,7 @@ modules:
1061 link: ""
1062 icon_filename: ovirt.svg
1063 categories:
1064 - - data-collection.containers-and-orchestration
1064 + - data-collection.containers-and-vms
1065 keywords:
1066 - ovirt
1067 - rhev
@@ -1085,7 +1085,7 @@ modules:
1085 link: ""
1086 icon_filename: proxmox.png
1087 categories:
1088 - - data-collection.containers-and-orchestration
1088 + - data-collection.containers-and-vms
1089 keywords:
1090 - proxmox
1091 - proxmox ve
@@ -1110,7 +1110,7 @@ modules:
1110 link: https://www.docker.com/
1111 icon_filename: docker.svg
1112 categories:
1113 - - data-collection.containers-and-orchestration
1113 + - data-collection.containers-and-vms
1114 keywords:
1115 - docker
1116 - containers
@@ -1132,7 +1132,7 @@ modules:
1132 link: https://podman.io/
1133 icon_filename: podman.svg
1134 categories:
1135 - - data-collection.containers-and-orchestration
1135 + - data-collection.containers-and-vms
1136 keywords:
1137 - podman
1138 - containers
@@ -1153,7 +1153,7 @@ modules:
1153 link: https://aws.amazon.com/ecs/
1154 icon_filename: aws.svg
1155 categories:
1156 - - data-collection.containers-and-orchestration
1156 + - data-collection.containers-and-vms
1157 keywords:
1158 - aws
1159 - ecs
@@ -1173,7 +1173,7 @@ modules:
1173 link: https://www.nomadproject.io/
1174 icon_filename: nomad.svg
1175 categories:
1176 - - data-collection.containers-and-orchestration
1176 + - data-collection.containers-and-vms
1177 keywords:
1178 - nomad
1179 - hashicorp
@@ -1192,7 +1192,7 @@ modules:
1192 link: https://containerd.io/
1193 icon_filename: containerd.svg
1194 categories:
1195 - - data-collection.containers-and-orchestration
1195 + - data-collection.containers-and-vms
1196 keywords:
1197 - containerd
1198 - containers
@@ -1212,7 +1212,7 @@ modules:
1212 link: https://www.freedesktop.org/software/systemd/man/systemd-nspawn.html
1213 icon_filename: systemd.svg
1214 categories:
1215 - - data-collection.containers-and-orchestration
1215 + - data-collection.containers-and-vms
1216 keywords:
1217 - systemd-nspawn
1218 - nspawn
@@ -1232,7 +1232,7 @@ modules:
1232 link: https://www.redhat.com/en/technologies/cloud-computing/openshift
1233 icon_filename: openshift.svg
1234 categories:
1235 - - data-collection.containers-and-orchestration
1235 + - data-collection.containers-and-vms
1236 keywords:
1237 - openshift
1238 - red hat openshift
@@ -1256,7 +1256,7 @@ modules:
1256 link: https://www.openstack.org/
1257 icon_filename: openstack.svg
1258 categories:
1259 - - data-collection.containers-and-orchestration
1259 + - data-collection.containers-and-vms
1260 keywords:
1261 - openstack
1262 - openstack nova
src/collectors/cups.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: CUPS
8 link: "https://www.cups.org/"
9 categories:
10 - - data-collection.hardware-and-iot
10 + - data-collection.applications
11 icon_filename: "cups.png"
12 related_resources:
13 integrations:
src/collectors/debugfs.plugin/metadata.yaml
+1 -1
@@ -294,7 +294,7 @@ modules:
294 name: Power Capping
295 link: 'https://www.kernel.org/doc/html/next/power/powercap/powercap.html'
296 categories:
297 - - data-collection.operating-systems
297 + - data-collection.hardware-and-sensors
298 icon_filename: 'powersupply.svg'
299 related_resources:
300 integrations:
src/collectors/diskspace.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Disk space
8 link: ""
9 categories:
10 - - data-collection.operating-systems
10 + - data-collection.storage
11 icon_filename: "hard-drive.svg"
12 related_resources:
13 integrations:
src/collectors/ebpf.plugin/metadata.yaml
+7 -7
@@ -488,7 +488,7 @@ modules:
488 name: eBPF Disk
489 link: "https://kernel.org/"
490 categories:
491 - - data-collection.operating-systems
491 + - data-collection.storage
492 icon_filename: "ebpf.jpg"
493 related_resources:
494 integrations:
@@ -935,7 +935,7 @@ modules:
935 name: eBPF Sync
936 link: "https://kernel.org/"
937 categories:
938 - - data-collection.operating-systems
938 + - data-collection.storage
939 icon_filename: "ebpf.jpg"
940 related_resources:
941 integrations:
@@ -1117,7 +1117,7 @@ modules:
1117 name: eBPF MDflush
1118 link: "https://kernel.org/"
1119 categories:
1120 - - data-collection.operating-systems
1120 + - data-collection.storage
1121 icon_filename: "ebpf.jpg"
1122 related_resources:
1123 integrations:
@@ -1531,7 +1531,7 @@ modules:
1531 name: eBPF Socket
1532 link: "https://kernel.org/"
1533 categories:
1534 - - data-collection.operating-systems
1534 + - data-collection.networking
1535 icon_filename: "ebpf.jpg"
1536 related_resources:
1537 integrations:
@@ -2114,7 +2114,7 @@ modules:
2114 name: eBPF Filesystem
2115 link: "https://kernel.org/"
2116 categories:
2117 - - data-collection.operating-systems
2117 + - data-collection.storage
2118 icon_filename: "ebpf.jpg"
2119 related_resources:
2120 integrations:
@@ -2619,7 +2619,7 @@ modules:
2619 name: eBPF Mount
2620 link: "https://kernel.org/"
2621 categories:
2622 - - data-collection.operating-systems
2622 + - data-collection.storage
2623 icon_filename: "ebpf.jpg"
2624 related_resources:
2625 integrations:
@@ -2743,7 +2743,7 @@ modules:
2743 name: eBPF VFS
2744 link: "https://kernel.org/"
2745 categories:
2746 - - data-collection.operating-systems
2746 + - data-collection.storage
2747 icon_filename: "ebpf.jpg"
2748 related_resources:
2749 integrations:
src/collectors/freebsd.plugin/metadata.yaml
+14 -14
@@ -322,7 +322,7 @@ modules:
322 name: dev.cpu.temperature
323 link: "https://www.freebsd.org/"
324 categories:
325 - - data-collection.operating-systems
325 + - data-collection.hardware-and-sensors
326 icon_filename: "freebsd.svg"
327 related_resources:
328 integrations:
@@ -1495,7 +1495,7 @@ modules:
1495 name: net.isr
1496 link: "https://www.freebsd.org/"
1497 categories:
1498 - - data-collection.operating-systems
1498 + - data-collection.networking
1499 icon_filename: "freebsd.svg"
1500 related_resources:
1501 integrations:
@@ -1609,7 +1609,7 @@ modules:
1609 name: devstat
1610 link: "https://www.freebsd.org/"
1611 categories:
1612 - - data-collection.operating-systems
1612 + - data-collection.storage
1613 icon_filename: "hard-drive.svg"
1614 related_resources:
1615 integrations:
@@ -1801,7 +1801,7 @@ modules:
1801 name: net.inet.tcp.states
1802 link: "https://www.freebsd.org/"
1803 categories:
1804 - - data-collection.operating-systems
1804 + - data-collection.networking
1805 icon_filename: "network.svg"
1806 related_resources:
1807 integrations:
@@ -1883,7 +1883,7 @@ modules:
1883 name: net.inet.tcp.stats
1884 link: "https://www.freebsd.org/"
1885 categories:
1886 - - data-collection.operating-systems
1886 + - data-collection.networking
1887 icon_filename: "network.svg"
1888 related_resources:
1889 integrations:
@@ -2070,7 +2070,7 @@ modules:
2070 name: net.inet.udp.stats
2071 link: "https://www.freebsd.org/"
2072 categories:
2073 - - data-collection.operating-systems
2073 + - data-collection.networking
2074 icon_filename: "network.svg"
2075 related_resources:
2076 integrations:
@@ -2172,7 +2172,7 @@ modules:
2172 name: net.inet.icmp.stats
2173 link: "https://www.freebsd.org/"
2174 categories:
2175 - - data-collection.operating-systems
2175 + - data-collection.networking
2176 icon_filename: "network.svg"
2177 related_resources:
2178 integrations:
@@ -2275,7 +2275,7 @@ modules:
2275 name: net.inet.ip.stats
2276 link: "https://www.freebsd.org/"
2277 categories:
2278 - - data-collection.operating-systems
2278 + - data-collection.networking
2279 icon_filename: "network.svg"
2280 related_resources:
2281 integrations:
@@ -2394,7 +2394,7 @@ modules:
2394 name: net.inet6.ip6.stats
2395 link: "https://www.freebsd.org/"
2396 categories:
2397 - - data-collection.operating-systems
2397 + - data-collection.networking
2398 icon_filename: "network.svg"
2399 related_resources:
2400 integrations:
@@ -2515,7 +2515,7 @@ modules:
2515 name: net.inet6.icmp6.stats
2516 link: "https://www.freebsd.org/"
2517 categories:
2518 - - data-collection.operating-systems
2518 + - data-collection.networking
2519 icon_filename: "network.svg"
2520 related_resources:
2521 integrations:
@@ -2681,7 +2681,7 @@ modules:
2681 name: ipfw
2682 link: "https://www.freebsd.org/"
2683 categories:
2684 - - data-collection.operating-systems
2684 + - data-collection.networking
2685 icon_filename: "firewall.svg"
2686 related_resources:
2687 integrations:
@@ -2791,7 +2791,7 @@ modules:
2791 name: getifaddrs
2792 link: "https://www.freebsd.org/"
2793 categories:
2794 - - data-collection.operating-systems
2794 + - data-collection.networking
2795 icon_filename: "network.svg"
2796 related_resources:
2797 integrations:
@@ -3011,7 +3011,7 @@ modules:
3011 name: getmntinfo
3012 link: "https://www.freebsd.org/"
3013 categories:
3014 - - data-collection.operating-systems
3014 + - data-collection.storage
3015 icon_filename: "hard-drive.svg"
3016 related_resources:
3017 integrations:
@@ -3124,7 +3124,7 @@ modules:
3124 name: zfs
3125 link: "https://www.freebsd.org/"
3126 categories:
3127 - - data-collection.operating-systems
3127 + - data-collection.storage
3128 icon_filename: "filesystem.svg"
3129 related_resources:
3130 integrations:
src/collectors/freeipmi.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Intelligent Platform Management Interface (IPMI)
8 link: "https://en.wikipedia.org/wiki/Intelligent_Platform_Management_Interface"
9 categories:
10 - - data-collection.hardware-and-iot
10 + - data-collection.hardware-and-sensors
11 icon_filename: "netdata.png"
12 related_resources:
13 integrations:
src/collectors/guides/proxmox/metadata.yaml
+1 -1
@@ -10,7 +10,7 @@ modules:
10 link: https://www.proxmox.com/
11 icon_filename: proxmox.png
12 categories:
13 - - data-collection.containers-and-orchestration
13 + - data-collection.containers-and-vms
14 keywords:
15 - proxmox
16 - proxmox ve
src/collectors/network-viewer.plugin/metadata.yaml new
+90
@@ -0,0 +1,90 @@
1 +plugin_name: network-viewer.plugin
2 +modules:
3 + - meta:
4 + id: collector-network-viewer.plugin
5 + plugin_name: network-viewer.plugin
6 + module_name: network-viewer.plugin
7 + monitored_instance:
8 + name: Network Connections
9 + link: ""
10 + categories:
11 + - data-collection.networking
12 + icon_filename: network.svg
13 + alternative_monitored_instances: []
14 + keywords:
15 + - network
16 + - connections
17 + - sockets
18 + - tcp
19 + - udp
20 + - ports
21 + related_resources:
22 + integrations:
23 + list: []
24 + info_provided_to_referring_integrations:
25 + description: ""
26 + most_popular: false
27 + overview:
28 + data_collection:
29 + metrics_description: ""
30 + method_description: |
31 + This plugin reads the system's socket tables to enumerate all active network connections,
32 + including TCP and UDP sockets in all states, for both IPv4 and IPv6.
33 + supported_platforms:
34 + include:
35 + - description: Linux
36 + exclude: []
37 + multi_instance: false
38 + additional_permissions:
39 + description: ""
40 + default_behavior:
41 + auto_detection:
42 + description: |
43 + The plugin automatically detects all active network connections on the system.
44 + limits:
45 + description: ""
46 + performance_impact:
47 + description: ""
48 + setup:
49 + prerequisites:
50 + list: []
51 + configuration:
52 + file:
53 + name: ""
54 + options:
55 + description: ""
56 + folding:
57 + title: ""
58 + enabled: false
59 + list: []
60 + examples:
61 + folding:
62 + title: ""
63 + enabled: false
64 + list: []
65 + troubleshooting:
66 + problems:
67 + list: []
68 + alerts: []
69 + metrics:
70 + folding:
71 + title: Metrics
72 + enabled: false
73 + description: ""
74 + availability: []
75 + scopes: []
76 + functions:
77 + description: |
78 + This plugin exposes a real-time function for viewing active network connections.
79 + list:
80 + - id: network-connections
81 + name: Network Connections
82 + description: |
83 + Shows active network connections with protocol details, states, addresses, ports, and performance metrics.
84 +
85 + Provides both aggregated and detailed views of TCP and UDP connections for IPv4 and IPv6,
86 + including connection direction (listen, inbound, outbound, local), process information,
87 + and TCP performance metrics (RTT, retransmissions).
88 +
89 + Connections are classified as system or container based on network namespace.
90 + parameters: []
src/collectors/nfacct.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Netfilter
8 link: 'https://www.netfilter.org/'
9 categories:
10 - - data-collection.operating-systems
10 + - data-collection.networking
11 icon_filename: 'netfilter.png'
12 related_resources:
13 integrations:
src/collectors/proc.plugin/metadata.yaml
+108 -31
@@ -1143,7 +1143,7 @@ modules:
1143 name: Softnet Statistics
1144 link: ""
1145 categories:
1146 - - data-collection.operating-systems
1146 + - data-collection.networking
1147 icon_filename: "linuxserver.svg"
1148 related_resources:
1149 integrations:
@@ -1599,7 +1599,7 @@ modules:
1599 name: Memory modules (DIMMs)
1600 link: ""
1601 categories:
1602 - - data-collection.operating-systems
1602 + - data-collection.hardware-and-sensors
1603 icon_filename: "microchip.svg"
1604 related_resources:
1605 integrations:
@@ -2160,7 +2160,7 @@ modules:
2160 name: Disk Statistics
2161 link: ""
2162 categories:
2163 - - data-collection.operating-systems
2163 + - data-collection.storage
2164 icon_filename: "hard-drive.svg"
2165 related_resources:
2166 integrations:
@@ -2171,7 +2171,6 @@ modules:
2171 - disk
2172 - disks
2173 - io
2174 - - bcache
2174 - block devices
2175 most_popular: false
2176 overview:
@@ -2227,16 +2226,6 @@ modules:
2226 metric: disk.util
2227 info: average percentage of time ${label:device} disk was busy over the last 10 minutes
2228 os: "linux freebsd"
2230 - - name: bcache_cache_dirty
2231 - link: https://github.com/netdata/netdata/blob/master/src/health/health.d/bcache.conf
2232 - metric: disk.bcache_cache_alloc
2233 - info: percentage of cache space used for dirty data and metadata (this usually means your SSD cache is too small)
2234 - - name: bcache_cache_errors
2235 - link: https://github.com/netdata/netdata/blob/master/src/health/health.d/bcache.conf
2236 - metric: disk.bcache_cache_read_races
2237 - info:
2238 - number of times data was read from the cache, the bucket was reused and invalidated in the last 10 minutes (when this occurs the data is
2239 - reread from the backing device)
2229 metrics:
2230 folding:
2231 title: Metrics
@@ -2376,6 +2365,94 @@ modules:
2365 chart_type: line
2366 dimensions:
2367 - name: svctm
2368 + - meta:
2369 + plugin_name: proc.plugin
2370 + module_name: /sys/fs/bcache
2371 + monitored_instance:
2372 + name: BCache
2373 + link: "https://bcache.evilpiepirate.org/"
2374 + categories:
2375 + - data-collection.storage
2376 + icon_filename: "hard-drive.svg"
2377 + related_resources:
2378 + integrations:
2379 + list: []
2380 + info_provided_to_referring_integrations:
2381 + description: ""
2382 + keywords:
2383 + - bcache
2384 + - cache
2385 + - ssd
2386 + - block devices
2387 + most_popular: false
2388 + overview:
2389 + data_collection:
2390 + metrics_description: |
2391 + Statistics for BCache (block layer cache) devices, including cache hit ratios, I/O operations, cache allocations, and bypass activity.
2392 + method_description: ""
2393 + supported_platforms:
2394 + include:
2395 + - Linux
2396 + exclude: []
2397 + multi_instance: true
2398 + additional_permissions:
2399 + description: ""
2400 + default_behavior:
2401 + auto_detection:
2402 + description: |
2403 + Automatically detects BCache devices by reading stats from `/sys/block/*/bcache/`.
2404 + limits:
2405 + description: ""
2406 + performance_impact:
2407 + description: ""
2408 + setup:
2409 + prerequisites:
2410 + list: []
2411 + configuration:
2412 + file:
2413 + name: "netdata.conf"
2414 + options:
2415 + description: ""
2416 + folding:
2417 + title: ""
2418 + enabled: false
2419 + list: []
2420 + examples:
2421 + folding:
2422 + title: ""
2423 + enabled: false
2424 + list: []
2425 + troubleshooting:
2426 + problems:
2427 + list: []
2428 + alerts:
2429 + - name: bcache_cache_dirty
2430 + link: https://github.com/netdata/netdata/blob/master/src/health/health.d/bcache.conf
2431 + metric: disk.bcache_cache_alloc
2432 + info: percentage of cache space used for dirty data and metadata (this usually means your SSD cache is too small)
2433 + - name: bcache_cache_errors
2434 + link: https://github.com/netdata/netdata/blob/master/src/health/health.d/bcache.conf
2435 + metric: disk.bcache_cache_read_races
2436 + info: >
2437 + number of times data was read from the cache, the bucket was reused and invalidated in the last 10 minutes
2438 + (when this occurs the data is reread from the backing device)
2439 + metrics:
2440 + folding:
2441 + title: Metrics
2442 + enabled: false
2443 + description: ""
2444 + availability: []
2445 + scopes:
2446 + - name: disk
2447 + description: ""
2448 + labels:
2449 + - name: device
2450 + description: TBD
2451 + - name: mount_point
2452 + description: TBD
2453 + - name: device_type
2454 + description: TBD
2455 + metrics:
2456 - name: disk.bcache_cache_alloc
2457 description: BCache Cache Allocations
2458 unit: "percentage"
@@ -2444,7 +2521,7 @@ modules:
2521 name: MD RAID
2522 link: ""
2523 categories:
2447 - - data-collection.operating-systems
2524 + - data-collection.storage
2525 icon_filename: "hard-drive.svg"
2526 related_resources:
2527 integrations:
@@ -2585,7 +2662,7 @@ modules:
2662 name: Network interfaces
2663 link: ""
2664 categories:
2588 - - data-collection.operating-systems
2665 + - data-collection.networking
2666 icon_filename: "network-wired.svg"
2667 related_resources:
2668 integrations:
@@ -2807,7 +2884,7 @@ modules:
2884 name: Wireless network interfaces
2885 link: ""
2886 categories:
2810 - - data-collection.operating-systems
2887 + - data-collection.networking
2888 icon_filename: "network-wired.svg"
2889 related_resources:
2890 integrations:
@@ -2917,7 +2994,7 @@ modules:
2994 name: InfiniBand
2995 link: ""
2996 categories:
2920 - - data-collection.operating-systems
2997 + - data-collection.networking
2998 icon_filename: "network-wired.svg"
2999 related_resources:
3000 integrations:
@@ -3060,7 +3137,7 @@ modules:
3137 name: Network statistics
3138 link: ""
3139 categories:
3063 - - data-collection.operating-systems
3140 + - data-collection.networking
3141 icon_filename: "network-wired.svg"
3142 related_resources:
3143 integrations:
@@ -3645,7 +3722,7 @@ modules:
3722 name: Socket statistics
3723 link: ""
3724 categories:
3648 - - data-collection.operating-systems
3725 + - data-collection.networking
3726 icon_filename: "network-wired.svg"
3727 related_resources:
3728 integrations:
@@ -3779,7 +3856,7 @@ modules:
3856 name: IPv6 Socket Statistics
3857 link: ""
3858 categories:
3782 - - data-collection.operating-systems
3859 + - data-collection.networking
3860 icon_filename: "network-wired.svg"
3861 related_resources:
3862 integrations:
@@ -3876,7 +3953,7 @@ modules:
3953 name: IP Virtual Server
3954 link: ""
3955 categories:
3879 - - data-collection.operating-systems
3956 + - data-collection.networking
3957 icon_filename: "network-wired.svg"
3958 related_resources:
3959 integrations:
@@ -3963,7 +4040,7 @@ modules:
4040 name: NFS Client
4041 link: ""
4042 categories:
3966 - - data-collection.operating-systems
4043 + - data-collection.storage
4044 icon_filename: "nfs.png"
4045 related_resources:
4046 integrations:
@@ -4064,7 +4141,7 @@ modules:
4141 name: NFS Server
4142 link: ""
4143 categories:
4067 - - data-collection.operating-systems
4144 + - data-collection.storage
4145 icon_filename: "nfs.png"
4146 related_resources:
4147 integrations:
@@ -4198,7 +4275,7 @@ modules:
4275 name: SCTP Statistics
4276 link: ""
4277 categories:
4201 - - data-collection.operating-systems
4278 + - data-collection.networking
4279 icon_filename: "network-wired.svg"
4280 related_resources:
4281 integrations:
@@ -4302,7 +4379,7 @@ modules:
4379 name: Conntrack
4380 link: ""
4381 categories:
4305 - - data-collection.operating-systems
4382 + - data-collection.networking
4383 icon_filename: "firewall.svg"
4384 related_resources:
4385 integrations:
@@ -4423,7 +4500,7 @@ modules:
4500 name: Synproxy
4501 link: ""
4502 categories:
4426 - - data-collection.operating-systems
4503 + - data-collection.networking
4504 icon_filename: "firewall.svg"
4505 related_resources:
4506 integrations:
@@ -4510,7 +4587,7 @@ modules:
4587 name: ZFS Adaptive Replacement Cache
4588 link: ""
4589 categories:
4513 - - data-collection.operating-systems
4590 + - data-collection.storage
4591 icon_filename: "filesystem.svg"
4592 related_resources:
4593 integrations:
@@ -4776,7 +4853,7 @@ modules:
4853 name: BTRFS
4854 link: ""
4855 categories:
4779 - - data-collection.operating-systems
4856 + - data-collection.storage
4857 icon_filename: "filesystem.svg"
4858 related_resources:
4859 integrations:
@@ -4966,7 +5043,7 @@ modules:
5043 name: Power Supply
5044 link: ""
5045 categories:
4969 - - data-collection.operating-systems
5046 + - data-collection.hardware-and-sensors
5047 icon_filename: "powersupply.svg"
5048 related_resources:
5049 integrations:
@@ -5082,7 +5159,7 @@ modules:
5159 name: AMD GPU
5160 link: "https://www.amd.com"
5161 categories:
5085 - - data-collection.hardware-and-iot
5162 + - data-collection.hardware-and-sensors
5163 icon_filename: amd.svg
5164 related_resources:
5165 integrations:
src/collectors/python.d.plugin/am2320/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: AM2320
8 link: 'https://learn.adafruit.com/adafruit-am2320-temperature-humidity-i2c-sensor/overview'
9 categories:
10 - - data-collection.hardware-and-iot
10 + - data-collection.hardware-and-sensors
11 icon_filename: 'microchip.svg'
12 related_resources:
13 integrations:
src/collectors/python.d.plugin/pandas/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Pandas
8 link: https://pandas.pydata.org/
9 categories:
10 - - data-collection.applications
10 + - data-collection.databases
11 icon_filename: pandas.png
12 related_resources:
13 integrations:
src/collectors/tc.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: tc QoS classes
8 link: "https://wiki.linuxfoundation.org/networking/iproute2"
9 categories:
10 - - data-collection.operating-systems
10 + - data-collection.networking
11 icon_filename: "netdata.png"
12 related_resources:
13 integrations:
src/collectors/windows.plugin/metadata.yaml
+15 -15
@@ -317,7 +317,7 @@ modules:
317 name: Physical and Logical Disk Performance Metrics
318 link: "https://learn.microsoft.com/en-us/windows/win32/fileio/disk-management"
319 categories:
320 - - data-collection.operating-systems
320 + - data-collection.storage
321 icon_filename: "windows.svg"
322 related_resources:
323 integrations:
@@ -500,7 +500,7 @@ modules:
500 name: Network Subsystem
501 link: "https://learn.microsoft.com/en-us/windows/win32/networking"
502 categories:
503 - - data-collection.operating-systems
503 + - data-collection.networking
504 icon_filename: "windows.svg"
505 related_resources:
506 integrations:
@@ -916,7 +916,7 @@ modules:
916 name: Hardware information collected from kernel ring.
917 link: "https://learn.microsoft.com/en-us/windows-hardware/drivers/ddi/"
918 categories:
919 - - data-collection.operating-systems
919 + - data-collection.hardware-and-sensors
920 icon_filename: "windows.svg"
921 related_resources:
922 integrations:
@@ -998,7 +998,7 @@ modules:
998 name: System thermal zone
999 link: "https://learn.microsoft.com/en-us/windows-hardware/design/device-experiences/design-guide"
1000 categories:
1001 - - data-collection.operating-systems
1001 + - data-collection.hardware-and-sensors
1002 icon_filename: "windows.svg"
1003 related_resources:
1004 integrations:
@@ -1080,7 +1080,7 @@ modules:
1080 name: Power supply
1081 link: "https://learn.microsoft.com/en-us/windows/win32/power/power-management-portal"
1082 categories:
1083 - - data-collection.operating-systems
1083 + - data-collection.hardware-and-sensors
1084 icon_filename: "powersupply.svg"
1085 related_resources:
1086 integrations:
@@ -1173,7 +1173,7 @@ modules:
1173 name: Sensors
1174 link: "https://learn.microsoft.com/en-us/windows/win32/sensorsapi/portal"
1175 categories:
1176 - - data-collection.operating-systems
1176 + - data-collection.hardware-and-sensors
1177 icon_filename: "windows.svg"
1178 related_resources:
1179 integrations:
@@ -1399,7 +1399,7 @@ modules:
1399 name: IIS
1400 link: "https://www.iis.net/"
1401 categories:
1402 - - data-collection.operating-systems
1402 + - data-collection.web-servers-and-proxies
1403 icon_filename: "windows.svg"
1404 related_resources:
1405 integrations:
@@ -1716,7 +1716,7 @@ modules:
1716 name: Hyper-V
1717 link: "https://learn.microsoft.com/en-us/virtualization/hyper-v-on-windows/about/"
1718 categories:
1719 - - data-collection.operating-systems
1719 + - data-collection.containers-and-vms
1720 icon_filename: "windows.svg"
1721 related_resources:
1722 integrations:
@@ -2084,7 +2084,7 @@ modules:
2084 name: MS SQL Server
2085 link: "https://www.microsoft.com/en-us/sql-server/"
2086 categories:
2087 - - data-collection.operating-systems
2087 + - data-collection.databases
2088 icon_filename: "windows.svg"
2089 related_resources:
2090 integrations:
@@ -2707,7 +2707,7 @@ modules:
2707 name: NET Framework
2708 link: "https://dotnet.microsoft.com/en-us/learn/dotnet/what-is-dotnet-framework"
2709 categories:
2710 - - data-collection.operating-systems
2710 + - data-collection.applications
2711 icon_filename: "dotnet.svg"
2712 related_resources:
2713 integrations:
@@ -2973,7 +2973,7 @@ modules:
2973 name: Active Directory
2974 link: "https://learn.microsoft.com/en-us/windows-server/identity/ad-ds/get-started/virtual-dc/active-directory-domain-services-overview"
2975 categories:
2976 - - data-collection.operating-systems
2976 + - data-collection.applications
2977 icon_filename: "windows.svg"
2978 related_resources:
2979 integrations:
@@ -3139,7 +3139,7 @@ modules:
3139 name: Active Directory Certificate Service
3140 link: "https://learn.microsoft.com/en-us/windows-server/identity/ad-cs/"
3141 categories:
3142 - - data-collection.operating-systems
3142 + - data-collection.applications
3143 icon_filename: "windows.svg"
3144 related_resources:
3145 integrations:
@@ -3316,7 +3316,7 @@ modules:
3316 name: Active Directory Federation Service
3317 link: "https://learn.microsoft.com/en-us/windows-server/identity/ad-fs/ad-fs-overview"
3318 categories:
3319 - - data-collection.operating-systems
3319 + - data-collection.applications
3320 icon_filename: "windows.svg"
3321 related_resources:
3322 integrations:
@@ -3686,7 +3686,7 @@ modules:
3686 name: MS Exchange
3687 link: "https://www.microsoft.com/en-us/microsoft-365/exchange/email"
3688 categories:
3689 - - data-collection.operating-systems
3689 + - data-collection.applications
3690 icon_filename: "exchange.svg"
3691 related_resources:
3692 integrations:
@@ -4037,7 +4037,7 @@ modules:
4037 name: ASP.NET
4038 link: "https://dotnet.microsoft.com/en-us/apps/aspnet"
4039 categories:
4040 - - data-collection.operating-systems
4040 + - data-collection.web-servers-and-proxies
4041 icon_filename: "windows.svg"
4042 related_resources:
4043 integrations:
src/collectors/xenstat.plugin/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Xen XCP-ng
8 link: "https://xenproject.org/"
9 categories:
10 - - data-collection.containers-and-orchestration
10 + - data-collection.containers-and-vms
11 icon_filename: "xen.png"
12 related_resources:
13 integrations:
src/crates/netdata-otel/otel-plugin/metadata.yaml new
+170
@@ -0,0 +1,170 @@
1 +plugin_name: otel.plugin
2 +modules:
3 + - meta:
4 + id: collector-otel.plugin-otel
5 + plugin_name: otel.plugin
6 + module_name: otel
7 + monitored_instance:
8 + name: OpenTelemetry
9 + link: https://opentelemetry.io/
10 + categories:
11 + - data-collection.cloud-and-devops
12 + icon_filename: opentelemetry.svg
13 + alternative_monitored_instances: []
14 + keywords:
15 + - opentelemetry
16 + - otel
17 + - otlp
18 + - grpc
19 + - metrics
20 + - logs
21 + - observability
22 + related_resources:
23 + integrations:
24 + list: []
25 + info_provided_to_referring_integrations:
26 + description: ""
27 + most_popular: true
28 + overview:
29 + data_collection:
30 + metrics_description: |
31 + This plugin ingests OpenTelemetry metrics and logs via the OTLP/gRPC protocol.
32 +
33 + It receives OTLP-formatted data from any OpenTelemetry-compatible source (collectors, SDKs, instrumented applications)
34 + and automatically creates Netdata charts for visualization and alerting.
35 +
36 + For logs, it stores them in systemd-compatible journal files with configurable rotation and retention policies.
37 + method_description: |
38 + The plugin listens on a gRPC endpoint (default `127.0.0.1:4317`) for incoming OTLP data.
39 + It supports both metrics and logs signals. Metrics are mapped to Netdata charts using configurable
40 + mapping rules. Logs are stored in journal files for querying via the Netdata Logs tab.
41 + supported_platforms:
42 + include:
43 + - description: Linux
44 + exclude: []
45 + multi_instance: false
46 + additional_permissions:
47 + description: ""
48 + default_behavior:
49 + auto_detection:
50 + description: |
51 + The plugin starts automatically and listens on `127.0.0.1:4317` for incoming OTLP/gRPC connections.
52 + limits:
53 + description: ""
54 + performance_impact:
55 + description: ""
56 + setup:
57 + prerequisites:
58 + list:
59 + - title: OpenTelemetry data source
60 + description: |
61 + An OpenTelemetry Collector, SDK, or instrumented application configured to send OTLP data
62 + to the Netdata agent's gRPC endpoint.
63 + configuration:
64 + file:
65 + name: otel.yaml
66 + options:
67 + description: |
68 + The plugin is configured via `otel.yaml` in the Netdata configuration directory.
69 + folding:
70 + title: Config options
71 + enabled: true
72 + list:
73 + - name: endpoint.path
74 + description: gRPC endpoint to listen on for incoming OTLP data.
75 + default_value: "127.0.0.1:4317"
76 + required: false
77 + - name: endpoint.tls_cert_path
78 + description: Path to TLS certificate file. Enables TLS when provided.
79 + default_value: ""
80 + required: false
81 + - name: endpoint.tls_key_path
82 + description: Path to TLS private key file. Required when TLS certificate is provided.
83 + default_value: ""
84 + required: false
85 + - name: endpoint.tls_ca_cert_path
86 + description: Path to TLS CA certificate file for client authentication.
87 + default_value: ""
88 + required: false
89 + - name: metrics.chart_configs_dir
90 + description: Directory with YAML files for mapping OTLP metrics to Netdata charts.
91 + default_value: "otel.d/v1/metrics/"
92 + required: false
93 + - name: metrics.buffer_samples
94 + description: Number of samples to buffer for collection interval detection.
95 + default_value: 10
96 + required: false
97 + - name: metrics.throttle_charts
98 + description: Maximum number of new charts to create per collection interval.
99 + default_value: 100
100 + required: false
101 + - name: logs.journal_dir
102 + description: Directory to store journal files for ingested logs.
103 + default_value: ""
104 + required: true
105 + - name: logs.size_of_journal_file
106 + description: Maximum file size before rotating to a new journal file.
107 + default_value: "100MB"
108 + required: false
109 + - name: logs.entries_of_journal_file
110 + description: Maximum log entries per journal file.
111 + default_value: 50000
112 + required: false
113 + - name: logs.duration_of_journal_file
114 + description: Maximum time span within a single journal file.
115 + default_value: "2 hours"
116 + required: false
117 + - name: logs.number_of_journal_files
118 + description: Maximum number of journal files to keep.
119 + default_value: 10
120 + required: false
121 + - name: logs.size_of_journal_files
122 + description: Maximum total size of all journal files.
123 + default_value: "1GB"
124 + required: false
125 + - name: logs.duration_of_journal_files
126 + description: Maximum age of journal files.
127 + default_value: "7 days"
128 + required: false
129 + examples:
130 + folding:
131 + title: Config
132 + enabled: true
133 + list:
134 + - name: Basic configuration
135 + folding:
136 + enabled: false
137 + description: Listen on default endpoint with default settings.
138 + config: |
139 + endpoint:
140 + path: "127.0.0.1:4317"
141 + metrics:
142 + chart_configs_dir: otel.d/v1/metrics/
143 + buffer_samples: 10
144 + logs:
145 + journal_dir: /var/log/netdata/otel-journals
146 + - name: TLS-enabled configuration
147 + description: Listen with TLS enabled for secure connections.
148 + config: |
149 + endpoint:
150 + path: "0.0.0.0:4317"
151 + tls_cert_path: /etc/netdata/ssl/cert.pem
152 + tls_key_path: /etc/netdata/ssl/key.pem
153 + metrics:
154 + chart_configs_dir: otel.d/v1/metrics/
155 + buffer_samples: 10
156 + logs:
157 + journal_dir: /var/log/netdata/otel-journals
158 + troubleshooting:
159 + problems:
160 + list: []
161 + alerts: []
162 + metrics:
163 + folding:
164 + title: Metrics
165 + enabled: false
166 + description: |
167 + Metrics are dynamically created based on the OpenTelemetry data received.
168 + The specific metrics depend on the OTLP sources sending data to the plugin.
169 + availability: []
170 + scopes: []
src/go/plugin/go.d/collector/ap/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: Access Points
8 link: ""
9 categories:
10 - - data-collection.operating-systems
10 + - data-collection.networking
11 icon_filename: "network-wired.svg"
12 related_resources:
13 integrations:
src/go/plugin/go.d/collector/apcupsd/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.apc.com
10 icon_filename: apc.svg
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - ups
15 - apcupsd
src/go/plugin/go.d/collector/boinc/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: BOINC
9 link: https://boinc.berkeley.edu/
10 categories:
11 - - data-collection.databases
11 + - data-collection.applications
12 icon_filename: "bolt.svg"
13 related_resources:
14 integrations:
src/go/plugin/go.d/collector/dcgm/metadata.yaml
+2 -2
@@ -5,11 +5,11 @@ modules:
5 plugin_name: go.d.plugin
6 module_name: dcgm
7 monitored_instance:
8 - name: NVIDIA DCGM Exporter
8 + name: Nvidia Data Center GPU Manager (DCGM)
9 link: https://github.com/NVIDIA/dcgm-exporter
10 icon_filename: nvidia.svg
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - nvidia
15 - gpu
src/go/plugin/go.d/collector/dnsquery/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: ""
10 icon_filename: network-wired.svg
11 categories:
12 - - data-collection.networking
12 + - data-collection.synthetic-testing
13 keywords:
14 - dns
15 related_resources:
src/go/plugin/go.d/collector/docker/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 name: Docker
10 link: https://www.docker.com/
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 icon_filename: docker.svg
14 related_resources:
15 integrations:
src/go/plugin/go.d/collector/docker_engine/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 name: Docker Engine
10 link: https://docs.docker.com/engine/
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 icon_filename: docker.svg
14 related_resources:
15 integrations:
src/go/plugin/go.d/collector/dockerhub/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://hub.docker.com/
10 icon_filename: docker.svg
11 categories:
12 - - data-collection.containers-and-orchestration # FIXME
12 + - data-collection.containers-and-vms
13 keywords:
14 - dockerhub
15 related_resources:
src/go/plugin/go.d/collector/filecheck/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: ""
10 icon_filename: filesystem.svg
11 categories:
12 - - data-collection.applications
12 + - data-collection.synthetic-testing
13 keywords:
14 - files
15 - directories
src/go/plugin/go.d/collector/hddtemp/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: HDD temperature
9 link: https://linux.die.net/man/8/hddtemp
10 categories:
11 - - data-collection.hardware-and-iot
11 + - data-collection.storage
12 icon_filename: "hard-drive.svg"
13 related_resources:
14 integrations:
src/go/plugin/go.d/collector/intelgpu/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.intel.com/
10 icon_filename: microchip.svg
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - intel
15 - gpu
src/go/plugin/go.d/collector/k8s_apiserver/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://kubernetes.io/docs/concepts/overview/components/#kube-apiserver
10 icon_filename: kubernetes.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - kubernetes
15 - k8s
src/go/plugin/go.d/collector/k8s_kubelet/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://kubernetes.io/docs/concepts/overview/components/#kubelet
10 icon_filename: kubernetes.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - kubelet
15 - kubernetes
src/go/plugin/go.d/collector/k8s_kubeproxy/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://kubernetes.io/docs/concepts/overview/components/#kube-proxy
10 icon_filename: kubernetes.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - kubeproxy
15 - kubernetes
src/go/plugin/go.d/collector/k8s_state/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://kubernetes.io/
10 icon_filename: kubernetes.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - kubernetes
15 - k8s
src/go/plugin/go.d/collector/nvidia_smi/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.nvidia.com/en-us/
10 icon_filename: nvidia.svg
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - nvidia
15 - gpu
src/go/plugin/go.d/collector/prometheus/metadata.yaml
+48 -48
@@ -376,7 +376,7 @@ modules:
376 link: https://github.com/cilium/cilium
377 icon_filename: cilium.png
378 categories:
379 - - data-collection.containers-and-orchestration
379 + - data-collection.containers-and-vms
380 keywords: [ ]
381 overview:
382 <<: *overview
@@ -403,7 +403,7 @@ modules:
403 link: https://github.com/cilium/cilium
404 icon_filename: cilium.png
405 categories:
406 - - data-collection.containers-and-orchestration
406 + - data-collection.containers-and-vms
407 keywords: [ ]
408 overview:
409 <<: *overview
@@ -430,7 +430,7 @@ modules:
430 link: https://github.com/cilium/proxy
431 icon_filename: cilium.png
432 categories:
433 - - data-collection.containers-and-orchestration
433 + - data-collection.containers-and-vms
434 keywords: [ ]
435 overview:
436 <<: *overview
@@ -662,7 +662,7 @@ modules:
662 link: https://github.com/Axcient/freebsd-nfs-exporter
663 icon_filename: freebsd.svg
664 categories:
665 - - data-collection.operating-systems
665 + - data-collection.storage
666 keywords: [ ]
667 overview:
668 <<: *overview
@@ -877,7 +877,7 @@ modules:
877 link: https://grafana.com/
878 icon_filename: grafana.png
879 categories:
880 - - data-collection.cloud-and-devops
880 + - data-collection.applications
881 keywords: [ ]
882 overview:
883 <<: *overview
@@ -1117,7 +1117,7 @@ modules:
1117 link: https://github.com/omarsmak/kafka-consumer-lag-monitoring
1118 icon_filename: kafka.svg
1119 categories:
1120 - - data-collection.applications
1120 + - data-collection.databases
1121 keywords:
1122 - big data
1123 - stream processing
@@ -1342,7 +1342,7 @@ modules:
1342 link: https://github.com/inovex/mqtt_blackbox_exporter
1343 icon_filename: mqtt.svg
1344 categories:
1345 - - data-collection.databases
1345 + - data-collection.synthetic-testing
1346 keywords: [ ]
1347 overview:
1348 <<: *overview
@@ -1486,7 +1486,7 @@ modules:
1486 link: https://github.com/aexel90/hue_exporter
1487 icon_filename: hue.svg
1488 categories:
1489 - - data-collection.hardware-and-iot
1489 + - data-collection.hardware-and-sensors
1490 keywords: [ ]
1491 overview:
1492 <<: *overview
@@ -1513,7 +1513,7 @@ modules:
1513 link: https://github.com/containers/prometheus-podman-exporter
1514 icon_filename: podman.png
1515 categories:
1516 - - data-collection.containers-and-orchestration
1516 + - data-collection.containers-and-vms
1517 keywords: [ ]
1518 overview:
1519 <<: *overview
@@ -1540,7 +1540,7 @@ modules:
1540 link: https://github.com/prometheus-pve/prometheus-pve-exporter
1541 icon_filename: proxmox.png
1542 categories:
1543 - - data-collection.containers-and-orchestration
1543 + - data-collection.containers-and-vms
1544 keywords: [ ]
1545 overview:
1546 <<: *overview
@@ -1786,7 +1786,7 @@ modules:
1786 link: https://github.com/wywywywy/tesla-prometheus-exporter
1787 icon_filename: tesla.png
1788 categories:
1789 - - data-collection.hardware-and-iot
1789 + - data-collection.hardware-and-sensors
1790 keywords: [ ]
1791 overview:
1792 <<: *overview
@@ -2083,7 +2083,7 @@ modules:
2083 link: https://github.com/amd/amd_smi_exporter
2084 icon_filename: amd.svg
2085 categories:
2086 - - data-collection.hardware-and-iot
2086 + - data-collection.hardware-and-sensors
2087 keywords: [ ]
2088 overview:
2089 <<: *overview
@@ -2302,7 +2302,7 @@ modules:
2302 link: https://github.com/christmann/clm5ip_exporter/
2303 icon_filename: christelec.png
2304 categories:
2305 - - data-collection.hardware-and-iot
2305 + - data-collection.hardware-and-sensors
2306 keywords: [ ]
2307 overview:
2308 <<: *overview
@@ -2383,7 +2383,7 @@ modules:
2383 link: https://github.com/elonzh/clash_exporter
2384 icon_filename: clash.png
2385 categories:
2386 - - data-collection.web-servers-and-proxies
2386 + - data-collection.networking
2387 keywords: [ ]
2388 overview:
2389 <<: *overview
@@ -2470,7 +2470,7 @@ modules:
2470 link: https://github.com/GSI-HPC/prometheus-cluster-exporter
2471 icon_filename: lustre.png
2472 categories:
2473 - - data-collection.cloud-and-devops
2473 + - data-collection.storage
2474 keywords: [ ]
2475 overview:
2476 <<: *overview
@@ -2524,7 +2524,7 @@ modules:
2524 link: https://github.com/prometheus/collectd_exporter
2525 icon_filename: collectd.png
2526 categories:
2527 - - data-collection.cloud-and-devops
2527 + - data-collection.applications
2528 keywords: [ ]
2529 overview:
2530 <<: *overview
@@ -2551,7 +2551,7 @@ modules:
2551 link: https://github.com/jo-hannes/craftbeerpi_exporter
2552 icon_filename: craftbeer.png
2553 categories:
2554 - - data-collection.hardware-and-iot
2554 + - data-collection.hardware-and-sensors
2555 keywords: [ ]
2556 overview:
2557 <<: *overview
@@ -2691,7 +2691,7 @@ modules:
2691 link: https://github.com/mdlayher/keylight_exporter
2692 icon_filename: elgato.svg
2693 categories:
2694 - - data-collection.hardware-and-iot
2694 + - data-collection.hardware-and-sensors
2695 keywords: [ ]
2696 overview:
2697 <<: *overview
@@ -2718,7 +2718,7 @@ modules:
2718 link: https://github.com/peak-load/energomera_exporter
2719 icon_filename: energomera.png
2720 categories:
2721 - - data-collection.hardware-and-iot
2721 + - data-collection.hardware-and-sensors
2722 keywords: [ ]
2723 overview:
2724 <<: *overview
@@ -2935,7 +2935,7 @@ modules:
2935 link: https://github.com/lstrojny/homebridge-prometheus-exporter
2936 icon_filename: homebridge.svg
2937 categories:
2938 - - data-collection.hardware-and-iot
2938 + - data-collection.applications
2939 keywords: [ ]
2940 overview:
2941 <<: *overview
@@ -2962,7 +2962,7 @@ modules:
2962 link: https://github.com/rickardp/homey-prometheus-exporter
2963 icon_filename: homey.svg
2964 categories:
2965 - - data-collection.hardware-and-iot
2965 + - data-collection.applications
2966 keywords: [ ]
2967 overview:
2968 <<: *overview
@@ -2989,7 +2989,7 @@ modules:
2989 link: https://github.com/ibm-s390-cloud/k8s-cex-dev-plugin
2990 icon_filename: ibm.svg
2991 categories:
2992 - - data-collection.hardware-and-iot
2992 + - data-collection.hardware-and-sensors
2993 keywords: [ ]
2994 overview:
2995 <<: *overview
@@ -3016,7 +3016,7 @@ modules:
3016 link: https://github.com/zhmcclient/zhmc-prometheus-exporter
3017 icon_filename: ibm.svg
3018 categories:
3019 - - data-collection.hardware-and-iot
3019 + - data-collection.hardware-and-sensors
3020 keywords: [ ]
3021 overview:
3022 <<: *overview
@@ -3043,7 +3043,7 @@ modules:
3043 link: https://github.com/hairyhenderson/jarvis_exporter/
3044 icon_filename: jarvis.jpg
3045 categories:
3046 - - data-collection.hardware-and-iot
3046 + - data-collection.hardware-and-sensors
3047 keywords: [ ]
3048 overview:
3049 <<: *overview
@@ -3233,7 +3233,7 @@ modules:
3233 link: http://github.com/mesosphere/mesos_exporter
3234 icon_filename: mesos.svg
3235 categories:
3236 - - data-collection.applications
3236 + - data-collection.containers-and-vms
3237 keywords: [ ]
3238 overview:
3239 <<: *overview
@@ -3260,7 +3260,7 @@ modules:
3260 link: https://github.com/xperimental/flowercare-exporter
3261 icon_filename: xiaomi.svg
3262 categories:
3263 - - data-collection.hardware-and-iot
3263 + - data-collection.hardware-and-sensors
3264 keywords: [ ]
3265 overview:
3266 <<: *overview
@@ -3287,7 +3287,7 @@ modules:
3287 link: https://github.com/dernasherbrezon/modbusrtu_exporter
3288 icon_filename: modbus.svg
3289 categories:
3290 - - data-collection.hardware-and-iot
3290 + - data-collection.hardware-and-sensors
3291 keywords:
3292 - database
3293 - dbms
@@ -3371,7 +3371,7 @@ modules:
3371 link: https://github.com/wbollock/nagios_exporter
3372 icon_filename: nagios.png
3373 categories:
3374 - - data-collection.cloud-and-devops
3374 + - data-collection.applications
3375 keywords: [ ]
3376 overview:
3377 <<: *overview
@@ -3399,7 +3399,7 @@ modules:
3399 link: https://github.com/kenfdev/remo-exporter
3400 icon_filename: nature-remo.png
3401 categories:
3402 - - data-collection.hardware-and-iot
3402 + - data-collection.hardware-and-sensors
3403 keywords: [ ]
3404 overview:
3405 <<: *overview
@@ -3426,7 +3426,7 @@ modules:
3426 link: https://github.com/xperimental/netatmo-exporter
3427 icon_filename: netatmo.svg
3428 categories:
3429 - - data-collection.hardware-and-iot
3429 + - data-collection.hardware-and-sensors
3430 keywords:
3431 - network monitoring
3432 - network performance
@@ -3456,7 +3456,7 @@ modules:
3456 link: https://github.com/xperimental/nextcloud-exporter
3457 icon_filename: nextcloud.png
3458 categories:
3459 - - data-collection.cloud-and-devops
3459 + - data-collection.applications
3460 keywords:
3461 - cloud services
3462 - cloud computing
@@ -3678,7 +3678,7 @@ modules:
3678 link: https://github.com/TobiasDeBruijn/prometheus-p1-exporter
3679 icon_filename: dutch-electricity.png
3680 categories:
3681 - - data-collection.hardware-and-iot
3681 + - data-collection.hardware-and-sensors
3682 keywords: [ ]
3683 overview:
3684 <<: *overview
@@ -3733,7 +3733,7 @@ modules:
3733 link: https://github.com/JohnOrthoefer/pws-exporter
3734 icon_filename: wunderground.png
3735 categories:
3736 - - data-collection.hardware-and-iot
3736 + - data-collection.hardware-and-sensors
3737 keywords: [ ]
3738 overview:
3739 <<: *overview
@@ -3814,7 +3814,7 @@ modules:
3814 link: https://github.com/terradolor/prometheus-enviro-exporter
3815 icon_filename: pimorino.png
3816 categories:
3817 - - data-collection.hardware-and-iot
3817 + - data-collection.hardware-and-sensors
3818 keywords: [ ]
3819 overview:
3820 <<: *overview
@@ -3841,7 +3841,7 @@ modules:
3841 link: https://github.com/aashley/powerpal_exporter
3842 icon_filename: powerpal.png
3843 categories:
3844 - - data-collection.hardware-and-iot
3844 + - data-collection.hardware-and-sensors
3845 keywords: [ ]
3846 overview:
3847 <<: *overview
@@ -3922,7 +3922,7 @@ modules:
3922 link: https://github.com/andrewlow/radio-thermostat-exporter
3923 icon_filename: radiots.png
3924 categories:
3925 - - data-collection.hardware-and-iot
3925 + - data-collection.hardware-and-sensors
3926 keywords: [ ]
3927 overview:
3928 <<: *overview
@@ -3949,7 +3949,7 @@ modules:
3949 link: https://github.com/psyinfra/prometheus-raritan-pdu-exporter
3950 icon_filename: raritan.svg
3951 categories:
3952 - - data-collection.hardware-and-iot
3952 + - data-collection.hardware-and-sensors
3953 keywords: [ ]
3954 overview:
3955 <<: *overview
@@ -4003,7 +4003,7 @@ modules:
4003 link: https://github.com/alejandroscf/prometheus_salicru_exporter
4004 icon_filename: salicru.png
4005 categories:
4006 - - data-collection.hardware-and-iot
4006 + - data-collection.hardware-and-sensors
4007 keywords: [ ]
4008 overview:
4009 <<: *overview
@@ -4030,7 +4030,7 @@ modules:
4030 link: https://github.com/ejsuncy/sense_energy_prometheus_exporter
4031 icon_filename: sense.png
4032 categories:
4033 - - data-collection.hardware-and-iot
4033 + - data-collection.hardware-and-sensors
4034 keywords: [ ]
4035 overview:
4036 <<: *overview
@@ -4057,7 +4057,7 @@ modules:
4057 link: https://github.com/aexel90/shelly_exporter
4058 icon_filename: shelly.jpg
4059 categories:
4060 - - data-collection.hardware-and-iot
4060 + - data-collection.hardware-and-sensors
4061 keywords: [ ]
4062 overview:
4063 <<: *overview
@@ -4084,7 +4084,7 @@ modules:
4084 link: https://github.com/MarcusCalidus/s7-plc-exporter
4085 icon_filename: siemens.svg
4086 categories:
4087 - - data-collection.hardware-and-iot
4087 + - data-collection.hardware-and-sensors
4088 keywords: [ ]
4089 overview:
4090 <<: *overview
@@ -4138,7 +4138,7 @@ modules:
4138 link: https://github.com/dr0ps/sma_inverter_exporter
4139 icon_filename: sma.png
4140 categories:
4141 - - data-collection.hardware-and-iot
4141 + - data-collection.hardware-and-sensors
4142 keywords: [ ]
4143 overview:
4144 <<: *overview
@@ -4165,7 +4165,7 @@ modules:
4165 link: https://github.com/mweinelt/sml-exporter
4166 icon_filename: sml.png
4167 categories:
4168 - - data-collection.hardware-and-iot
4168 + - data-collection.hardware-and-sensors
4169 keywords: [ ]
4170 overview:
4171 <<: *overview
@@ -4219,7 +4219,7 @@ modules:
4219 link: https://gitlab.com/bhavin192/lsx-exporter
4220 icon_filename: solar.png
4221 categories:
4222 - - data-collection.hardware-and-iot
4222 + - data-collection.hardware-and-sensors
4223 keywords: [ ]
4224 overview:
4225 <<: *overview
@@ -4246,7 +4246,7 @@ modules:
4246 link: https://github.com/candlerb/solis_exporter
4247 icon_filename: solis.jpg
4248 categories:
4249 - - data-collection.hardware-and-iot
4249 + - data-collection.hardware-and-sensors
4250 keywords: [ ]
4251 overview:
4252 <<: *overview
@@ -4408,7 +4408,7 @@ modules:
4408 link: https://github.com/inosion/prometheus-sunspec-exporter
4409 icon_filename: sunspec.png
4410 categories:
4411 - - data-collection.hardware-and-iot
4411 + - data-collection.hardware-and-sensors
4412 keywords: [ ]
4413 overview:
4414 <<: *overview
@@ -4518,7 +4518,7 @@ modules:
4518 link: https://github.com/eko/tado-exporter
4519 icon_filename: tado.png
4520 categories:
4521 - - data-collection.hardware-and-iot
4521 + - data-collection.hardware-and-sensors
4522 keywords: [ ]
4523 overview:
4524 <<: *overview
@@ -4573,7 +4573,7 @@ modules:
4573 link: https://github.com/benclapp/tesla_wall_connector_exporter
4574 icon_filename: tesla.png
4575 categories:
4576 - - data-collection.hardware-and-iot
4576 + - data-collection.hardware-and-sensors
4577 keywords: [ ]
4578 overview:
4579 <<: *overview
src/go/plugin/go.d/collector/sensors/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://hwmon.wiki.kernel.org/lm_sensors
10 icon_filename: "microchip.svg"
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - sensors
15 - temperature
src/go/plugin/go.d/collector/smartctl/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: "https://linux.die.net/man/8/smartd"
10 icon_filename: "smart.png"
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.storage
13 keywords:
14 - smart
15 - S.M.A.R.T.
src/go/plugin/go.d/collector/snmp/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: ""
10 icon_filename: snmp.png
11 categories:
12 - - data-collection.applications
12 + - data-collection.networking
13 keywords:
14 # Protocol/generic
15 - snmp
src/go/plugin/go.d/collector/upsd/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: ""
10 icon_filename: plug-circle-bolt.svg
11 categories:
12 - - data-collection.hardware-and-iot
12 + - data-collection.hardware-and-sensors
13 keywords:
14 - ups
15 - nut
src/go/plugin/go.d/collector/vcsa/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://docs.vmware.com/en/VMware-vSphere/6.5/com.vmware.vsphere.vcsa.doc/GUID-223C2821-BD98-4C7A-936B-7DBE96291BA4.html
10 icon_filename: vmware.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - vmware
15 related_resources:
src/go/plugin/go.d/collector/vsphere/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.vmware.com/products/vcenter-server.html
10 icon_filename: vmware.svg
11 categories:
12 - - data-collection.containers-and-orchestration
12 + - data-collection.containers-and-vms
13 keywords:
14 - vmware
15 - esxi
src/go/plugin/go.d/collector/w1sensor/metadata.yaml
+1 -1
@@ -7,7 +7,7 @@ modules:
7 name: 1-Wire Sensors
8 link: "https://www.analog.com/en/product-category/1wire-temperature-sensors.html"
9 categories:
10 - - data-collection.hardware-and-iot
10 + - data-collection.hardware-and-sensors
11 icon_filename: "1-wire.png"
12 related_resources:
13 integrations:
src/go/plugin/ibm.d/modules/as400/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM i (AS/400)
9 link: https://www.ibm.com/products/power-systems
10 categories:
11 - - data-collection.infrastructure
11 + - data-collection.operating-systems
12 icon_filename: "ibm-i.svg"
13 related_resources:
14 integrations:
src/go/plugin/ibm.d/modules/db2/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM DB2
9 link: https://www.ibm.com/products/db2
10 categories:
11 - - data-collection.database-servers
11 + - data-collection.databases
12 icon_filename: "ibm.svg"
13 related_resources:
14 integrations:
src/go/plugin/ibm.d/modules/mq/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM MQ
9 link: https://www.ibm.com/products/mq
10 categories:
11 - - data-collection.message-brokers
11 + - data-collection.databases
12 icon_filename: "ibm-mq.svg"
13 related_resources:
14 integrations:
src/go/plugin/ibm.d/modules/websphere/jmx/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM WebSphere JMX
9 link: https://www.ibm.com/products/websphere-application-server
10 categories:
11 - - data-collection.application_servers
11 + - data-collection.web-servers-and-proxies
12 icon_filename: ""
13 related_resources:
14 integrations:
src/go/plugin/ibm.d/modules/websphere/mp/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM WebSphere MicroProfile
9 link: https://www.ibm.com/products/websphere-application-server
10 categories:
11 - - data-collection.application_servers
11 + - data-collection.web-servers-and-proxies
12 icon_filename: "ibm.svg"
13 related_resources:
14 integrations:
src/go/plugin/ibm.d/modules/websphere/pmi/metadata.yaml
+1 -1
@@ -8,7 +8,7 @@ modules:
8 name: IBM WebSphere PMI
9 link: https://www.ibm.com/docs/en/was
10 categories:
11 - - data-collection.application_servers
11 + - data-collection.web-servers-and-proxies
12 icon_filename: "ibm.svg"
13 related_resources:
14 integrations:
src/go/plugin/scripts.d/modules/nagios/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.nagios-plugins.org/
10 icon_filename: nagios.svg
11 categories:
12 - - data-collection.synthetic-checks
12 + - data-collection.synthetic-testing
13 related_resources:
14 integrations:
15 list: []
src/go/plugin/scripts.d/modules/scheduler/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: ""
10 icon_filename: netdata.svg
11 categories:
12 - - data-collection.generic-data-collection
12 + - data-collection.applications
13 related_resources:
14 integrations:
15 list:
src/go/plugin/scripts.d/modules/zabbix/metadata.yaml
+1 -1
@@ -9,7 +9,7 @@ modules:
9 link: https://www.zabbix.com/
10 icon_filename: zabbix.svg
11 categories:
12 - - data-collection.generic-data-collection
12 + - data-collection.applications
13 related_resources:
14 integrations:
15 list: []