From eaef057d24dda12326d1ee084c578e36deaa6730 Mon Sep 17 00:00:00 2001 From: fotis Date: Mon, 2 Feb 2026 11:34:30 +0200 Subject: [PATCH 1/3] port the map logic from csv to yaml --- .learn_environment/ingest-requirements.txt | 3 +- README.md | 25 +- ingest/autogenerateRedirects.py | 5 +- ingest/generated_map.yaml | 7791 ++++++++++++++++++++ ingest/ingest.py | 180 +- ingest/one_commit_back_file-dict.yaml | 1520 ++++ 6 files changed, 9491 insertions(+), 33 deletions(-) create mode 100644 ingest/generated_map.yaml create mode 100644 ingest/one_commit_back_file-dict.yaml diff --git a/.learn_environment/ingest-requirements.txt b/.learn_environment/ingest-requirements.txt index d3b8293f8f..29e43b9a45 100644 --- a/.learn_environment/ingest-requirements.txt +++ b/.learn_environment/ingest-requirements.txt @@ -5,4 +5,5 @@ gitpython mergedeep pandas numpy -retrypy \ No newline at end of file +retrypy +pyyaml \ No newline at end of file diff --git a/README.md b/README.md index 467c895756..2d5afb4c68 100644 --- a/README.md +++ b/README.md @@ -90,7 +90,7 @@ The ingest script is a python script and has its dependencies (separate from the pip install -r .learn_environment/ingest-requirements.txt ``` -6. The organization of the files is handled by the [`map.csv` file](https://github.com/netdata/netdata/blob/master/docs/.map/map.csv), that contains metadata for every file. That file should only be edited by members of the Netdata team. +6. The organization of the files is handled by the [`map.yaml` file](https://github.com/netdata/netdata/blob/master/docs/.map/map.yaml), that contains metadata for every file. That file should only be edited by members of the Netdata team. 7. Run the ingest process to fetch the documents you are working on from one or multiple repos. @@ -98,8 +98,25 @@ The ingest script is a python script and has its dependencies (separate from the python ingest/ingest.py --repos /: ``` - for example, let's assume that you made some changes in the markdown files of `netdata/netdata` repo (branch: patch1) - and on your own fork `user1/go.d.plugin` repo (branch: user1-patch). + You can also use local paths instead of GitHub repos: + + ```bash + python ingest/ingest.py --repos /path/to/local/netdata + ``` + + Or specify the repo name explicitly for a local path: + + ```bash + python ingest/ingest.py --repos netdata:/path/to/local/netdata + ``` + + Examples combining GitHub and local paths: + + ```bash + python ingest/ingest.py --repos netdata/netdata:patch1 /path/to/local/go.d.plugin + ``` + + Or if you have your own fork: ```bash python ingest/ingest.py --repos netdata/netdata:patch1 user1/go.d.plugin:user1-patch @@ -148,7 +165,7 @@ This action runs at 14:00 UTC every day. If there are changes to any documentation file, the GitHub Action creates a PR that is then reviewed by a member of the Netdata team. The action can be configured to automatically assign one or more reviewers. -To enable automatic assignments, uncomment the `# reviewers:` line at the end of [`ingest.yml`](.github/ingest.yml) and add the appropriate GitHub username(s)either space or comma-separated. +To enable automatic assignments, uncomment the `# reviewers:` line at the end of [`ingest.yml`](/.github/workflows/ingest.yml) and add the appropriate GitHub username(s)either space or comma-separated. ## Update news on the Learn homepage diff --git a/ingest/autogenerateRedirects.py b/ingest/autogenerateRedirects.py index 1f1c643d6e..1ccbe225c6 100644 --- a/ingest/autogenerateRedirects.py +++ b/ingest/autogenerateRedirects.py @@ -10,6 +10,7 @@ import git import json import ast +import yaml import autogenerateSupportedIntegrationsPage as genIntPage import pandas as pd import numpy as np @@ -125,7 +126,9 @@ def addMovedRedirects(mapping): # Reads one_commit_back, that is how the map was before these changes, # and has the current mapping from the mapping variable. - one_commit_back = pd.read_csv("./ingest/one_commit_back_file-dict.tsv", sep='\t').set_index('custom_edit_url').T.to_dict('dict') + with open("./ingest/one_commit_back_file-dict.yaml", "r", encoding="utf-8") as fh: + redirect_list = yaml.safe_load(fh) or [] + one_commit_back = {item['custom_edit_url']: item for item in redirect_list} redirects = {} diff --git a/ingest/generated_map.yaml b/ingest/generated_map.yaml new file mode 100644 index 0000000000..4c15b295f3 --- /dev/null +++ b/ingest/generated_map.yaml @@ -0,0 +1,7791 @@ +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/welcome-to-netdata.md + sidebar_label: Welcome to Netdata + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md + sidebar_label: Enterprise Evaluation Guide + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: + - real-time observability + - infrastructure monitoring + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/realtime-monitoring.md + sidebar_label: Real-time Monitoring + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/scalability.md + sidebar_label: Scalability + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/COLLECTORS.md + sidebar_label: Monitor Anything + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: null + description: Netdata gathers real-time metrics from hundreds of data sources using + collectors. Most require zero configuration and are pre-configured out of the + box. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/fleet-configuration-management.md + sidebar_label: Fleet Deployment and Configuration Management + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/reporting.md + sidebar_label: Reporting + learn_status: Published + learn_rel_path: Welcome to Netdata + keywords: + - power bi + - tableau + - looker + - qlik + - reporting + - business intelligence + - bi + - grafana + - ai insights + - mcp + - executive reports + - board reporting + - data export + description: Extract infrastructure insights for stakeholders and BI tools using + AI Insights, AI assistants (MCP), Grafana, or data export to Power BI, Tableau, + and other analytics platforms. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/getting-started-netdata/guide.md + sidebar_label: Getting Started + learn_status: Published + learn_rel_path: root + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/Demo-Sites.md + sidebar_label: Live Demo + learn_status: Published + learn_rel_path: root + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/standalone-deployment.md + sidebar_label: Netdata Agent + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/versions-and-platforms.md + sidebar_label: Versions & Platforms + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: Present all the supported platform in the Netdata solution + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/README.md + sidebar_label: Quickstart Deployment + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/README.md + sidebar_label: Installation + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kickstart.md + sidebar_label: Linux + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Linux + keywords: null + description: The kickstart.sh script installs Netdata from source, including all + dependencies required to connect to Netdata Cloud, with a single command. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/packages.md + sidebar_label: Native Linux Distribution packages + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Linux + keywords: null + description: Instructions for how to install Netdata using native DEB or RPM packages. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/makeself/README.md + sidebar_label: Static binary Linux Packages + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Linux + keywords: null + description: Users can build the static 64-bit binary package that we ship with + every release of the open-source Netdata Agent for debugging or specialize purposes. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/switching-install-types.md + sidebar_label: Switch Install Types and Release Channels + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Linux + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/offline.md + sidebar_label: Offline systems + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Linux + keywords: null + description: Install the Netdata Agent on offline/air gapped systems to benefit + from real-time, per-second monitoring without connecting to the internet. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/windows/WINDOWS_INSTALLER.md + sidebar_label: Windows + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Windows + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/install/windows-release-channels.md + sidebar_label: Switching Install Types and Release Channels + learn_status: Published + learn_rel_path: Netdata Agent/Installation/Windows + keywords: null + description: Guide to choosing and switching between different Netdata Windows installation + methods and release channels + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/docker/README.md + sidebar_label: Docker + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kubernetes.md + sidebar_label: Kubernetes + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: Deploy Netdata to monitor a Kubernetes cluster to monitor the health, + performance, resource utilization, and application metrics of a Kubernetes cluster + in real time. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/helmchart/edit/master/charts/netdata/README.md + sidebar_label: Kubernetes Helm chart reference + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/macos.md + sidebar_label: macOS + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/freebsd.md + sidebar_label: FreeBSD + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: Install Netdata on FreeBSD to monitor the health and performance of + bare metal or VMs with thousands of real-time, per-second metrics. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/pfsense.md + sidebar_label: pfSense + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: Install Netdata on pfSense to monitor the health and performance of + firewalls with thousands of real-time, per-second metrics. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/synology.md + sidebar_label: Synology + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: The Netdata Agent can be installed on AMD64-compatible NAS systems + using the 64-bit pre-compiled static binary. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/ansible.md + sidebar_label: Ansible + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: Deploy an infrastructure monitoring solution in minutes with the Netdata + Agent and Ansible. Use and customize a simple playbook for monitoring as code. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/aws.md + sidebar_label: AWS + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: The Netdata Agent runs on all popular cloud providers, but often requires + additional steps and configuration for full functionality. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/azure.md + sidebar_label: Azure + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: The Netdata Agent runs on all popular cloud providers, but often requires + additional steps and configuration for full functionality. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/gcp.md + sidebar_label: GCP + learn_status: Published + learn_rel_path: Netdata Agent/Installation + keywords: null + description: The Netdata Agent runs on all popular cloud providers, but often requires + additional steps and configuration for full functionality. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/maintenance-operations-on-netdata-agents.md + sidebar_label: Maintenance + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/start-stop-restart.md + sidebar_label: Service Control + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: Manage the Netdata Agent daemon, load configuration changes, and troubleshoot + stuck processes on systemd and non-systemd nodes. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UPDATE.md + sidebar_label: Update + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: If you opted out of automatic updates, you need to update your Netdata + Agent to the latest nightly or stable version. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/REINSTALL.md + sidebar_label: Reinstall + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: Troubleshooting installation issues or force an update of the Netdata + Agent by reinstalling it using the same method you used during installation. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UNINSTALL.md + sidebar_label: Uninstall + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: If you are no longer interested in using the Netdata Agent, use the + self-contained uninstaller to remove all traces of binaries and configuration + files. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/backup-and-restore-an-agent.md + sidebar_label: Backup and restore an Agent + learn_status: Published + learn_rel_path: Netdata Agent/Maintenance + keywords: null + description: What actions you need to do to backup and Agent and restore it. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/README.md + sidebar_label: Resource Utilization + learn_status: Published + learn_rel_path: Netdata Agent/Resource Utilization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/cpu-requirements.md + sidebar_label: CPU + learn_status: Published + learn_rel_path: Netdata Agent/Resource Utilization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/ram-requirements.md + sidebar_label: RAM + learn_status: Published + learn_rel_path: Netdata Agent/Resource Utilization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/bandwidth-requirements.md + sidebar_label: Bandwidth + learn_status: Published + learn_rel_path: Netdata Agent/Resource Utilization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/disk-requirements-and-retention.md + sidebar_label: Disk & Retention + learn_status: Published + learn_rel_path: Netdata Agent/Resource Utilization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/README.md + sidebar_label: Configuration + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: Netdata is zero-configuration for most users, but complex infrastructures + may require you to tweak some of the Agent's granular settings. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/dynamic-configuration.md + sidebar_label: Dynamic Configuration Manager + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/config/README.md + sidebar_label: Daemon + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: The Netdata Agent's daemon is installed preconfigured to collect thousands + of metrics every second, but is highly configurable for real-world workloads. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/CONFIGURATION.md + sidebar_label: Database + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: With a single configuration change, the Netdata Agent can store days, + weeks, or months of metrics at its famous per-second granularity. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/registry/CONFIGURATION.md + sidebar_label: Registry + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: Netdata utilizes a central registry of machines/person GUIDs, URLs, + and opt-in account information to provide unified cross-server dashboards. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/securing-netdata-agents.md + sidebar_label: Securing Agents + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents + keywords: null + description: Your data and systems are safe with Netdata, but we recommend a few + easy ways to improve the security of your infrastructure. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/server/README.md + sidebar_label: Web Server Reference + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents + keywords: null + description: The Netdata Agent's local static-threaded web server serves dashboards + and real-time visualizations with security and DDoS protection. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/README.md + sidebar_label: Running the Agent behind a reverse proxy + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md + sidebar_label: Nginx + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md + sidebar_label: HAProxy + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md + sidebar_label: Apache + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md + sidebar_label: Lighttpd v1.4.x + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md + sidebar_label: Caddy + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-h2o.md + sidebar_label: H2O + learn_status: Published + learn_rel_path: Netdata Agent/Configuration/Securing Agents/Running the Agent behind + a reverse proxy + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/optimize-the-netdata-agents-performance.md + sidebar_label: Performance Optimization + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: While the Netdata Agent is designed to monitor a system with only 1% + CPU, you can optimize its performance for low-resource systems. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts.md + sidebar_label: Organize systems, metrics, and alerts + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata.md + sidebar_label: Using custom CA certificates with Netdata + learn_status: Published + learn_rel_path: Netdata Agent/Configuration + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/README.md + sidebar_label: Daemon + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/README.md + sidebar_label: Database + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/README.md + sidebar_label: Logging + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/registry/README.md + sidebar_label: Registry + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: Netdata utilizes a central registry of machines/person GUIDs, URLs, + and opt-in account information to provide unified cross-server dashboards. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/cli/README.md + sidebar_label: Agent CLI + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: The Netdata Agent includes a command-line experience for reloading + health configuration, reopening log files, halting the daemon, and more. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/node-identities.md + sidebar_label: Node Identities + learn_status: Published + learn_rel_path: Netdata Agent + keywords: + - guid + - machine guid + - node id + - claimed id + - identity + description: Understanding how Netdata identifies nodes across Agents Parents and + Cloud + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/vm-templates.md + sidebar_label: VM Templates + learn_status: Published + learn_rel_path: Netdata Agent + keywords: + - vm + - template + - clone + - kvm + - proxmox + - vagrant + - terraform + description: Prepare VM templates so each clone gets a unique Netdata identity + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/anonymous-telemetry-events.md + sidebar_label: Anonymous telemetry events + learn_status: Published + learn_rel_path: Netdata Agent + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-with-centralization-points.md + sidebar_label: Netdata Parents + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/best-practices.md + sidebar_label: Parent Configuration Best Practices + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/streaming/README.md + sidebar_label: Parent-Child Configuration Reference + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-strategies.md + sidebar_label: Configuration Examples + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/streaming-routing.md + sidebar_label: Streaming Routing Reference + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md + sidebar_label: Node Types and Lifecycle Reference + learn_status: Published + learn_rel_path: Netdata Parents + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/README.md + sidebar_label: Metrics Centralization Points + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/configuration.md + sidebar_label: Configuring Metrics Centralization Points + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/sizing-netdata-parents.md + sidebar_label: Sizing Netdata Parents + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: null + sidebar_label: Optimizing Netdata Children + learn_status: Unpublished + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents.md + sidebar_label: Clustering and High Availability of Netdata Parents + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/replication-of-past-samples.md + sidebar_label: Replication of Past Samples + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/faq.md + sidebar_label: FAQ on Metrics Centralization Points + learn_status: Published + learn_rel_path: Netdata Parents/Metrics Centralization Points + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/README.md + sidebar_label: Netdata Cloud + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/claim/README.md + sidebar_label: Connect Agent + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md + sidebar_label: Spaces and Rooms + learn_status: Published + learn_rel_path: Netdata Cloud/Spaces and Rooms + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-rule-based-room-assignment.md + sidebar_label: Node Rule-Based Room Assignment + learn_status: Published + learn_rel_path: Netdata Cloud/Spaces and Rooms + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/versions.md + sidebar_label: Versions + learn_status: Unpublished + learn_rel_path: Netdata Cloud/Versions + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/README.md + sidebar_label: Authentication & Authorization + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/enterprise-sso-authentication.md + sidebar_label: Enterprise SSO Authentication + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/oidc.md + sidebar_label: OIDC + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization/Cloud Authentication + & Authorization Integrations + keywords: '[''sso'', ''oidc'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S + metadata.yaml FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/okta_sso.md + sidebar_label: Okta SSO + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization/Cloud Authentication + & Authorization Integrations + keywords: '[''sso'', ''okta'', ''okta-sso'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S + metadata.yaml FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/scim.md + sidebar_label: SCIM + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization/Cloud Authentication + & Authorization Integrations + keywords: '[''scim'', ''identity-management'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S + metadata.yaml FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/role-based-access-model.md + sidebar_label: Role-based access model + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization + keywords: null + description: Explanation of Netdata roles and permissions linked to them + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/api-tokens.md + sidebar_label: API Tokens + learn_status: Published + learn_rel_path: Netdata Cloud/Authentication & Authorization + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/view-plan-and-billing.md + sidebar_label: Netdata Plans & Billing + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/aclk/README.md + sidebar_label: Agent-Cloud Link (ACLK) + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: The Agent-Cloud link (ACLK) is the mechanism responsible for connecting + a Netdata agent to Netdata Cloud. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/remove-node.md + sidebar_label: Remove Agent + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-states-and-transitions.md + sidebar_label: Node States and Transitions + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: + - node states + - live + - stale + - offline + - unseen + - transitions + description: Understanding node connection states and state transitions in Netdata + Cloud + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/unclaim-reclaim-node.md + sidebar_label: Unclaim and Reclaim a Node + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/delete/netdata/account.md + sidebar_label: Account Deletion + learn_status: Published + learn_rel_path: Netdata Cloud + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/README.md + sidebar_label: Netdata Cloud On-Prem + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/installation.md + sidebar_label: Installation + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/sbom.md + sidebar_label: Software Bill of Materials + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/image-signature-verification.md + sidebar_label: Container Image Signature Verification + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/hardening-guide.md + sidebar_label: Security Hardening Guide + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/netpol.md + sidebar_label: Kubernetes Network Policy Configuration + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/poc-without-k8s.md + sidebar_label: PoC without K8s + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/ecr-mirror.md + sidebar_label: Mirroring image registry + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/troubleshooting.md + sidebar_label: Troubleshooting + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/netdata-cloud-onprem/RELEASE-NOTES.md + sidebar_label: Release Notes + learn_status: Published + learn_rel_path: Netdata Cloud On-Prem + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/README.md + sidebar_label: Collecting Metrics + learn_status: Published + learn_rel_path: Collecting Metrics + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/REFERENCE.md + sidebar_label: Collectors configuration + learn_status: Published + learn_rel_path: Collecting Metrics + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/agent-service-discovery/edit/master/README.md + sidebar_label: Service discovery + learn_status: Published + learn_rel_path: Collecting Metrics + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/statsd.plugin/README.md + sidebar_label: StatsD + learn_status: Published + learn_rel_path: Collecting Metrics + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/crates/netdata-otel/otel-plugin/README.md + sidebar_label: OpenTelemetry Metrics + learn_status: Published + learn_rel_path: Collecting Metrics/OpenTelemetry + keywords: null + description: Ingesting storing and visualizing OpenTelemetry metrics + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/system-metrics.md + sidebar_label: System metrics + learn_status: Unpublished + learn_rel_path: Collecting Metrics + keywords: null + description: Netdata collects thousands of metrics from physical and virtual systems, + IoT/edge devices, and containers with zero configuration. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/application-metrics.md + sidebar_label: Application metrics + learn_status: Unpublished + learn_rel_path: Collecting Metrics + keywords: null + description: Monitor and troubleshoot every application on your infrastructure with + per-second metrics, zero configuration, and meaningful charts. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/container-metrics.md + sidebar_label: Container metrics + learn_status: Unpublished + learn_rel_path: Collecting Metrics + keywords: null + description: Use Netdata to collect per-second utilization and application-level + metrics from Linux/Docker containers and Kubernetes clusters. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/profile-format.md + sidebar_label: SNMP Profile Format + learn_status: Published + learn_rel_path: Collecting Metrics + keywords: null + description: Learn how Netdata’s SNMP collector uses profiles. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/alamos_fe2_server.md + sidebar_label: Alamos FE2 server + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/README.md + sidebar_label: Go applications (EXPVAR) + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: '[''go'', ''expvar'', ''application'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_pagespeed.md + sidebar_label: Google Pagespeed + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: '[''cloud services'', ''cloud computing'', ''google cloud services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gpsd.md + sidebar_label: gpsd + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_aix_systems_njmon.md + sidebar_label: IBM AIX systems Njmon + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jmx.md + sidebar_label: JMX + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nrpe_daemon.md + sidebar_label: NRPE daemon + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/README.md + sidebar_label: phpDaemon + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: '[''phpdaemon'', ''php'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sysload.md + sidebar_label: Sysload + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vscode.md + sidebar_label: VSCode + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/yourls_url_shortener.md + sidebar_label: YOURLS URL Shortener + learn_status: Published + learn_rel_path: Collecting Metrics/APM + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/README.md + sidebar_label: Fail2ban + learn_status: Published + learn_rel_path: Collecting Metrics/Authentication and Authorization + keywords: '[''fail2ban'', ''security'', ''authentication'', ''authorization'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/README.md + sidebar_label: FreeRADIUS + learn_status: Published + learn_rel_path: Collecting Metrics/Authentication and Authorization + keywords: '[''freeradius'', ''radius'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/README.md + sidebar_label: OpenLDAP + learn_status: Published + learn_rel_path: Collecting Metrics/Authentication and Authorization + keywords: '[''openldap'', ''RBAC'', ''Directory access'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radius.md + sidebar_label: RADIUS + learn_status: Published + learn_rel_path: Collecting Metrics/Authentication and Authorization + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tacacs.md + sidebar_label: TACACS + learn_status: Published + learn_rel_path: Collecting Metrics/Authentication and Authorization + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/chia.md + sidebar_label: Chia + learn_status: Published + learn_rel_path: Collecting Metrics/Blockchain Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cryptowatch.md + sidebar_label: Cryptowatch + learn_status: Published + learn_rel_path: Collecting Metrics/Blockchain Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/README.md + sidebar_label: Go-ethereum + learn_status: Published + learn_rel_path: Collecting Metrics/Blockchain Servers + keywords: '[''geth'', ''ethereum'', ''blockchain'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/concourse.md + sidebar_label: Concourse + learn_status: Published + learn_rel_path: Collecting Metrics/CICD Platforms + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gitlab_runner.md + sidebar_label: GitLab Runner + learn_status: Published + learn_rel_path: Collecting Metrics/CICD Platforms + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jenkins.md + sidebar_label: Jenkins + learn_status: Published + learn_rel_path: Collecting Metrics/CICD Platforms + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/README.md + sidebar_label: Puppet + learn_status: Published + learn_rel_path: Collecting Metrics/CICD Platforms + keywords: '[''puppet'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_ec2_compute_instances.md + sidebar_label: AWS EC2 Compute instances + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''aws services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_quota.md + sidebar_label: AWS Quota + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''aws services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloudwatch.md + sidebar_label: CloudWatch + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''scalability'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gcp_gce.md + sidebar_label: GCP GCE + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_cloud_platform.md + sidebar_label: Google Cloud Platform + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''scalability'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_stackdriver.md + sidebar_label: Google Stackdriver + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''google cloud services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/linode.md + sidebar_label: Linode + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lustre_metadata.md + sidebar_label: Lustre metadata + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextcloud_servers.md + sidebar_label: Nextcloud servers + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: '[''cloud services'', ''cloud computing'', ''scalability'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/zerto.md + sidebar_label: Zerto + learn_status: Published + learn_rel_path: Collecting Metrics/Cloud Provider Managed + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/containers.md + sidebar_label: Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''containers'', ''docker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/README.md + sidebar_label: Docker + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/README.md + sidebar_label: Docker Engine + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''docker'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/README.md + sidebar_label: Docker Hub repository + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''dockerhub'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/libvirt_containers.md + sidebar_label: Libvirt Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''libvirt'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/lxc_containers.md + sidebar_label: LXC Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''lxc'', ''lxd'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/ovirt_containers.md + sidebar_label: oVirt Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''ovirt'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/podman.md + sidebar_label: Podman + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/proxmox_containers.md + sidebar_label: Proxmox Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''proxmox'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proxmox_ve.md + sidebar_label: Proxmox VE + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/README.md + sidebar_label: vCenter Server Appliance + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''vmware'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/virtual_machines.md + sidebar_label: Virtual Machines + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''vms'', ''virtualization'', ''container'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/README.md + sidebar_label: VMware vCenter Server + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: '[''vmware'', ''esxi'', ''vcenter'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/README.md + sidebar_label: Xen XCP-ng + learn_status: Published + learn_rel_path: Collecting Metrics/Containers and VMs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/4d_server.md + sidebar_label: 4D Server + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_rds.md + sidebar_label: AWS RDS + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''cloud services'', ''cloud computing'', ''aws services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/README.md + sidebar_label: BOINC + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''boinc'', ''distributed'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/README.md + sidebar_label: Cassandra + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''nosql'', ''dbms'', ''db'', ''database'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/README.md + sidebar_label: ClickHouse + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''database'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clustercontrol_cmon.md + sidebar_label: ClusterControl CMON + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/README.md + sidebar_label: CockroachDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''cockroachdb'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/README.md + sidebar_label: Couchbase + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''couchbase'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/README.md + sidebar_label: CouchDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''couchdb'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hana.md + sidebar_label: HANA + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/influxdb.md + sidebar_label: InfluxDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''database'', ''dbms'', ''data storage'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/mariadb.md + sidebar_label: MariaDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''mysql'', ''maria'', ''mariadb'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/README.md + sidebar_label: MaxScale + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''maria'', ''mariadb'', ''maxscale'', ''database'', ''db'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/README.md + sidebar_label: Memcached + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''memcached'', ''memcache'', ''cache'', ''database'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/README.md + sidebar_label: Microsoft SQL Server + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''mssql'', ''sql server'', ''microsoft'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/README.md + sidebar_label: MongoDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''mongodb'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/README.md + sidebar_label: MySQL + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''mysql'', ''maria'', ''mariadb'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/README.md + sidebar_label: Oracle DB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''database'', ''oracle'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/patroni.md + sidebar_label: Patroni + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/percona_mysql.md + sidebar_label: Percona MySQL + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''mysql'', ''maria'', ''mariadb'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgbackrest.md + sidebar_label: pgBackRest + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/README.md + sidebar_label: PgBouncer + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''pgbouncer'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgpool-ii.md + sidebar_label: Pgpool-II + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/README.md + sidebar_label: Pika + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''pika'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/README.md + sidebar_label: PostgreSQL + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''postgres'', ''postgresql'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/README.md + sidebar_label: ProxySQL + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''proxysql'', ''databases'', ''sql'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/README.md + sidebar_label: Redis + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''redis'', ''databases'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/README.md + sidebar_label: RethinkDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''rethinkdb'', ''database'', ''db'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/README.md + sidebar_label: Riak KV + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''database'', ''nosql'', ''big data'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/scylladb.md + sidebar_label: ScyllaDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/README.md + sidebar_label: SQL databases (generic) + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''sql'', ''mysql'', ''maria'', ''postgres'', ''postgresql'', + ''pgx'', ''oracle'', ''sqlserver'', ''mssql'', ''generic'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vertica.md + sidebar_label: Vertica + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/warp10.md + sidebar_label: Warp10 + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/README.md + sidebar_label: YugabyteDB + learn_status: Published + learn_rel_path: Collecting Metrics/Databases + keywords: '[''db'', ''database'', ''yb'', ''yugabyte'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/README.md + sidebar_label: Gearman + learn_status: Published + learn_rel_path: Collecting Metrics/Distributed Computing Systems + keywords: '[''gearman'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/README.md + sidebar_label: CoreDNS + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''coredns'', ''dns'', ''kubernetes'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/README.md + sidebar_label: DNS query + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dnsbl.md + sidebar_label: DNSBL + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/README.md + sidebar_label: DNSdist + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''dnsdist'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/README.md + sidebar_label: Dnsmasq + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''dnsmasq'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/README.md + sidebar_label: Dnsmasq DHCP + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''dnsmasq'', ''dhcp'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/README.md + sidebar_label: ISC DHCP + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''dhcpd'', ''dhcp'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextdns.md + sidebar_label: NextDNS + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/README.md + sidebar_label: NSD + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''nsd'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/README.md + sidebar_label: Pi-hole + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''pihole'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/README.md + sidebar_label: PowerDNS Authoritative Server + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''powerdns'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/README.md + sidebar_label: PowerDNS Recursor + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''powerdns'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/README.md + sidebar_label: Unbound + learn_status: Published + learn_rel_path: Collecting Metrics/DNS and DHCP Servers + keywords: '[''unbound'', ''dns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_cachestat.md + sidebar_label: eBPF Cachestat + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''Page cache'', ''Hit ratio'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_dcstat.md + sidebar_label: eBPF DCstat + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''Directory Cache'', ''File system'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_disk.md + sidebar_label: eBPF Disk + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''hard Disk'', ''eBPF'', ''latency'', ''partition'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filedescriptor.md + sidebar_label: eBPF Filedescriptor + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''file'', ''eBPF'', ''fd'', ''open'', ''close'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filesystem.md + sidebar_label: eBPF Filesystem + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''Filesystem'', ''ext4'', ''btrfs'', ''nfs'', ''xfs'', ''zfs'', ''eBPF'', + ''latency'', ''I/O'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_hardirq.md + sidebar_label: eBPF Hardirq + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''HardIRQ'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mdflush.md + sidebar_label: eBPF MDflush + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''MD'', ''RAID'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mount.md + sidebar_label: eBPF Mount + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''mount'', ''umount'', ''device'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_oomkill.md + sidebar_label: eBPF OOMkill + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''application'', ''memory'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_process.md + sidebar_label: eBPF Process + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''Memory'', ''plugin'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_processes.md + sidebar_label: eBPF Processes + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''thread'', ''fork'', ''process'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_shm.md + sidebar_label: eBPF SHM + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''syscall'', ''shared memory'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_socket.md + sidebar_label: eBPF Socket + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''TCP'', ''UDP'', ''bandwidth'', ''server'', ''connection'', ''socket'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_softirq.md + sidebar_label: eBPF SoftIRQ + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''SoftIRQ'', ''eBPF'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_swap.md + sidebar_label: eBPF SWAP + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''SWAP'', ''memory'', ''eBPF'', ''Hard Disk'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_sync.md + sidebar_label: eBPF Sync + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''syscall'', ''eBPF'', ''hard disk'', ''memory'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_vfs.md + sidebar_label: eBPF VFS + learn_status: Published + learn_rel_path: Collecting Metrics/eBPF + keywords: '[''virtual'', ''filesystem'', ''eBPF'', ''I/O'', ''files'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md + sidebar_label: dev.cpu.0.freq + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md + sidebar_label: dev.cpu.temperature + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/devstat.md + sidebar_label: devstat + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_nfs.md + sidebar_label: FreeBSD NFS + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_rctl-racct.md + sidebar_label: FreeBSD RCTL-RACCT + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getifaddrs.md + sidebar_label: getifaddrs + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getmntinfo.md + sidebar_label: getmntinfo + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/hw.intrcnt.md + sidebar_label: hw.intrcnt + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/ipfw.md + sidebar_label: ipfw + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.cp_time.md + sidebar_label: kern.cp_time + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.msq.md + sidebar_label: kern.ipc.msq + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.sem.md + sidebar_label: kern.ipc.sem + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.shm.md + sidebar_label: kern.ipc.shm + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md + sidebar_label: net.inet.icmp.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md + sidebar_label: net.inet.ip.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md + sidebar_label: net.inet.tcp.states + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md + sidebar_label: net.inet.tcp.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md + sidebar_label: net.inet.udp.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md + sidebar_label: net.inet6.icmp6.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md + sidebar_label: net.inet6.ip6.stats + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.isr.md + sidebar_label: net.isr + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/system.ram.md + sidebar_label: system.ram + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/uptime.md + sidebar_label: uptime + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.loadavg.md + sidebar_label: vm.loadavg + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md + sidebar_label: vm.stats.sys.v_intr + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md + sidebar_label: vm.stats.sys.v_soft + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md + sidebar_label: vm.stats.sys.v_swtch + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md + sidebar_label: vm.stats.vm.v_pgfaults + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md + sidebar_label: vm.stats.vm.v_swappgs + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.swap_info.md + sidebar_label: vm.swap_info + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.vmtotal.md + sidebar_label: vm.vmtotal + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/zfs.md + sidebar_label: zfs + learn_status: Published + learn_rel_path: Collecting Metrics/FreeBSD + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proftpd.md + sidebar_label: ProFTPD + learn_status: Published + learn_rel_path: Collecting Metrics/FTP Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bungeecord.md + sidebar_label: BungeeCord + learn_status: Published + learn_rel_path: Collecting Metrics/Gaming + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/minecraft.md + sidebar_label: Minecraft + learn_status: Published + learn_rel_path: Collecting Metrics/Gaming + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/README.md + sidebar_label: SpigotMC + learn_status: Published + learn_rel_path: Collecting Metrics/Gaming + keywords: '[''minecraft'', ''spigotmc'', ''spigot'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/steam.md + sidebar_label: Steam + learn_status: Published + learn_rel_path: Collecting Metrics/Gaming + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openweathermap.md + sidebar_label: OpenWeatherMap + learn_status: Published + learn_rel_path: Collecting Metrics/Generic Collecting Metrics + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/README.md + sidebar_label: Pandas + learn_status: Published + learn_rel_path: Collecting Metrics/Generic Collecting Metrics + keywords: '[''pandas'', ''python'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/README.md + sidebar_label: Prometheus endpoint + learn_status: Published + learn_rel_path: Collecting Metrics/Generic Collecting Metrics + keywords: '[''prometheus'', ''openmetrics'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/README.md + sidebar_label: SNMP devices + learn_status: Published + learn_rel_path: Collecting Metrics/Generic Collecting Metrics + keywords: '[''snmp'', ''mib'', ''oid'', ''network'', ''router'', ''switch'', ''firewall'', + ''ap'', ''access point'', ''wireless controller'', ''wlc'', ''wifi'', ''vpn'', + ''pdu'', ''ups'', ''nas'', ''san'', ''printer'', ''bgp'', ''ospf'', ''ucd'', ''3com'', + ''a10'', ''alcatel'', ''lucent'', ''nokia'', ''anue'', ''apc'', ''netbotz'', ''arista'', + ''aruba'', ''audiocodes'', ''avaya'', ''avocent'', ''avtech'', ''roomalert'', + ''barracuda'', ''bluecat'', ''brocade'', ''brother'', ''chatsworth'', ''checkpoint'', + ''chrysalis'', ''cisco'', ''cisco asa'', ''cisco asr'', ''cisco catalyst'', ''cisco + nexus'', ''cisco ironport'', ''cisco ics'', ''cisco wlc'', ''cisco ucs'', ''meraki'', + ''citrix'', ''netscaler'', ''cradlepoint'', ''cyberpower'', ''dell'', ''dell emc'', + ''poweredge'', ''sonicwall'', ''dialogic'', ''dlink'', ''d-link'', ''eaton'', + ''exagrid'', ''extreme'', ''f5'', ''big-ip'', ''fireeye'', ''fortinet'', ''fortigate'', + ''fortiswitch'', ''gigamon'', ''hp'', ''hewlett packard'', ''hp ilo'', ''ilo'', + ''ilo4'', ''hp h3c'', ''hp icf'', ''hpe'', ''proliant'', ''huawei'', ''3com huawei'', + ''ibm'', ''datapower'', ''lenovo'', ''idrac'', ''dell idrac'', ''infinera'', ''coriant'', + ''infoblox'', ''isilon'', ''ixsystems'', ''truenas'', ''juniper'', ''junos'', + ''kyocera'', ''linksys'', ''mcafee'', ''mikrotik'', ''nasuni'', ''nec'', ''net-snmp'', + ''netsnmp'', ''netapp'', ''netgear'', ''readynas'', ''omron'', ''opengear'', ''palo + alto'', ''cloudgenix'', ''peplink'', ''raritan'', ''riverbed'', ''ruckus'', ''serveriron'', + ''server-iron'', ''servertech'', ''silverpeak'', ''silver peak'', ''edgeconnect'', + ''sinetica'', ''sophos'', ''synology'', ''diskstation'', ''tp-link'', ''tplink'', + ''tripplite'', ''tripp lite'', ''ubiquiti'', ''unifi'', ''velocloud'', ''vertiv'', + ''liebert'', ''watchguard'', ''western digital'', ''wd'', ''mycloud'', ''zebra'', + ''zyxel'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tankerkoenig_api.md + sidebar_label: Tankerkoenig API + learn_status: Published + learn_rel_path: Collecting Metrics/Generic Collecting Metrics + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/README.md + sidebar_label: 1-Wire Sensors + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''temperature'', ''sensor'', ''1-wire'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/README.md + sidebar_label: AM2320 + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''temperature'', ''am2320'', ''sensor'', ''humidity'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/amd_cpu_&_gpu.md + sidebar_label: AMD CPU & GPU + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/amd_gpu.md + sidebar_label: AMD GPU + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''amd'', ''gpu'', ''hardware'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/README.md + sidebar_label: CUPS + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/README.md + sidebar_label: HDD temperature + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''hardware'', ''hdd temperature'', ''disk temperature'', ''temperature'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_cryptoexpress_cex_cards.md + sidebar_label: IBM CryptoExpress (CEX) cards + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_z_hardware_management_console.md + sidebar_label: IBM Z Hardware Management Console + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/README.md + sidebar_label: Intel GPU + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''intel'', ''gpu'', ''hardware'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/README.md + sidebar_label: Intelligent Platform Management Interface (IPMI) + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''sensors'', ''ipmi'', ''freeipmi'', ''ipmimonitoring'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/README.md + sidebar_label: Linux Sensors + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''sensors'', ''temperature'', ''voltage'', ''current'', ''power'', ''fan'', + ''energy'', ''humidity'', ''intrusion'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/README.md + sidebar_label: Nvidia GPU + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''nvidia'', ''gpu'', ''hardware'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/raritan_pdu.md + sidebar_label: Raritan PDU + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/README.md + sidebar_label: S.M.A.R.T. + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: '[''smart'', ''S.M.A.R.T.'', ''SCSI devices'', ''ATA devices'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/siemens_s7_plc.md + sidebar_label: Siemens S7 PLC + learn_status: Published + learn_rel_path: Collecting Metrics/Hardware Devices and Sensors + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/statuspage.md + sidebar_label: StatusPage + learn_status: Published + learn_rel_path: Collecting Metrics/Incident Management + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md + sidebar_label: Christ Elektronik CLM5IP power panel + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/craftbeerpi.md + sidebar_label: CraftBeerPi + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dutch_electricity_smart_meter.md + sidebar_label: Dutch Electricity Smart Meter + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/elgato_key_light_devices..md + sidebar_label: Elgato Key Light devices. + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/energomera_smart_power_meters.md + sidebar_label: Energomera smart power meters + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homebridge.md + sidebar_label: Homebridge + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homey.md + sidebar_label: Homey + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jarvis_standing_desk.md + sidebar_label: Jarvis Standing Desk + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/modbus_protocol.md + sidebar_label: Modbus protocol + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: '[''database'', ''dbms'', ''data storage'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nature_remo_e_lite_devices.md + sidebar_label: Nature Remo E lite devices + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netatmo_sensors.md + sidebar_label: Netatmo sensors + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: '[''network monitoring'', ''network performance'', ''traffic analysis'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/personal_weather_station.md + sidebar_label: Personal Weather Station + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/philips_hue.md + sidebar_label: Philips Hue + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pimoroni_enviro+.md + sidebar_label: Pimoroni Enviro+ + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/powerpal_devices.md + sidebar_label: Powerpal devices + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radio_thermostat.md + sidebar_label: Radio Thermostat + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/salicru_eqx_inverter.md + sidebar_label: Salicru EQX inverter + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sense_energy.md + sidebar_label: Sense Energy + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/shelly_humidity_sensor.md + sidebar_label: Shelly humidity sensor + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sma_inverters.md + sidebar_label: SMA Inverters + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/smart_meters_sml.md + sidebar_label: Smart meters SML + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solar_logging_stick.md + sidebar_label: Solar logging stick + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solis_ginlong_5g_inverters.md + sidebar_label: Solis Ginlong 5G inverters + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sunspec_solar_energy.md + sidebar_label: Sunspec Solar Energy + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tado_smart_heating_solution.md + sidebar_label: Tado smart heating solution + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_vehicle.md + sidebar_label: Tesla vehicle + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_wall_connector.md + sidebar_label: Tesla Wall Connector + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/xiaomi_mi_flora.md + sidebar_label: Xiaomi Mi Flora + learn_status: Published + learn_rel_path: Collecting Metrics/IoT Devices + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_agent.md + sidebar_label: Cilium Agent + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_operator.md + sidebar_label: Cilium Operator + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_proxy.md + sidebar_label: Cilium Proxy + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/README.md + sidebar_label: Kubelet + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: '[''kubelet'', ''kubernetes'', ''k8s'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md + sidebar_label: Kubeproxy + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: '[''kubeproxy'', ''kubernetes'', ''k8s'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/README.md + sidebar_label: Kubernetes Cluster State + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: '[''kubernetes'', ''k8s'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/kubernetes_containers.md + sidebar_label: Kubernetes Containers + learn_status: Published + learn_rel_path: Collecting Metrics/Kubernetes + keywords: '[''k8s'', ''kubernetes'', ''pods'', ''containers'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/README.md + sidebar_label: CPU performance + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems + keywords: '[''linux'', ''cpu performance'', ''cpu cache'', ''perf.plugin'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/README.md + sidebar_label: Disk space + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems + keywords: '[''disk'', ''I/O'', ''space'', ''inode'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openrc.md + sidebar_label: OpenRC + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/interrupts.md + sidebar_label: Interrupts + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/CPU + keywords: '[''interrupts'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softirq_statistics.md + sidebar_label: SoftIRQ statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/CPU + keywords: '[''softirqs'', ''interrupts'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/disk_statistics.md + sidebar_label: Disk Statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Disk + keywords: '[''disk'', ''disks'', ''io'', ''bcache'', ''block devices'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/md_raid.md + sidebar_label: MD RAID + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Disk + keywords: '[''raid'', ''mdadm'', ''mdstat'', ''raid'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/btrfs.md + sidebar_label: BTRFS + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Filesystem/BTRFS + keywords: '[''btrfs'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_client.md + sidebar_label: NFS Client + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Filesystem/NFS + keywords: '[''nfs client'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_server.md + sidebar_label: NFS Server + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Filesystem/NFS + keywords: '[''nfs server'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zfs_adaptive_replacement_cache.md + sidebar_label: ZFS Adaptive Replacement Cache + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Filesystem/ZFS + keywords: '[''zfs arc'', ''arc'', ''zfs'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/conntrack.md + sidebar_label: Conntrack + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Firewall + keywords: '[''connection tracking mechanism'', ''netfilter'', ''conntrack'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/README.md + sidebar_label: Netfilter + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Firewall + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/synproxy.md + sidebar_label: Synproxy + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Firewall + keywords: '[''synproxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/inter_process_communication.md + sidebar_label: Inter Process Communication + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/IPC + keywords: '[''ipc'', ''semaphores'', ''shared memory'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/README.md + sidebar_label: Linux kernel SLAB allocator statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Kernel + keywords: '[''linux kernel'', ''slab'', ''slub'', ''slob'', ''slabinfo'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/power_capping.md + sidebar_label: Power Capping + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Kernel + keywords: '[''power capping'', ''energy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/kernel_same-page_merging.md + sidebar_label: Kernel Same-Page Merging + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''ksm'', ''samepage'', ''merging'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/linux_zswap.md + sidebar_label: Linux ZSwap + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''swap'', ''zswap'', ''frontswap'', ''swap cache'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_modules_dimms.md + sidebar_label: Memory modules (DIMMs) + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''edac'', ''ecc'', ''dimm'', ''ram'', ''hardware'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_statistics.md + sidebar_label: Memory Statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''swap'', ''page faults'', ''oom'', ''numa'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_usage.md + sidebar_label: Memory Usage + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''memory'', ''ram'', ''available'', ''committed'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/non-uniform_memory_access.md + sidebar_label: Non-Uniform Memory Access + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''numa'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/page_types.md + sidebar_label: Page types + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''memory page types'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/system_memory_fragmentation.md + sidebar_label: System Memory Fragmentation + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''extfrag'', ''extfrag_threshold'', ''memory fragmentation'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zram.md + sidebar_label: ZRAM + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Memory + keywords: '[''zram'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/README.md + sidebar_label: Access Points + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''ap'', ''access'', ''point'', ''wireless'', ''network'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/infiniband.md + sidebar_label: InfiniBand + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''infiniband'', ''rdma'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ip_virtual_server.md + sidebar_label: IP Virtual Server + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''ip virtual server'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ipv6_socket_statistics.md + sidebar_label: IPv6 Socket Statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''ipv6 sockets'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_interfaces.md + sidebar_label: Network interfaces + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''network interfaces'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_statistics.md + sidebar_label: Network statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''ip'', ''udp'', ''udplite'', ''icmp'', ''netstat'', ''snmp'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/sctp_statistics.md + sidebar_label: SCTP Statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''sctp'', ''stream control transmission protocol'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/socket_statistics.md + sidebar_label: Socket statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''sockets'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softnet_statistics.md + sidebar_label: Softnet Statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''softnet'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/README.md + sidebar_label: tc QoS classes + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/wireless_network_interfaces.md + sidebar_label: Wireless network interfaces + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Network + keywords: '[''wireless devices'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/power_supply.md + sidebar_label: Power Supply + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Power Supply + keywords: '[''psu'', ''power supply'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/pressure_stall_information.md + sidebar_label: Pressure Stall Information + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/Pressure + keywords: '[''pressure'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/entropy.md + sidebar_label: Entropy + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/System + keywords: '[''entropy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_load_average.md + sidebar_label: System Load Average + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/System + keywords: '[''load'', ''load average'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_statistics.md + sidebar_label: System statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/System + keywords: '[''cpu utilization'', ''process counts'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_uptime.md + sidebar_label: System Uptime + learn_status: Published + learn_rel_path: Collecting Metrics/Linux Systems/System + keywords: '[''uptime'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/authlog.md + sidebar_label: AuthLog + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/README.md + sidebar_label: Fluentd + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: '[''fluentd'', ''logging'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/graylog_server.md + sidebar_label: Graylog Server + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/journald.md + sidebar_label: journald + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/README.md + sidebar_label: Logstash + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: '[''logstatsh'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/loki.md + sidebar_label: loki + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mtail.md + sidebar_label: mtail + learn_status: Published + learn_rel_path: Collecting Metrics/Logs Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/README.md + sidebar_label: macOS + learn_status: Published + learn_rel_path: Collecting Metrics/macOS Systems + keywords: '[''macos'', ''apple'', ''darwin'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dmarc.md + sidebar_label: DMARC + learn_status: Published + learn_rel_path: Collecting Metrics/Mail Servers + keywords: '[''email authentication'', ''policy'', ''reporting'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/README.md + sidebar_label: Dovecot + learn_status: Published + learn_rel_path: Collecting Metrics/Mail Servers + keywords: '[''dovecot'', ''imap'', ''mail'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/README.md + sidebar_label: Exim + learn_status: Published + learn_rel_path: Collecting Metrics/Mail Servers + keywords: '[''exim'', ''mail'', ''email'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/halon.md + sidebar_label: Halon + learn_status: Published + learn_rel_path: Collecting Metrics/Mail Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/README.md + sidebar_label: Postfix + learn_status: Published + learn_rel_path: Collecting Metrics/Mail Servers + keywords: '[''postfix'', ''mail'', ''mail server'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/discourse.md + sidebar_label: Discourse + learn_status: Published + learn_rel_path: Collecting Metrics/Media Services + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/README.md + sidebar_label: Icecast + learn_status: Published + learn_rel_path: Collecting Metrics/Media Services + keywords: '[''icecast'', ''streaming'', ''media'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/obs_studio.md + sidebar_label: OBS Studio + learn_status: Published + learn_rel_path: Collecting Metrics/Media Services + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sabnzbd.md + sidebar_label: SABnzbd + learn_status: Published + learn_rel_path: Collecting Metrics/Media Services + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/twitch.md + sidebar_label: Twitch + learn_status: Published + learn_rel_path: Collecting Metrics/Media Services + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/README.md + sidebar_label: ActiveMQ + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''message broker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/README.md + sidebar_label: Apache Pulsar + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''pulsar'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/README.md + sidebar_label: Beanstalk + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''beanstalk'', ''beanstalkd'', ''message'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_mq.md + sidebar_label: IBM MQ + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka.md + sidebar_label: Kafka + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''big data'', ''stream processing'', ''message broker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_zookeeper.md + sidebar_label: Kafka ZooKeeper + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''big data'', ''stream processing'', ''message broker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mosquitto.md + sidebar_label: mosquitto + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mqtt_blackbox.md + sidebar_label: MQTT Blackbox + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/README.md + sidebar_label: NATS + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''nats'', ''messaging'', ''broker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/README.md + sidebar_label: RabbitMQ + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''rabbitmq'', ''message brokers'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/redis_queue.md + sidebar_label: Redis Queue + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/README.md + sidebar_label: VerneMQ + learn_status: Published + learn_rel_path: Collecting Metrics/Message Brokers + keywords: '[''vernemq'', ''message brokers'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/8430ft_modem.md + sidebar_label: 8430FT modem + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bird_routing_daemon.md + sidebar_label: Bird Routing Daemon + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freifunk_network.md + sidebar_label: Freifunk network + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/frrouting.md + sidebar_label: FRRouting + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hitron_coda_cable_modem.md + sidebar_label: Hitron CODA Cable Modem + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/keepalived.md + sidebar_label: Keepalived + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/open_vswitch.md + sidebar_label: Open vSwitch + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openroadm_devices.md + sidebar_label: OpenROADM devices + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: '[''network monitoring'', ''network performance'', ''traffic analysis'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/README.md + sidebar_label: Optical modules + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: '[''sfp'', ''ddm'', ''optic'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ripe_atlas.md + sidebar_label: RIPE Atlas + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sonic_nos.md + sidebar_label: SONiC NOS + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/starlink_spacex.md + sidebar_label: Starlink (SpaceX) + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ubiquiti_ufiber_olt.md + sidebar_label: Ubiquiti UFiber OLT + learn_status: Published + learn_rel_path: Collecting Metrics/Networking Stack and Network Interfaces + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/collectd.md + sidebar_label: Collectd + learn_status: Published + learn_rel_path: Collecting Metrics/Observability + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dynatrace.md + sidebar_label: Dynatrace + learn_status: Published + learn_rel_path: Collecting Metrics/Observability + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/grafana.md + sidebar_label: Grafana + learn_status: Published + learn_rel_path: Collecting Metrics/Observability + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hubble.md + sidebar_label: Hubble + learn_status: Published + learn_rel_path: Collecting Metrics/Observability + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nagios.md + sidebar_label: Nagios + learn_status: Published + learn_rel_path: Collecting Metrics/Observability + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/README.md + sidebar_label: Files and directories + learn_status: Published + learn_rel_path: Collecting Metrics/Other + keywords: '[''files'', ''directories'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_api_rate_limit.md + sidebar_label: GitHub API rate limit + learn_status: Published + learn_rel_path: Collecting Metrics/Other + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_repository.md + sidebar_label: GitHub repository + learn_status: Published + learn_rel_path: Collecting Metrics/Other + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/applications.md + sidebar_label: Applications + learn_status: Published + learn_rel_path: Collecting Metrics/Processes and System Services + keywords: '[''applications'', ''processes'', ''os'', ''host monitoring'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/README.md + sidebar_label: Supervisor + learn_status: Published + learn_rel_path: Collecting Metrics/Processes and System Services + keywords: '[''supervisor'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/user_groups.md + sidebar_label: User Groups + learn_status: Published + learn_rel_path: Collecting Metrics/Processes and System Services + keywords: '[''groups'', ''processes'', ''user auditing'', ''authorization'', ''os'', + ''host monitoring'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/users.md + sidebar_label: Users + learn_status: Published + learn_rel_path: Collecting Metrics/Processes and System Services + keywords: '[''users'', ''processes'', ''os'', ''host monitoring'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bosh.md + sidebar_label: BOSH + learn_status: Published + learn_rel_path: Collecting Metrics/Provisioning Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry.md + sidebar_label: Cloud Foundry + learn_status: Published + learn_rel_path: Collecting Metrics/Provisioning Systems + keywords: '[''cloud services'', ''cloud computing'', ''scalability'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry_firehose.md + sidebar_label: Cloud Foundry Firehose + learn_status: Published + learn_rel_path: Collecting Metrics/Provisioning Systems + keywords: '[''cloud services'', ''cloud computing'', ''scalability'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/spacelift.md + sidebar_label: Spacelift + learn_status: Published + learn_rel_path: Collecting Metrics/Provisioning Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/README.md + sidebar_label: Elasticsearch + learn_status: Published + learn_rel_path: Collecting Metrics/Search Engines + keywords: '[''elastic'', ''elasticsearch'', ''opensearch'', ''search engine'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/meilisearch.md + sidebar_label: Meilisearch + learn_status: Published + learn_rel_path: Collecting Metrics/Search Engines + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/integrations/opensearch.md + sidebar_label: OpenSearch + learn_status: Published + learn_rel_path: Collecting Metrics/Search Engines + keywords: '[''elastic'', ''elasticsearch'', ''opensearch'', ''search engine'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sphinx.md + sidebar_label: Sphinx + learn_status: Published + learn_rel_path: Collecting Metrics/Search Engines + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/README.md + sidebar_label: Typesense + learn_status: Published + learn_rel_path: Collecting Metrics/Search Engines + keywords: '[''typesense'', ''search engine'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamav_daemon.md + sidebar_label: ClamAV daemon + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamscan_results.md + sidebar_label: Clamscan results + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/crowdsec.md + sidebar_label: Crowdsec + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/honeypot.md + sidebar_label: Honeypot + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lynis_audit_reports.md + sidebar_label: Lynis audit reports + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/README.md + sidebar_label: Rspamd + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: '[''spam'', ''rspamd'', ''email'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/suricata.md + sidebar_label: Suricata + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vault_pki.md + sidebar_label: Vault PKI + learn_status: Published + learn_rel_path: Collecting Metrics/Security Systems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/README.md + sidebar_label: Consul + learn_status: Published + learn_rel_path: Collecting Metrics/Service Discovery / Registry + keywords: '[''service networking platform'', ''hashicorp'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/etcd.md + sidebar_label: etcd + learn_status: Published + learn_rel_path: Collecting Metrics/Service Discovery / Registry + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_consumer_lag.md + sidebar_label: Kafka Consumer Lag + learn_status: Published + learn_rel_path: Collecting Metrics/Service Discovery / Registry + keywords: '[''big data'', ''stream processing'', ''message broker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/README.md + sidebar_label: ZooKeeper + learn_status: Published + learn_rel_path: Collecting Metrics/Service Discovery / Registry + keywords: '[''zookeeper'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/README.md + sidebar_label: Adaptec RAID + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''storage'', ''raid-controller'', ''manage-disks'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/README.md + sidebar_label: Ceph + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''ceph'', ''storage'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/README.md + sidebar_label: Dell EMC ScaleIO + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''scaleio'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/README.md + sidebar_label: DMCache devices + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''dmcache'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/eos.md + sidebar_label: EOS + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/generic_storage_enclosure_tool.md + sidebar_label: Generic storage enclosure tool + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/README.md + sidebar_label: Hadoop Distributed File System (HDFS) + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''hdfs'', ''hadoop'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/README.md + sidebar_label: HPE Smart Arrays + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''storage'', ''raid-controller'', ''hp'', ''hpssa'', ''array'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum.md + sidebar_label: IBM Spectrum + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum_virtualize.md + sidebar_label: IBM Spectrum Virtualize + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/README.md + sidebar_label: IPFS + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''ipfs'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/README.md + sidebar_label: LVM logical volumes + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''lvm'', ''lvs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/README.md + sidebar_label: MegaCLI MegaRAID + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''storage'', ''raid-controller'', ''manage-disks'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mogilefs.md + sidebar_label: MogileFS + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_ontap_api.md + sidebar_label: Netapp ONTAP API + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''network monitoring'', ''network performance'', ''traffic analysis'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_solidfire.md + sidebar_label: NetApp Solidfire + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''network monitoring'', ''network performance'', ''traffic analysis'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/README.md + sidebar_label: NVMe devices + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''nvme'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/README.md + sidebar_label: Samba + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''samba'', ''smb'', ''file sharing'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/README.md + sidebar_label: StoreCLI RAID + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''storage'', ''raid-controller'', ''manage-disks'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/storidge.md + sidebar_label: Storidge + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/synology_activebackup.md + sidebar_label: Synology ActiveBackup + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/README.md + sidebar_label: ZFS Pools + learn_status: Published + learn_rel_path: Collecting Metrics/Storage, Mount Points and Filesystems + keywords: '[''zfs pools'', ''pools'', ''zfs'', ''filesystem'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/blackbox.md + sidebar_label: Blackbox + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''blackbox'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/README.md + sidebar_label: Domain expiration date + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''whois'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/README.md + sidebar_label: HTTP Endpoints + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/README.md + sidebar_label: Idle OS Jitter + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''latency'', ''jitter'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/README.md + sidebar_label: IOPing + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/README.md + sidebar_label: Monit + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''monit'', ''mmonit'', ''supervision tool'', ''monitrc'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/README.md + sidebar_label: Ping + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''ping'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/site_24x7.md + sidebar_label: Site 24x7 + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/README.md + sidebar_label: TCP/UDP Endpoints + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/uptimerobot.md + sidebar_label: Uptimerobot + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/README.md + sidebar_label: X.509 certificate + learn_status: Published + learn_rel_path: Collecting Metrics/Synthetic Checks + keywords: '[''x509'', ''certificate'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/README.md + sidebar_label: Chrony + learn_status: Published + learn_rel_path: Collecting Metrics/System Clock and NTP + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/README.md + sidebar_label: NTPd + learn_status: Published + learn_rel_path: Collecting Metrics/System Clock and NTP + keywords: '[''ntpd'', ''ntp'', ''time'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/README.md + sidebar_label: Timex + learn_status: Published + learn_rel_path: Collecting Metrics/System Clock and NTP + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/systemd_services.md + sidebar_label: Systemd Services + learn_status: Published + learn_rel_path: Collecting Metrics/Systemd + keywords: '[''containers'', ''docker'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/README.md + sidebar_label: Systemd Units + learn_status: Published + learn_rel_path: Collecting Metrics/Systemd + keywords: '[''systemd'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/README.md + sidebar_label: systemd-logind users + learn_status: Published + learn_rel_path: Collecting Metrics/Systemd + keywords: '[''logind'', ''systemd'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/celery.md + sidebar_label: Celery + learn_status: Published + learn_rel_path: Collecting Metrics/Task Queues + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mesos.md + sidebar_label: Mesos + learn_status: Published + learn_rel_path: Collecting Metrics/Task Queues + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/slurm.md + sidebar_label: Slurm + learn_status: Published + learn_rel_path: Collecting Metrics/Task Queues + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kannel.md + sidebar_label: Kannel + learn_status: Published + learn_rel_path: Collecting Metrics/Telephony Servers + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/README.md + sidebar_label: OpenSIPS + learn_status: Published + learn_rel_path: Collecting Metrics/Telephony Servers + keywords: '[''opensips'', ''sip'', ''voice'', ''video'', ''stream'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/README.md + sidebar_label: APC UPS + learn_status: Published + learn_rel_path: Collecting Metrics/UPS + keywords: '[''ups'', ''apcupsd'', ''apc'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/README.md + sidebar_label: UPS (NUT) + learn_status: Published + learn_rel_path: Collecting Metrics/UPS + keywords: '[''ups'', ''nut'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/fastd.md + sidebar_label: Fastd + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/README.md + sidebar_label: Libreswan + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: '[''vpn'', ''libreswan'', ''network'', ''ipsec'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/README.md + sidebar_label: OpenVPN + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: '[''openvpn'', ''vpn'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/README.md + sidebar_label: OpenVPN status log + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: '[''openvpn'', ''vpn'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/softether_vpn_server.md + sidebar_label: SoftEther VPN Server + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/strongswan.md + sidebar_label: strongSwan + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/README.md + sidebar_label: Tor + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: '[''tor'', ''traffic'', ''vpn'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/README.md + sidebar_label: WireGuard + learn_status: Published + learn_rel_path: Collecting Metrics/VPNs + keywords: '[''wireguard'', ''vpn'', ''security'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/README.md + sidebar_label: Apache + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/apicast.md + sidebar_label: APIcast + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clash.md + sidebar_label: Clash + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/README.md + sidebar_label: Envoy + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''envoy'', ''proxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gobetween.md + sidebar_label: Gobetween + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: .nan + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/README.md + sidebar_label: HAProxy + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''haproxy'', ''web'', ''webserver'', ''http'', ''proxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/integrations/httpd.md + sidebar_label: HTTPD + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/README.md + sidebar_label: Lighttpd + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/README.md + sidebar_label: Litespeed + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''litespeed'', ''web'', ''server'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/README.md + sidebar_label: NGINX + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''nginx'', ''web'', ''webserver'', ''http'', ''proxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/README.md + sidebar_label: NGINX Plus + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''nginxplus'', ''nginx'', ''web'', ''webserver'', ''http'', ''proxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/README.md + sidebar_label: NGINX Unit + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''nginx'', ''unit'', ''web'', ''appserver'', ''http'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/README.md + sidebar_label: NGINX VTS + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/README.md + sidebar_label: PHP-FPM + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''phpfpm'', ''php'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/README.md + sidebar_label: Squid + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''squid'', ''web delivery'', ''squid caching proxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/README.md + sidebar_label: Squid log files + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''squid'', ''logs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'True' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/README.md + sidebar_label: Tengine + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''tengine'', ''web'', ''webserver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/README.md + sidebar_label: Tomcat + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''apache'', ''tomcat'', ''webserver'', ''websocket'', ''jakarta'', ''javaEE'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/README.md + sidebar_label: Traefik + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''traefik'', ''proxy'', ''webproxy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/README.md + sidebar_label: uWSGI + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''application server'', ''python'', ''web applications'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/README.md + sidebar_label: Varnish + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''varnish'', ''varnishstat'', ''varnishd'', ''cache'', ''web server'', + ''web cache'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/README.md + sidebar_label: Web server log files + learn_status: Published + learn_rel_path: Collecting Metrics/Web Servers and Web Proxies + keywords: '[''webserver'', ''apache'', ''httpd'', ''nginx'', ''lighttpd'', ''logs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory.md + sidebar_label: Active Directory + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''active directory'', ''ad'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md + sidebar_label: Active Directory Certificate Service + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''active directory'', ''adcs'', ''ad'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md + sidebar_label: Active Directory Federation Service + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''active directory'', ''adfs'', ''ad'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/asp.net.md + sidebar_label: ASP.NET + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''ASP'', ''webservice'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md + sidebar_label: Hardware information collected from kernel ring. + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''cpu'', ''temperature'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hyper-v.md + sidebar_label: Hyper-V + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''hyperv'', ''virtualization'', ''vm'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/iis.md + sidebar_label: IIS + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''IIS'', ''HTTP'', ''Web service'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/memory_statistics.md + sidebar_label: Memory statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''memory'', ''swap'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_exchange.md + sidebar_label: MS Exchange + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''exchange'', ''mail'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_sql_server.md + sidebar_label: MS SQL Server + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''sql'', ''queries'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/net_framework.md + sidebar_label: NET Framework + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''netframework'', ''dotnet'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/network_subsystem.md + sidebar_label: Network Subsystem + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''network'', ''bandwidth'', ''ip'', ''udp'', ''tcp'', ''interface'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/numa_architecture.md + sidebar_label: NUMA Architecture + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''NUMA'', ''processor'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/physical_and_logical_disk_performance_metrics.md + sidebar_label: Physical and Logical Disk Performance Metrics + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''disk'', ''disks'', ''io'', ''volume'', ''physical'', ''logical'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/power_supply.md + sidebar_label: Power supply + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''power supply'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/processor.md + sidebar_label: Processor + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''processor'', ''CPU'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/semaphore_statistics.md + sidebar_label: Semaphore statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''ipc'', ''semaphores'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/sensors.md + sidebar_label: Sensors + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''Sensors'', ''Windows'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_statistics.md + sidebar_label: System statistics + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''process counts'', ''threads'', ''context switch'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_thermal_zone.md + sidebar_label: System thermal zone + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''thermal'', ''temperature'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/windows_services.md + sidebar_label: Windows Services + learn_status: Published + learn_rel_path: Collecting Metrics/Windows Systems + keywords: '[''windows'', ''microsoft'', ''services'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml + FILE + most_popular: 'False' +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/README.md + sidebar_label: Exporting Metrics + learn_status: Published + learn_rel_path: Exporting Metrics + keywords: null + description: Use the exporting engine to send Netdata metrics to popular external + time series databases for long-term storage or further analysis. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/README.md + sidebar_label: Exporting reference + learn_status: Published + learn_rel_path: Exporting Metrics + keywords: null + description: With the exporting engine, you can archive your Netdata metrics to + multiple external databases for long-term storage or further analysis. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/enable-an-exporting-connector.md + sidebar_label: Enable an exporting connector + learn_status: Published + learn_rel_path: Exporting Metrics + keywords: null + description: Learn how to enable and configure any connector using examples to start + exporting metrics to external time-series databases in minutes. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/appoptics.md + sidebar_label: AppOptics + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/README.md + sidebar_label: AWS Kinesis + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''AWS'', ''Kinesis'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_data_explorer.md + sidebar_label: Azure Data Explorer + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_event_hub.md + sidebar_label: Azure Event Hub + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/blueflood.md + sidebar_label: Blueflood + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''graphite'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/chronix.md + sidebar_label: Chronix + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cortex.md + sidebar_label: Cortex + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cratedb.md + sidebar_label: CrateDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/elasticsearch.md + sidebar_label: ElasticSearch + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/gnocchi.md + sidebar_label: Gnocchi + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/google_bigquery.md + sidebar_label: Google BigQuery + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/README.md + sidebar_label: Google Cloud Pub Sub + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Google Cloud'', ''Pub Sub'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/README.md + sidebar_label: Graphite + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''graphite'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/greptimedb.md + sidebar_label: GreptimeDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/irondb.md + sidebar_label: IRONdb + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/json/README.md + sidebar_label: JSON + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''json'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/json/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/kafka.md + sidebar_label: Kafka + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/kairosdb.md + sidebar_label: KairosDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''graphite'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/m3db.md + sidebar_label: M3DB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/metricfire.md + sidebar_label: MetricFire + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/README.md + sidebar_label: MongoDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''MongoDB'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/new_relic.md + sidebar_label: New Relic + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/opeansearch.md + sidebar_label: OpeanSearch + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/README.md + sidebar_label: OpenTSDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''OpenTSDB'', ''scalable time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/postgresql.md + sidebar_label: PostgreSQL + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/remote_write/README.md + sidebar_label: Prometheus Remote Write + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/quasardb.md + sidebar_label: QuasarDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/splunk_signalfx.md + sidebar_label: Splunk SignalFx + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/thanos.md + sidebar_label: Thanos + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/tikv.md + sidebar_label: TiKV + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/timescaledb.md + sidebar_label: TimescaleDB + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/victoriametrics.md + sidebar_label: VictoriaMetrics + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/vmware_aria.md + sidebar_label: VMware Aria + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/wavefront.md + sidebar_label: Wavefront + learn_status: Published + learn_rel_path: Exporting Metrics/Connectors + keywords: '[''exporter'', ''Prometheus'', ''remote write'', ''time series'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/README.md + sidebar_label: Prometheus + learn_status: Published + learn_rel_path: Exporting Metrics + keywords: null + description: Export Netdata metrics to Prometheus for archiving and further analysis. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/exporters/shell/README.md + sidebar_label: Shell Scripts + learn_status: Published + learn_rel_path: Exporting Metrics + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/systemd_journal_logs.md + sidebar_label: Systemd Journal Logs + learn_status: Published + learn_rel_path: Logs/Systemd Journal Logs + keywords: '[''systemd'', ''journal'', ''logs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/windows_event_logs.md + sidebar_label: Windows Event Logs + learn_status: Published + learn_rel_path: Logs/Windows Event Logs + keywords: '[''windows'', ''windows events'', ''logs'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: null + sidebar_label: Logs + learn_status: null + learn_rel_path: Logs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/README.md + sidebar_label: Journal Viewer Plugin + learn_status: Published + learn_rel_path: Logs/Systemd Journal Logs + keywords: null + description: View and analyze logs available in systemd journal + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/forward_secure_sealing.md + sidebar_label: Forward Secure Sealing (FSS) in Systemd-Journal + learn_status: Published + learn_rel_path: Logs/Systemd Journal Logs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows-events.plugin/README.md + sidebar_label: Windows Events Plugin Reference + learn_status: Published + learn_rel_path: Logs/Windows Event Logs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/log2journal/README.md + sidebar_label: log2journal + learn_status: Published + learn_rel_path: Logs/log2journal + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/systemd-cat-native.md + sidebar_label: systemd-cat-native + learn_status: Published + learn_rel_path: Logs/systemd-cat-native + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/README.md + sidebar_label: Logs Centralization Points with systemd-journald + learn_status: Published + learn_rel_path: Logs/Logs Centralization Points with systemd-journald + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates.md + sidebar_label: Passive journal centralization with encryption using self-signed + certificates + learn_status: Published + learn_rel_path: Logs/Logs Centralization Points with systemd-journald + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption.md + sidebar_label: Passive journal centralization without encryption + learn_status: Published + learn_rel_path: Logs/Logs Centralization Points with systemd-journald + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/active_journal_centralization_guide_no_encryption.md + sidebar_label: Active journal source without encryption + learn_status: Published + learn_rel_path: Logs/Logs Centralization Points with systemd-journald + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/top-monitoring-netdata-functions.md + sidebar_label: Top Consumers + learn_status: Published + learn_rel_path: Top Consumers + keywords: null + description: Present the Netdata Functions what these are and why they should be + used. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/processes.md + sidebar_label: Processes + learn_status: Published + learn_rel_path: Top Consumers + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/databases.md + sidebar_label: Database Queries + learn_status: Published + learn_rel_path: Top Consumers + keywords: null + description: Top and running database queries with deadlock and error attribution + for 13 databases. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/README.md + sidebar_label: Alerts & Notifications + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/creating-alerts-with-netdata-alerts-configuration-manager.md + sidebar_label: Creating Alerts with the Alerts Configuration Manager + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/README.md + sidebar_label: Notifications + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications + keywords: null + description: Send Netdata alerts from a centralized place with Netdata Cloud, or + configure nodes individually, to enable incident response and faster resolution. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/README.md + sidebar_label: Agent Notifications Reference + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/README.md + sidebar_label: Alerta + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Alerta'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/README.md + sidebar_label: AWS SNS + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''AWS SNS'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/README.md + sidebar_label: Custom + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''custom'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/README.md + sidebar_label: Discord + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Discord'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/README.md + sidebar_label: Dynatrace + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Dynatrace'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/email/README.md + sidebar_label: Email + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''email'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/email/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/README.md + sidebar_label: Flock + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Flock'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/README.md + sidebar_label: Gotify + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''gotify'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/README.md + sidebar_label: ilert + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''ilert'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/README.md + sidebar_label: IRC + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''IRC'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/README.md + sidebar_label: Kavenegar + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Kavenegar'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/README.md + sidebar_label: Matrix + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Matrix'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/README.md + sidebar_label: MessageBird + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''MessageBird'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/README.md + sidebar_label: Microsoft Teams + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Microsoft'', ''Teams'', ''MS teams'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/README.md + sidebar_label: ntfy + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''ntfy'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/README.md + sidebar_label: OpsGenie + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''OpsGenie'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/README.md + sidebar_label: PagerDuty + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''PagerDuty'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/README.md + sidebar_label: Prowl + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Prowl'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/README.md + sidebar_label: Pushbullet + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Pushbullet'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/README.md + sidebar_label: PushOver + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''PushOver'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/README.md + sidebar_label: RocketChat + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''RocketChat'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/README.md + sidebar_label: SIGNL4 + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''signl4'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/README.md + sidebar_label: Slack + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Slack'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/README.md + sidebar_label: SMS + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''SMS tools 3'', ''SMS'', ''Messaging'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/README.md + sidebar_label: SMSEagle + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''smseagle'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/README.md + sidebar_label: syslog + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''syslog'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/README.md + sidebar_label: Telegram + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Telegram'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/README.md + sidebar_label: Twilio + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Agent Dispatched Notifications + keywords: '[''Twilio'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference.md + sidebar_label: Centralized Cloud Notifications Reference + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: null + description: Configure Netdata Cloud to send notifications to your team whenever + any node on your infrastructure triggers an alert threshold. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-notification-methods.md + sidebar_label: Manage notification methods + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: null + description: Instructions on how to manage notification methods + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules.md + sidebar_label: Manage alert notification silencing rules + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: null + description: Master Netdata alert management via notification silencing rules for + efficient and focused monitoring. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/amazon_sns.md + sidebar_label: Amazon SNS + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''awssns'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/discord.md + sidebar_label: Discord + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''discord'', ''community'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/ilert.md + sidebar_label: ilert + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''ilert'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/mattermost.md + sidebar_label: Mattermost + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''mattermost'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/microsoft_teams.md + sidebar_label: Microsoft Teams + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''microsoft'', ''teams'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/netdata_mobile_app.md + sidebar_label: Netdata Mobile App + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''mobile-app'', ''phone'', ''personal-notifications'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/opsgenie.md + sidebar_label: Opsgenie + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''opsgenie'', ''atlassian'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/pagerduty.md + sidebar_label: PagerDuty + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''pagerduty'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/rocketchat.md + sidebar_label: RocketChat + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''rocketchat'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/servicenow.md + sidebar_label: ServiceNow + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''servicenow'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/slack.md + sidebar_label: Slack + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''slack'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk.md + sidebar_label: Splunk + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''Splunk'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk_victorops.md + sidebar_label: Splunk VictorOps + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''VictorOps'', ''Splunk'', ''On-Call'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/telegram.md + sidebar_label: Telegram + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''Telegram'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/webhook.md + sidebar_label: Webhook + learn_status: Published + learn_rel_path: Alerts & Notifications/Notifications/Centralized Cloud Notifications + keywords: '[''generic webhooks'', ''webhooks'']' + description: .nan + meta_yaml: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml + message: DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml + FILE + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/REFERENCE.md + sidebar_label: Alert Configuration Reference + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/alert-configuration-ordering.md + sidebar_label: Alert Configuration Ordering + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: + - alerts + - health + - ordering + - precedence + - templates + - alarms + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/overriding-stock-alerts.md + sidebar_label: Overriding Stock Alerts + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: + - alerts + - health + - override + - stock + - templates + - alarms + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/health/README.md + sidebar_label: Health API Calls + learn_status: Published + learn_rel_path: Alerts & Notifications + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/machine-learning-and-assisted-troubleshooting.md + sidebar_label: Netdata AI + learn_status: Published + learn_rel_path: Netdata AI + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/conversations.md + sidebar_label: Conversations + learn_status: Published + learn_rel_path: Netdata AI + keywords: + - conversations + - chat + - real-time + - live exhibits + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ai-insights.md + sidebar_label: Insights + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/infrastructure-summary.md + sidebar_label: Infrastructure Summary + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/performance-optimization.md + sidebar_label: Performance Optimization + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/capacity-planning.md + sidebar_label: Capacity Planning + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/anomaly-analysis.md + sidebar_label: Anomaly Analysis + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/scheduled-reports.md + sidebar_label: Scheduled Reports + learn_status: Published + learn_rel_path: Netdata AI/Insights + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/index.md + sidebar_label: Investigations + learn_status: Published + learn_rel_path: Netdata AI/Investigations + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/custom-investigations.md + sidebar_label: Custom Investigations + learn_status: Published + learn_rel_path: Netdata AI/Investigations + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/scheduled-investigations.md + sidebar_label: Scheduled Investigations + learn_status: Published + learn_rel_path: Netdata AI/Investigations + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/troubleshooting/index.md + sidebar_label: Troubleshooting + learn_status: Published + learn_rel_path: Netdata AI/Troubleshooting + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/troubleshooting/troubleshoot.md + sidebar_label: Alert Troubleshooting + learn_status: Published + learn_rel_path: Netdata AI/Troubleshooting + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/anomaly-advisor.md + sidebar_label: Anomaly Advisor + learn_status: Published + learn_rel_path: Netdata AI/Troubleshooting + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/metric-correlations.md + sidebar_label: Metric Correlations + learn_status: Published + learn_rel_path: Netdata AI/Troubleshooting + keywords: null + description: Quickly find metrics and charts closely related to a particular timeframe + of interest anywhere in your infrastructure to discover the root cause faster. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/alerts-automation/alerts-automation.md + sidebar_label: Alerts Automation + learn_status: Published + learn_rel_path: Netdata AI + keywords: + - alerts + - automation + - ai alerts + description: AI-powered alert creation and suggestions + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-anomaly-detection.md + sidebar_label: Anomaly Detection + learn_status: Published + learn_rel_path: Netdata AI/Anomaly Detection + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/ml/ml-configuration.md + sidebar_label: ML Configuration + learn_status: Published + learn_rel_path: Netdata AI/Anomaly Detection + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-accuracy.md + sidebar_label: ML Accuracy + learn_status: Published + learn_rel_path: Netdata AI/Anomaly Detection + keywords: null + description: Analysis of Netdata's ML anomaly detection accuracy, false positive + rates, and comparison with other approaches + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/README.md + sidebar_label: MCP + learn_status: Published + learn_rel_path: Netdata AI/MCP + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/ai-chat-netdata.md + sidebar_label: Chat with Netdata + learn_status: Published + learn_rel_path: Netdata AI/MCP + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/ai-devops-copilot.md + sidebar_label: MCP Clients + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-desktop.md + sidebar_label: Claude Desktop + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/cursor.md + sidebar_label: Cursor + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/vs-code.md + sidebar_label: Visual Studio Code + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/jetbrains-ides.md + sidebar_label: JetBrains IDEs + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/netdata-web-client.md + sidebar_label: Netdata Web Client + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-code.md + sidebar_label: Claude Code + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/gemini-cli.md + sidebar_label: Gemini CLI + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/codex-cli.md + sidebar_label: OpenAI Codex CLI + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/crush.md + sidebar_label: Crush + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/opencode.md + sidebar_label: OpenCode + learn_status: Published + learn_rel_path: Netdata AI/MCP/MCP Clients + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-assistant.md + sidebar_label: AI powered troubleshooting assistant + learn_status: Unpublished + learn_rel_path: AI and Machine Learning + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/ml/README.md + sidebar_label: ML models and anomaly detection + learn_status: Unpublished + learn_rel_path: AI and Machine Learning + keywords: null + description: This is an in-depth look at how Netdata uses ML to detect anomalies. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/README.md + sidebar_label: Dashboards and Charts + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/home-tab.md + sidebar_label: Tabs + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: With Netdata Cloud's War Rooms, you can see real-time metrics, from + any number of nodes in your infrastructure, in composite charts. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/alerts-tab.md + sidebar_label: Alerts + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/anomaly-advisor-tab.md + sidebar_label: Anomalies + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: Quickly find anomalous metrics anywhere in your infrastructure. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/dashboards-tab.md + sidebar_label: Dashboards + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: Design new dashboards that target your infrastructure's unique needs + and share them with your team fortargeted visual anomaly detection or incident + response. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/events-feed.md + sidebar_label: Events + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: Present the Netdata Events feed. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/kubernetes-tab.md + sidebar_label: Kubernetes + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: Netdata Cloud features rich, zero-configuration Kubernetes monitoring + for the resource utilization and application metrics of Kubernetes (k8s) clusters. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/logs-tab.md + sidebar_label: Logs + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/metrics-tab-and-single-node-tabs.md + sidebar_label: Metrics + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/nodes-tab.md + sidebar_label: Nodes + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: See charts from all your nodes in one pane of glass, then dive in to + embedded dashboards for granular troubleshooting of ongoing issues. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/top-tab.md + sidebar_label: Top + learn_status: Published + learn_rel_path: Dashboards and Charts/Tabs + keywords: null + description: Instructions on how to use Functions + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/themes.md + sidebar_label: Theme + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata-grafana-datasource-plugin/edit/master/README.md + sidebar_label: Grafana Plugin + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/netdata-charts.md + sidebar_label: Charts + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/expanded-chart-analysis.md + sidebar_label: Expanded Chart Analysis + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md + sidebar_label: NIDL Framework + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/node-filter.md + sidebar_label: Node Filter + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/visualization-date-and-time-controls.md + sidebar_label: Time Controls + learn_status: Published + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/gui/confluence/README.md + sidebar_label: Atlassian Confluence dashboards + learn_status: Unpublished + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/gui/README.md + sidebar_label: Legacy Agent Dashboard + learn_status: Unpublished + learn_rel_path: Dashboards and Charts + keywords: null + description: The local Netdata Agent dashboard is the heart of health monitoring + and performance troubleshooting, with hundreds of real-time charts. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/monitor-your-infrastructure.md + sidebar_label: Monitor your Infrastructure + learn_status: Unpublished + learn_rel_path: Dashboards and Charts + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/README.md + sidebar_label: Security and Privacy Design + learn_status: Published + learn_rel_path: Security and Privacy Design + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-agent-security.md + sidebar_label: Netdata Agent + learn_status: Published + learn_rel_path: Security and Privacy Design + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-cloud-security.md + sidebar_label: Netdata Cloud + learn_status: Published + learn_rel_path: Security and Privacy Design + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/README.md + sidebar_label: Developer and Contributor Corner + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/netdata-apis.md + sidebar_label: REST API + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner/REST API + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/README.md + sidebar_label: REST API + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/README.md + sidebar_label: Queries + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/average/README.md + sidebar_label: Average or Mean + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/countif/README.md + sidebar_label: CountIf + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/des/README.md + sidebar_label: Double exponential smoothing + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/incremental_sum/README.md + sidebar_label: Incremental Sum (`incremental_sum`) + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/max/README.md + sidebar_label: Max + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/median/README.md + sidebar_label: Median + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: Use median in API queries and health entities to find the 'middle' + value from a sample, eliminating any unwanted spikes in the returned metrics. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/min/README.md + sidebar_label: Min + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/percentile/README.md + sidebar_label: Percentile + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: Use percentile in API queries and health entities to find the 'percentile' + value from a sample, eliminating any unwanted spikes in the returned metrics. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/ses/README.md + sidebar_label: Single (or Simple) Exponential Smoothing (`ses`) + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/stddev/README.md + sidebar_label: Standard deviation (`stddev`) + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/sum/README.md + sidebar_label: Sum + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/trimmed_mean/README.md + sidebar_label: Trimmed Mean + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Queries + keywords: null + description: Use trimmed-mean in API queries and health entities to find the average + value from a sample, eliminating any unwanted spikes in the returned metrics. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/README.md + sidebar_label: Formatters + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Formatters + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/csv/README.md + sidebar_label: CSV formatter + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Formatters + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/json/README.md + sidebar_label: JSON formatter + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Formatters + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/ssv/README.md + sidebar_label: SSV formatter + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Formatters + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/value/README.md + sidebar_label: Value formatter + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API/Formatters + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/badges/README.md + sidebar_label: Netdata badges + learn_status: Published + learn_rel_path: Developer and Contributor Corner/REST API + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/dyncfg.md + sidebar_label: Dynamic Configuration + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Dynamic Configuration + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/engine/README.md + sidebar_label: Database Engine + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/.github/edit/main/CONTRIBUTING.md + sidebar_label: Contributing + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/.github/edit/main/CODE_OF_CONDUCT.md + sidebar_label: Community code of conduct + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/.github/edit/main/SECURITY.md + sidebar_label: Security Policy + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: The Netdata team maintains and adheres to a formal process any time + a member of the community reports a security vulnerability. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/README.md + sidebar_label: External plugins + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/README.md + sidebar_label: go.d.plugin + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins/go.d.plugin + keywords: null + description: go.d.plugin is an external plugin for Netdata, responsible for running + individual data collectors written in Go. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/docs/how-to-write-a-module.md + sidebar_label: How to write a Netdata collector in Go + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins/go.d.plugin + keywords: null + description: This guide will walk you through the technical implementation of writing + a new Netdata collector in Golang, with tips on interfaces, structure, configuration + files, and more. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/README.md + sidebar_label: python.d.plugin + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins/python.d.plugin + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/python-collector.md + sidebar_label: Develop a custom data collector in Python + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner/External Plugins/python.d.plugin + keywords: null + description: Learn how write a custom data collector in Python, which you'll use + to collect metrics from and monitor any application that isn't supported out of + the box. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/README.md + sidebar_label: charts.d.plugin + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/profile.plugin/README.md + sidebar_label: profile.plugin + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_REFERENCE.md + sidebar_label: Functions v3 Protocol reference + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md + sidebar_label: Functions developer guide + learn_status: Published + learn_rel_path: Developer and Contributor Corner/External Plugins + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/guidelines.md + sidebar_label: Contribute to the documentation + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Contribute to the documentation + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/style-guide.md + sidebar_label: Netdata style guide + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Contribute to the documentation + keywords: null + description: The Netdata style guide establishes editorial guidelines for all of + Netdata's writing, including documentation, blog posts, in-product UX copy, and + more. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/README.md + sidebar_label: Web + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Every Netdata Agent comes bundled with hundreds of interactive, customizable + charts designed by monitoring and troubleshooting experts. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/glossary.md + sidebar_label: Glossary + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/README.md + sidebar_label: libnetdata + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/adaptive_resortable_list/README.md + sidebar_label: Adaptive re-sortable list (ARL) + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/aral/README.md + sidebar_label: Array allocator + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/avl/README.md + sidebar_label: AVL + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/buffer/README.md + sidebar_label: BUFFER library + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/circular_buffer/README.md + sidebar_label: Circular Buffer + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/clocks/README.md + sidebar_label: Clocks + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/config/README.md + sidebar_label: Netdata ini config files + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/json/README.md + sidebar_label: JSON + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/locks/README.md + sidebar_label: Locks + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/onewayalloc/README.md + sidebar_label: One way allocator + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/popen/README.md + sidebar_label: popen + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/parser/README.md + sidebar_label: parser + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/procfile/README.md + sidebar_label: procfile + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/simple_pattern/README.md + sidebar_label: Simple patterns + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: Netdata supports simple patterns, which are less cryptic versions of + regular expressions. Use familiar notation for powerful results. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/statistical/README.md + sidebar_label: Statistical functions + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/storage_number/README.md + sidebar_label: Storage number + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/string/README.md + sidebar_label: String + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/threads/README.md + sidebar_label: Threads + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/url/README.md + sidebar_label: URL + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/worker_utilization/README.md + sidebar_label: Worker Utilization + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/dictionary/README.md + sidebar_label: Dictionaries + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/july/README.md + sidebar_label: July interface + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/socket/README.md + sidebar_label: Socket + learn_status: Published + learn_rel_path: Developer and Contributor Corner/libnetdata + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/running-through-cf-tunnels.md + sidebar_label: Running a Local Dashboard through Cloudflare Tunnels + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/REDISTRIBUTED.md + sidebar_label: Redistributed Software + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/tests/health_mgmtapi/README.md + sidebar_label: Health command API tester + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/import-export-print-snapshot.md + sidebar_label: Import, export, and print a snapshot + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Snapshots can be incredibly useful for diagnosing anomalies after they've + already happened, and are interoperable with any other node running Netdata. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/gui/custom/README.md + sidebar_label: Build a custom Dashboard HTML page + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Build custom dashboards with key metrics from one or more nodes running + the Netdata Agent and host them anywhere. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-for-IoT.md + sidebar_label: Netdata for IoT + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md + sidebar_label: Monitor Nginx or Apache web server log files with Netdata + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-unbound-metrics.md + sidebar_label: Monitor Unbound DNS servers with Netdata + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-cockroachdb.md + sidebar_label: Monitor CockroachDB metrics with Netdata + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-hadoop-cluster.md + sidebar_label: Monitor a Hadoop cluster with Netdata + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/kubernetes-k8s-netdata.md + sidebar_label: 'Kubernetes monitoring with Netdata: Overview and visualizations' + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Learn how to navigate Netdata's Kubernetes monitoring features for + visualizing the health and performance of a Kubernetes cluster with per-second + granularity. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/lamp-stack.md + sidebar_label: LAMP stack monitoring (Linux, Apache, MySQL, PHP) with Netdata + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Set up robust LAMP stack monitoring (Linux, Apache, MySQL, PHP) in + just a few minutes using a free, open-source monitoring tool that collects metrics + every second. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/pi-hole-raspberry-pi.md + sidebar_label: Monitor Pi-hole (and a Raspberry Pi) with Netdata + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Monitor Pi-hole metrics, plus Raspberry Pi system metrics, in minutes + and completely for free with Netdata's open-source monitoring agent. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/raspberry-pi-anomaly-detection.md + sidebar_label: Unsupervised anomaly detection for Raspberry Pi monitoring + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Use a low-overhead machine learning algorithm and an open-source monitoring + tool to detect anomalous metrics on a Raspberry Pi. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-debug-applications-ebpf.md + sidebar_label: Monitor, troubleshoot, and debug applications with eBPF metrics + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Use Netdata's built-in eBPF metrics collector to monitor, troubleshoot, + and debug your custom application using low-level kernel feedback. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/process.md + sidebar_label: Monitor any process in real-time with Netdata + learn_status: Unpublished + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Tap into Netdata's powerful collectors, with per-second utilization + metrics for every process, to troubleshoot faster and make data-informed decisions. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/build-the-netdata-agent-yourself.md + sidebar_label: Build the Netdata Agent Yourself + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/maintainers/README.md + sidebar_label: Package Maintainers + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/source.md + sidebar_label: Compile from source code + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: Package maintainers and power users may be interested in manually building + Netdata from source without using any of our installation scripts. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/build_external/README.md + sidebar_label: External build-system + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/building-native-packages-locally.md + sidebar_label: How to build native (DEB/RPM) packages locally for testing + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: Instructions for developers who need to build native packages locally + for testing. + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/contrib/README.md + sidebar_label: Netdata contrib + learn_status: Published + learn_rel_path: Developer and Contributor Corner/Build the Netdata Agent Yourself + keywords: null + description: null + meta_yaml: .nan + message: .nan + most_popular: .nan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/manual.md + sidebar_label: Install the Netdata Agent from a Git checkout + learn_status: Published + learn_rel_path: Developer and Contributor Corner + keywords: null + description: Use the Netdata Agent source code from GitHub, plus helper scripts + to set up your system, to install Netdata without packages or binaries. + meta_yaml: .nan + message: .nan + most_popular: .nan diff --git a/ingest/ingest.py b/ingest/ingest.py index c4ec2c90c9..5802bb9eb8 100644 --- a/ingest/ingest.py +++ b/ingest/ingest.py @@ -37,6 +37,7 @@ import git import numpy as np import pandas as pd +import yaml import autogenerateRedirects as genRedirects @@ -106,6 +107,73 @@ # Marker string in auto-generated integration files INTEGRATION_MARKER = "DO NOT EDIT THIS FILE DIRECTLY" +MAP_COLUMNS = [ + "custom_edit_url", + "sidebar_label", + "learn_status", + "learn_rel_path", + "keywords", + "description", +] + + +def _normalize_placeholder_kind(kind): + if not kind: + return None + if kind.endswith("_integrations"): + return kind + return f"{kind}_integrations" + + +def load_map_yaml(map_path): + with open(map_path, "r", encoding="utf-8") as fh: + data = yaml.safe_load(fh) or {} + + sidebar = data.get("sidebar") + if not isinstance(sidebar, list): + raise ValueError("map.yaml must contain a top-level 'sidebar' list. Regenerate map.yaml from map.csv using docs/.map/convertor.py.") + + rows = [] + + def add_meta(meta): + if not isinstance(meta, dict): + return + rows.append({ + "custom_edit_url": meta.get("edit_url"), + "sidebar_label": meta.get("label"), + "learn_status": meta.get("status"), + "learn_rel_path": meta.get("path"), + "keywords": meta.get("keywords"), + "description": meta.get("description"), + }) + + def walk(nodes): + for node in nodes: + if not node: + continue + if isinstance(node, dict) and node.get("type") == "integration_placeholder": + kind = _normalize_placeholder_kind(node.get("integration_kind")) + if kind: + rows.append({ + "custom_edit_url": kind, + "sidebar_label": None, + "learn_status": None, + "learn_rel_path": None, + "keywords": None, + "description": None, + }) + continue + + if isinstance(node, dict) and "meta" in node: + add_meta(node.get("meta")) + items = node.get("items") + if isinstance(items, list): + walk(items) + + walk(sidebar) + + return pd.DataFrame(rows, columns=MAP_COLUMNS) + def ensure_category_json_for_dirs(docs_root): """ @@ -339,7 +407,7 @@ def populate_integrations(markdownFiles): ignore_dup = [] # Read the map file, to replace the placeholder for the dynamic part - map_file = pd.read_csv("map.csv") + map_file = load_map_yaml("map.yaml") collectors_entries = pd.DataFrame() exporting_entries = pd.DataFrame() @@ -467,7 +535,10 @@ def populate_integrations(markdownFiles): map_file = pd.concat([upper, logs_entries.sort_values( by=['learn_rel_path', 'sidebar_label'], key=lambda col: col.str.lower()), lower], ignore_index=True) - map_file.to_csv("ingest/generated_map.tsv", sep='\t', index=False) + # Convert DataFrame to list of dicts and save as YAML + generated_map_data = map_file.to_dict(orient='records') + with open("ingest/generated_map.yaml", "w", encoding="utf-8") as fh: + yaml.dump(generated_map_data, fh, default_flow_style=False, allow_unicode=True, sort_keys=False) # quit() return map_file @@ -757,6 +828,12 @@ def update_metadata_of_file(path_to_file, dictionary): for field in dictionary: val = dictionary[field] + + # Skip empty/null values for description and keywords to minimize diffs + if field in ['description', 'keywords']: + if val is None or val == '' or val == 'None' or (isinstance(val, list) and len(val) == 0): + continue + # Special-case keywords: accept CSV values (strings with quotes/brackets) # and also Python lists. Normalize to an inline YAML array. if field == 'keywords': @@ -778,8 +855,9 @@ def update_metadata_of_file(path_to_file, dictionary): sval_inner = sval # Split on commas to form array items items = [it.strip().strip('"').strip("'") for it in sval_inner.split(',') if it.strip()] - # Join items without surrounding quotes to match existing files' style - output += f"{field}: [{', '.join(items)}]\n" + # Only add if we have items + if items: + output += f"{field}: [{', '.join(items)}]\n" else: val_str = str(val).replace('"', '') output += f"{field}: \"{val_str}\"\n" @@ -1467,7 +1545,7 @@ def get_dir_make_file_and_recurse(directory): '--repos', default=[], nargs='+', - help='Choose specific repo you want ingest, if not set, defaults ingested' + help='Choose specific repo you want ingest. Format: owner/repo:branch or /path/to/local/repo or repo_name:/path/to/repo. If not set, defaults ingested.' ) parser.add_argument( @@ -1619,25 +1697,70 @@ def get_dir_make_file_and_recurse(directory): if len(list_of_repos_in_str) > 0: for repo_str in list_of_repos_in_str: - try: - _temp = repo_str.split("/") - repo_owner, repository, repo_branch = [ - _temp[0]] + (_temp[1].split(":")) - default_repos[repository]["owner"] = repo_owner - default_repos[repository]["branch"] = repo_branch - except (TypeError, ValueError): - print( - "You specified a wrong format in at least one of the repos you want to ingest") - parser.print_usage() - exit(-1) - except KeyError: - print(repository) - print("The repo you specified in not in predefined repos") - print(default_repos.keys()) - parser.print_usage() - exit(-1) - except Exception as exc: - print("Unknown error in parsing", exc) + # Check if it's a local path (starts with / or contains :/) + if repo_str.startswith('/') or ':/' in repo_str: + # Handle local path: either /path/to/repo or repo_name:/path/to/repo + if ':' in repo_str and not repo_str.startswith('/'): + # Format: repo_name:/path/to/repo + try: + repo_name, local_path = repo_str.split(':', 1) + if not os.path.isdir(local_path): + print(f"ERROR: Local path '{local_path}' for repo '{repo_name}' does not exist or is not a directory") + exit(-1) + LOCAL_REPOS[repo_name] = os.path.abspath(local_path) + print(f"Using local directory for {repo_name}: {LOCAL_REPOS[repo_name]}") + except ValueError: + print(f"ERROR: Invalid format '{repo_str}'. Expected repo_name:/path/to/repo") + exit(-1) + else: + # Format: /path/to/repo - infer repo_name from directory name or match to known repos + local_path = os.path.abspath(repo_str) + if not os.path.isdir(local_path): + print(f"ERROR: Local path '{local_path}' does not exist or is not a directory") + exit(-1) + dir_name = os.path.basename(local_path) + + # Try to match directory name to a known repo + matched_repo = None + if dir_name in default_repos: + matched_repo = dir_name + else: + # Try to find a known repo name in the directory name + for known_repo in default_repos.keys(): + if known_repo.lower() in dir_name.lower() or dir_name.lower() in known_repo.lower(): + matched_repo = known_repo + break + + if not matched_repo: + print(f"ERROR: Could not map directory '{dir_name}' to a known repository.") + print(f"Known repos: {list(default_repos.keys())}") + print(f"Either use explicit format 'repo_name:{local_path}' or name your directory after a known repo.") + exit(-1) + + LOCAL_REPOS[matched_repo] = local_path + print(f"Using local directory for {matched_repo}: {LOCAL_REPOS[matched_repo]}") + else: + # Handle GitHub repo: owner/repo:branch + try: + _temp = repo_str.split("/") + repo_owner, repository, repo_branch = [ + _temp[0]] + (_temp[1].split(":")) + default_repos[repository]["owner"] = repo_owner + default_repos[repository]["branch"] = repo_branch + except (TypeError, ValueError): + print( + "You specified a wrong format in at least one of the repos you want to ingest") + print(f"Invalid repo specification: {repo_str}") + parser.print_usage() + exit(-1) + except KeyError: + print(repository) + print("The repo you specified in not in predefined repos") + print(default_repos.keys()) + parser.print_usage() + exit(-1) + except Exception as exc: + print("Unknown error in parsing", exc) USE_PLAIN_HTTPS = USE_PLAIN_HTTPS or IGNORE_ON_PREM_REPO @@ -1676,7 +1799,7 @@ def get_dir_make_file_and_recurse(directory): USE_PLAIN_HTTPS, )) - shutil.move("ingest-temp-folder/netdata/docs/.map/map.csv", "map.csv") + shutil.move("ingest-temp-folder/netdata/docs/.map/map.yaml", "map.yaml") # We fetch the markdown files from the repositories all_markdown_files = fetch_markdown_from_repo(TEMP_FOLDER) @@ -1858,10 +1981,13 @@ def get_dir_make_file_and_recurse(directory): df = pd.DataFrame.from_dict(temp_dict) df.set_index('custom_edit_url') - df.to_csv("./ingest/one_commit_back_file-dict.tsv", sep='\t', index=False) + # Convert DataFrame to list of dicts and save as YAML + redirect_data = df.to_dict(orient='records') + with open("./ingest/one_commit_back_file-dict.yaml", "w", encoding="utf-8") as fh: + yaml.dump(redirect_data, fh, default_flow_style=False, allow_unicode=True, sort_keys=False) unsafe_cleanup_folders(TEMP_FOLDER) - os.remove("map.csv") + os.remove("map.yaml") # check if we need integration grid get_dir_make_file_and_recurse(f"./{DOCS_PREFIX}") diff --git a/ingest/one_commit_back_file-dict.yaml b/ingest/one_commit_back_file-dict.yaml new file mode 100644 index 0000000000..a20688ad91 --- /dev/null +++ b/ingest/one_commit_back_file-dict.yaml @@ -0,0 +1,1520 @@ +- custom_edit_url: https://github.com/netdata/agent-service-discovery/edit/master/README.md + learn_path: /docs/collecting-metrics/service-discovery +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/netdata-cloud-onprem/RELEASE-NOTES.md + learn_path: /docs/netdata-cloud-on-prem/release-notes +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/netpol.md + learn_path: /docs/netdata-cloud-on-prem/kubernetes-network-policy-configuration +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/hardening-guide.md + learn_path: /docs/netdata-cloud-on-prem/security-hardening-guide +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/sbom.md + learn_path: /docs/netdata-cloud-on-prem/software-bill-of-materials +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/ecr-mirror.md + learn_path: /docs/netdata-cloud-on-prem/mirroring-image-registry +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/troubleshooting.md + learn_path: /docs/netdata-cloud-on-prem/troubleshooting +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/poc-without-k8s.md + learn_path: /docs/netdata-cloud-on-prem/poc-without-k8s +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/README.md + learn_path: /docs/netdata-cloud-on-prem +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/installation.md + learn_path: /docs/netdata-cloud-on-prem/installation +- custom_edit_url: https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/image-signature-verification.md + learn_path: /docs/netdata-cloud-on-prem/container-image-signature-verification +- custom_edit_url: https://github.com/netdata/netdata-grafana-datasource-plugin/edit/master/README.md + learn_path: /docs/dashboards-and-charts/grafana-plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/REDISTRIBUTED.md + learn_path: /docs/developer-and-contributor-corner/redistributed-software +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/building-native-packages-locally.md + learn_path: /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/how-to-build-native-deb-rpm-packages-locally-for-testing +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/maintainers/README.md + learn_path: /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/package-maintainers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UPDATE.md + learn_path: /docs/netdata-agent/maintenance/update +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/UNINSTALL.md + learn_path: /docs/netdata-agent/maintenance/uninstall +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/README.md + learn_path: /docs/netdata-agent/installation +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/pfsense.md + learn_path: /docs/netdata-agent/installation/pfsense +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/synology.md + learn_path: /docs/netdata-agent/installation/synology +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/macos.md + learn_path: /docs/netdata-agent/installation/macos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kubernetes.md + learn_path: /docs/netdata-agent/installation/kubernetes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/freebsd.md + learn_path: /docs/netdata-agent/installation/freebsd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/packages.md + learn_path: /docs/netdata-agent/installation/linux/native-linux-distribution-packages +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/source.md + learn_path: /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/compile-from-source-code +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/ansible.md + learn_path: /docs/netdata-agent/installation/ansible +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/aws.md + learn_path: /docs/netdata-agent/installation/aws +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/offline.md + learn_path: /docs/netdata-agent/installation/linux/offline-systems +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/azure.md + learn_path: /docs/netdata-agent/installation/azure +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/manual.md + learn_path: /docs/developer-and-contributor-corner/install-the-netdata-agent-from-a-git-checkout +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/gcp.md + learn_path: /docs/netdata-agent/installation/gcp +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kickstart.md + learn_path: /docs/netdata-agent/installation/linux +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/makeself/README.md + learn_path: /docs/netdata-agent/installation/linux/static-binary-linux-packages +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/windows/WINDOWS_INSTALLER.md + learn_path: /docs/netdata-agent/installation/windows +- custom_edit_url: https://github.com/netdata/netdata/edit/master/packaging/docker/README.md + learn_path: /docs/netdata-agent/installation/docker +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/aral/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/array-allocator +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/json/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/json +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/buffer/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/buffer-library +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/onewayalloc/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/one-way-allocator +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/simple_pattern/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/simple-patterns +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/circular_buffer/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/circular-buffer +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/socket/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/socket +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/statistical/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/statistical-functions +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/avl/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/avl +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/systemd-cat-native.md + learn_path: /docs/logs/systemd-cat-native +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/log/README.md + learn_path: /docs/netdata-agent/logging +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/dictionary/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/dictionaries +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/url/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/url +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/procfile/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/procfile +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/threads/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/threads +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/adaptive_resortable_list/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/adaptive-re-sortable-list-arl +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/storage_number/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/storage-number +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/clocks/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/clocks +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/string/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/string +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/worker_utilization/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/worker-utilization +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/libnetdata/locks/README.md + learn_path: /docs/developer-and-contributor-corner/libnetdata/locks +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/README.md + learn_path: /docs/netdata-agent/daemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/daemon/config/README.md + learn_path: /docs/netdata-agent/configuration/daemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/crates/netdata-otel/otel-plugin/README.md + learn_path: /docs/collecting-metrics/opentelemetry/opentelemetry-metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/aclk/README.md + learn_path: /docs/netdata-cloud/agent-cloud-link-aclk +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/README.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/go.d.plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/README.md + learn_path: /docs/collecting-metrics/service-discovery-/-registry/consul +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/traefik +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md + learn_path: /docs/collecting-metrics/kubernetes/kubeproxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/README.md + learn_path: /docs/collecting-metrics/databases/boinc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/README.md + learn_path: /docs/collecting-metrics/vpns/wireguard +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/README.md + learn_path: /docs/collecting-metrics/cicd-platforms/puppet +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/ceph +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/README.md + learn_path: /docs/collecting-metrics/mail-servers/exim +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/README.md + learn_path: /docs/collecting-metrics/search-engines/elasticsearch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/integrations/opensearch.md + learn_path: /docs/collecting-metrics/search-engines/opensearch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/megacli-megaraid +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/README.md + learn_path: /docs/collecting-metrics/kubernetes/kubernetes-cluster-state +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/nginx +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/README.md + learn_path: /docs/collecting-metrics/databases/memcached +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/README.md + learn_path: /docs/collecting-metrics/databases/pgbouncer +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/README.md + learn_path: /docs/collecting-metrics/databases/redis +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/README.md + learn_path: /docs/collecting-metrics/apm/phpdaemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/README.md + learn_path: /docs/collecting-metrics/kubernetes/kubelet +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/pi-hole +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/README.md + learn_path: /docs/collecting-metrics/databases/sql-databases-generic +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/dnsmasq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/dnsdist +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/README.md + learn_path: /docs/collecting-metrics/logs-servers/fluentd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/README.md + learn_path: /docs/collecting-metrics/databases/mysql +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/percona_mysql.md + learn_path: /docs/collecting-metrics/databases/percona-mysql +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/mariadb.md + learn_path: /docs/collecting-metrics/databases/mariadb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/README.md + learn_path: /docs/collecting-metrics/service-discovery-/-registry/zookeeper +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/php-fpm +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/README.md + learn_path: /docs/collecting-metrics/message-brokers/rabbitmq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/uwsgi +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/README.md + learn_path: /docs/collecting-metrics/systemd/systemd-logind-users +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/nvidia-gpu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/lighttpd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/unbound +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/squid +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/README.md + learn_path: /docs/collecting-metrics/media-services/icecast +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/README.md + learn_path: /docs/collecting-metrics/security-systems/rspamd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/web-server-log-files +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/profile-format.md + learn_path: /docs/collecting-metrics/snmp-profile-format +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/README.md + learn_path: /docs/collecting-metrics/generic-collecting-metrics/snmp-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/hdd-temperature +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/README.md + learn_path: /docs/collecting-metrics/generic-collecting-metrics/prometheus-endpoint +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proftpd.md + learn_path: /docs/collecting-metrics/ftp-servers/proftpd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_solidfire.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/netapp-solidfire +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/collectd.md + learn_path: /docs/collecting-metrics/observability/collectd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dutch_electricity_smart_meter.md + learn_path: /docs/collecting-metrics/iot-devices/dutch-electricity-smart-meter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/discourse.md + learn_path: /docs/collecting-metrics/media-services/discourse +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/redis_queue.md + learn_path: /docs/collecting-metrics/message-brokers/redis-queue +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sunspec_solar_energy.md + learn_path: /docs/collecting-metrics/iot-devices/sunspec-solar-energy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/graylog_server.md + learn_path: /docs/collecting-metrics/logs-servers/graylog-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sabnzbd.md + learn_path: /docs/collecting-metrics/media-services/sabnzbd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgbackrest.md + learn_path: /docs/collecting-metrics/databases/pgbackrest +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tado_smart_heating_solution.md + learn_path: /docs/collecting-metrics/iot-devices/tado-smart-heating-solution +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/podman.md + learn_path: /docs/collecting-metrics/containers-and-vms/podman +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_ec2_compute_instances.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/aws-ec2-compute-instances +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/slurm.md + learn_path: /docs/collecting-metrics/task-queues/slurm +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/scylladb.md + learn_path: /docs/collecting-metrics/databases/scylladb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dynatrace.md + learn_path: /docs/collecting-metrics/observability/dynatrace +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/ibm-spectrum +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sense_energy.md + learn_path: /docs/collecting-metrics/iot-devices/sense-energy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloudwatch.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/cloudwatch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solar_logging_stick.md + learn_path: /docs/collecting-metrics/iot-devices/solar-logging-stick +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mogilefs.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/mogilefs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/patroni.md + learn_path: /docs/collecting-metrics/databases/patroni +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry_firehose.md + learn_path: /docs/collecting-metrics/provisioning-systems/cloud-foundry-firehose +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/authlog.md + learn_path: /docs/collecting-metrics/logs-servers/authlog +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jarvis_standing_desk.md + learn_path: /docs/collecting-metrics/iot-devices/jarvis-standing-desk +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/craftbeerpi.md + learn_path: /docs/collecting-metrics/iot-devices/craftbeerpi +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/amd_cpu_&_gpu.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/amd-cpu-&-gpu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/modbus_protocol.md + learn_path: /docs/collecting-metrics/iot-devices/modbus-protocol +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lustre_metadata.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/lustre-metadata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jmx.md + learn_path: /docs/collecting-metrics/apm/jmx +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/spacelift.md + learn_path: /docs/collecting-metrics/provisioning-systems/spacelift +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md + learn_path: /docs/collecting-metrics/iot-devices/christ-elektronik-clm5ip-power-panel +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vscode.md + learn_path: /docs/collecting-metrics/apm/vscode +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/open_vswitch.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/open-vswitch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_api_rate_limit.md + learn_path: /docs/collecting-metrics/other/github-api-rate-limit +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/crowdsec.md + learn_path: /docs/collecting-metrics/security-systems/crowdsec +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radius.md + learn_path: /docs/collecting-metrics/authentication-and-authorization/radius +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamscan_results.md + learn_path: /docs/collecting-metrics/security-systems/clamscan-results +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/storidge.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/storidge +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_z_hardware_management_console.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/ibm-z-hardware-management-console +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/twitch.md + learn_path: /docs/collecting-metrics/media-services/twitch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gcp_gce.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/gcp-gce +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/4d_server.md + learn_path: /docs/collecting-metrics/databases/4d-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_nfs.md + learn_path: /docs/collecting-metrics/freebsd/freebsd-nfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/personal_weather_station.md + learn_path: /docs/collecting-metrics/iot-devices/personal-weather-station +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/journald.md + learn_path: /docs/collecting-metrics/logs-servers/journald +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sphinx.md + learn_path: /docs/collecting-metrics/search-engines/sphinx +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clash.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/clash +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radio_thermostat.md + learn_path: /docs/collecting-metrics/iot-devices/radio-thermostat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/warp10.md + learn_path: /docs/collecting-metrics/databases/warp10 +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/steam.md + learn_path: /docs/collecting-metrics/gaming/steam +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bosh.md + learn_path: /docs/collecting-metrics/provisioning-systems/bosh +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/philips_hue.md + learn_path: /docs/collecting-metrics/iot-devices/philips-hue +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/uptimerobot.md + learn_path: /docs/collecting-metrics/synthetic-checks/uptimerobot +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jenkins.md + learn_path: /docs/collecting-metrics/cicd-platforms/jenkins +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tacacs.md + learn_path: /docs/collecting-metrics/authentication-and-authorization/tacacs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openweathermap.md + learn_path: /docs/collecting-metrics/generic-collecting-metrics/openweathermap +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_proxy.md + learn_path: /docs/collecting-metrics/kubernetes/cilium-proxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_stackdriver.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/google-stackdriver +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proxmox_ve.md + learn_path: /docs/collecting-metrics/containers-and-vms/proxmox-ve +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sma_inverters.md + learn_path: /docs/collecting-metrics/iot-devices/sma-inverters +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gitlab_runner.md + learn_path: /docs/collecting-metrics/cicd-platforms/gitlab-runner +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solis_ginlong_5g_inverters.md + learn_path: /docs/collecting-metrics/iot-devices/solis-ginlong-5g-inverters +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mqtt_blackbox.md + learn_path: /docs/collecting-metrics/message-brokers/mqtt-blackbox +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/halon.md + learn_path: /docs/collecting-metrics/mail-servers/halon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netatmo_sensors.md + learn_path: /docs/collecting-metrics/iot-devices/netatmo-sensors +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/synology_activebackup.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/synology-activebackup +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openroadm_devices.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/openroadm-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/generic_storage_enclosure_tool.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/generic-storage-enclosure-tool +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vertica.md + learn_path: /docs/collecting-metrics/databases/vertica +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_rctl-racct.md + learn_path: /docs/collecting-metrics/freebsd/freebsd-rctl-racct +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nagios.md + learn_path: /docs/collecting-metrics/observability/nagios +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/apicast.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/apicast +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/etcd.md + learn_path: /docs/collecting-metrics/service-discovery-/-registry/etcd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/site_24x7.md + learn_path: /docs/collecting-metrics/synthetic-checks/site-24x7 +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hitron_coda_cable_modem.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/hitron-coda-cable-modem +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dmarc.md + learn_path: /docs/collecting-metrics/mail-servers/dmarc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/influxdb.md + learn_path: /docs/collecting-metrics/databases/influxdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_rds.md + learn_path: /docs/collecting-metrics/databases/aws-rds +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/statuspage.md + learn_path: /docs/collecting-metrics/incident-management/statuspage +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homey.md + learn_path: /docs/collecting-metrics/iot-devices/homey +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/chia.md + learn_path: /docs/collecting-metrics/blockchain-servers/chia +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mosquitto.md + learn_path: /docs/collecting-metrics/message-brokers/mosquitto +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vault_pki.md + learn_path: /docs/collecting-metrics/security-systems/vault-pki +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/blackbox.md + learn_path: /docs/collecting-metrics/synthetic-checks/blackbox +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_mq.md + learn_path: /docs/collecting-metrics/message-brokers/ibm-mq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_pagespeed.md + learn_path: /docs/collecting-metrics/apm/google-pagespeed +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_cryptoexpress_cex_cards.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/ibm-cryptoexpress-cex-cards +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/honeypot.md + learn_path: /docs/collecting-metrics/security-systems/honeypot +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamav_daemon.md + learn_path: /docs/collecting-metrics/security-systems/clamav-daemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/eos.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/eos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgpool-ii.md + learn_path: /docs/collecting-metrics/databases/pgpool-ii +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pimoroni_enviro+.md + learn_path: /docs/collecting-metrics/iot-devices/pimoroni-enviro+ +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/minecraft.md + learn_path: /docs/collecting-metrics/gaming/minecraft +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/meilisearch.md + learn_path: /docs/collecting-metrics/search-engines/meilisearch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sysload.md + learn_path: /docs/collecting-metrics/apm/sysload +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clustercontrol_cmon.md + learn_path: /docs/collecting-metrics/databases/clustercontrol-cmon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/shelly_humidity_sensor.md + learn_path: /docs/collecting-metrics/iot-devices/shelly-humidity-sensor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ripe_atlas.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/ripe-atlas +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/elgato_key_light_devices..md + learn_path: /docs/collecting-metrics/iot-devices/elgato-key-light-devices. +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/8430ft_modem.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/8430ft-modem +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gobetween.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/gobetween +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kannel.md + learn_path: /docs/collecting-metrics/telephony-servers/kannel +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/linode.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/linode +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextcloud_servers.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/nextcloud-servers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sonic_nos.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/sonic-nos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_aix_systems_njmon.md + learn_path: /docs/collecting-metrics/apm/ibm-aix-systems-njmon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/softether_vpn_server.md + learn_path: /docs/collecting-metrics/vpns/softether-vpn-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/strongswan.md + learn_path: /docs/collecting-metrics/vpns/strongswan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/fastd.md + learn_path: /docs/collecting-metrics/vpns/fastd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/concourse.md + learn_path: /docs/collecting-metrics/cicd-platforms/concourse +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_zookeeper.md + learn_path: /docs/collecting-metrics/message-brokers/kafka-zookeeper +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tankerkoenig_api.md + learn_path: /docs/collecting-metrics/generic-collecting-metrics/tankerkoenig-api +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/starlink_spacex.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/starlink-spacex +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_ontap_api.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/netapp-ontap-api +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry.md + learn_path: /docs/collecting-metrics/provisioning-systems/cloud-foundry +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextdns.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/nextdns +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka.md + learn_path: /docs/collecting-metrics/message-brokers/kafka +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/loki.md + learn_path: /docs/collecting-metrics/logs-servers/loki +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lynis_audit_reports.md + learn_path: /docs/collecting-metrics/security-systems/lynis-audit-reports +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/suricata.md + learn_path: /docs/collecting-metrics/security-systems/suricata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bird_routing_daemon.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/bird-routing-daemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ubiquiti_ufiber_olt.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/ubiquiti-ufiber-olt +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_agent.md + learn_path: /docs/collecting-metrics/kubernetes/cilium-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/salicru_eqx_inverter.md + learn_path: /docs/collecting-metrics/iot-devices/salicru-eqx-inverter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dnsbl.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/dnsbl +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/frrouting.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/frrouting +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freifunk_network.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/freifunk-network +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/powerpal_devices.md + learn_path: /docs/collecting-metrics/iot-devices/powerpal-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/celery.md + learn_path: /docs/collecting-metrics/task-queues/celery +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/keepalived.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/keepalived +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_repository.md + learn_path: /docs/collecting-metrics/other/github-repository +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homebridge.md + learn_path: /docs/collecting-metrics/iot-devices/homebridge +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/siemens_s7_plc.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/siemens-s7-plc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mtail.md + learn_path: /docs/collecting-metrics/logs-servers/mtail +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nrpe_daemon.md + learn_path: /docs/collecting-metrics/apm/nrpe-daemon +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/xiaomi_mi_flora.md + learn_path: /docs/collecting-metrics/iot-devices/xiaomi-mi-flora +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cryptowatch.md + learn_path: /docs/collecting-metrics/blockchain-servers/cryptowatch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hana.md + learn_path: /docs/collecting-metrics/databases/hana +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_cloud_platform.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/google-cloud-platform +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/grafana.md + learn_path: /docs/collecting-metrics/observability/grafana +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_quota.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/aws-quota +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mesos.md + learn_path: /docs/collecting-metrics/task-queues/mesos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/energomera_smart_power_meters.md + learn_path: /docs/collecting-metrics/iot-devices/energomera-smart-power-meters +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openrc.md + learn_path: /docs/collecting-metrics/linux-systems/openrc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_wall_connector.md + learn_path: /docs/collecting-metrics/iot-devices/tesla-wall-connector +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/yourls_url_shortener.md + learn_path: /docs/collecting-metrics/apm/yourls-url-shortener +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gpsd.md + learn_path: /docs/collecting-metrics/apm/gpsd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_vehicle.md + learn_path: /docs/collecting-metrics/iot-devices/tesla-vehicle +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nature_remo_e_lite_devices.md + learn_path: /docs/collecting-metrics/iot-devices/nature-remo-e-lite-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum_virtualize.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/ibm-spectrum-virtualize +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_consumer_lag.md + learn_path: /docs/collecting-metrics/service-discovery-/-registry/kafka-consumer-lag +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/alamos_fe2_server.md + learn_path: /docs/collecting-metrics/apm/alamos-fe2-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hubble.md + learn_path: /docs/collecting-metrics/observability/hubble +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/obs_studio.md + learn_path: /docs/collecting-metrics/media-services/obs-studio +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/smart_meters_sml.md + learn_path: /docs/collecting-metrics/iot-devices/smart-meters-sml +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/raritan_pdu.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/raritan-pdu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/zerto.md + learn_path: /docs/collecting-metrics/cloud-provider-managed/zerto +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_operator.md + learn_path: /docs/collecting-metrics/kubernetes/cilium-operator +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bungeecord.md + learn_path: /docs/collecting-metrics/gaming/bungeecord +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/README.md + learn_path: /docs/collecting-metrics/message-brokers/vernemq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/adaptec-raid +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/README.md + learn_path: /docs/collecting-metrics/message-brokers/apache-pulsar +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/vcenter-server-appliance +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/README.md + learn_path: /docs/collecting-metrics/blockchain-servers/go-ethereum +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/powerdns-recursor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/README.md + learn_path: /docs/collecting-metrics/message-brokers/beanstalk +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/README.md + learn_path: /docs/collecting-metrics/databases/mongodb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/docker-hub-repository +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/README.md + learn_path: /docs/collecting-metrics/databases/microsoft-sql-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/intel-gpu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/haproxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/README.md + learn_path: /docs/collecting-metrics/mail-servers/dovecot +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/README.md + learn_path: /docs/collecting-metrics/databases/oracle-db +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/README.md + learn_path: /docs/collecting-metrics/other/files-and-directories +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/README.md + learn_path: /docs/collecting-metrics/processes-and-system-services/supervisor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/README.md + learn_path: /docs/collecting-metrics/vpns/tor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/varnish +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/samba +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/README.md + learn_path: /docs/collecting-metrics/networking-stack-and-network-interfaces/optical-modules +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/docker-engine +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/README.md + learn_path: /docs/collecting-metrics/databases/cassandra +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/README.md + learn_path: /docs/collecting-metrics/authentication-and-authorization/freeradius +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/powerdns-authoritative-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/tengine +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/storecli-raid +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/domain-expiration-date +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/README.md + learn_path: /docs/collecting-metrics/vpns/openvpn-status-log +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/README.md + learn_path: /docs/collecting-metrics/databases/pika +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/README.md + learn_path: /docs/collecting-metrics/databases/rethinkdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/isc-dhcp +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/README.md + learn_path: /docs/collecting-metrics/databases/couchbase +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/README.md + learn_path: /docs/collecting-metrics/message-brokers/nats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/README.md + learn_path: /docs/collecting-metrics/gaming/spigotmc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/coredns +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/tomcat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/vmware-vcenter-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/README.md + learn_path: /docs/collecting-metrics/databases/clickhouse +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/README.md + learn_path: /docs/collecting-metrics/ups/apc-ups +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/README.md + learn_path: /docs/collecting-metrics/vpns/openvpn +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/README.md + learn_path: /docs/collecting-metrics/databases/proxysql +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/README.md + learn_path: /docs/collecting-metrics/linux-systems/network/access-points +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/zfs-pools +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/nginx-unit +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/ipfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/nvme-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/1-wire-sensors +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/hadoop-distributed-file-system-hdfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/http-endpoints +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/dell-emc-scaleio +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/monit +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/nginx-plus +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/README.md + learn_path: /docs/collecting-metrics/databases/yugabytedb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/lvm-logical-volumes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/README.md + learn_path: /docs/collecting-metrics/databases/couchdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/README.md + learn_path: /docs/collecting-metrics/mail-servers/postfix +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/README.md + learn_path: /docs/collecting-metrics/databases/maxscale +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/dns-query +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/README.md + learn_path: /docs/collecting-metrics/system-clock-and-ntp/ntpd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/README.md + learn_path: /docs/collecting-metrics/message-brokers/activemq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/README.md + learn_path: /docs/collecting-metrics/systemd/systemd-units +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/hpe-smart-arrays +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/README.md + learn_path: /docs/collecting-metrics/storage,-mount-points-and-filesystems/dmcache-devices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/squid-log-files +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/ping +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/README.md + learn_path: /docs/collecting-metrics/logs-servers/logstash +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/README.md + learn_path: /docs/collecting-metrics/system-clock-and-ntp/chrony +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/tcp-udp-endpoints +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/apache +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/integrations/httpd.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/httpd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/litespeed +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/linux-sensors +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/nginx-vts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/nsd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/README.md + learn_path: /docs/collecting-metrics/databases/riak-kv +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/README.md + learn_path: /docs/collecting-metrics/search-engines/typesense +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/README.md + learn_path: /docs/collecting-metrics/ups/ups-nut +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/README.md + learn_path: /docs/collecting-metrics/dns-and-dhcp-servers/dnsmasq-dhcp +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/s.m.a.r.t. +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/README.md + learn_path: /docs/collecting-metrics/authentication-and-authorization/fail2ban +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/README.md + learn_path: /docs/collecting-metrics/authentication-and-authorization/openldap +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/docker +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/x.509-certificate +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/README.md + learn_path: /docs/collecting-metrics/web-servers-and-web-proxies/envoy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/README.md + learn_path: /docs/collecting-metrics/distributed-computing-systems/gearman +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/README.md + learn_path: /docs/collecting-metrics/databases/postgresql +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/README.md + learn_path: /docs/collecting-metrics/databases/cockroachdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/docs/how-to-write-a-module.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/go.d.plugin/how-to-write-a-netdata-collector-in-go +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/ses/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/single-or-simple-exponential-smoothing-ses +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/median/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/median +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/incremental_sum/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/incremental-sum-incremental_sum +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/trimmed_mean/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/trimmed-mean +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/average/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/average-or-mean +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/des/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/double-exponential-smoothing +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/stddev/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/standard-deviation-stddev +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/sum/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/sum +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/max/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/max +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/percentile/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/percentile +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/min/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/min +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/queries/countif/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/queries/countif +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/health/README.md + learn_path: /docs/alerts-&-notifications/health-api-calls +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/exporters/shell/README.md + learn_path: /docs/exporting-metrics/shell-scripts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/formatters +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/json/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/formatters/json-formatter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/value/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/formatters/value-formatter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/csv/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/formatters/csv-formatter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/api/formatters/ssv/README.md + learn_path: /docs/developer-and-contributor-corner/rest-api/formatters/ssv-formatter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/web/server/README.md + learn_path: /docs/netdata-agent/configuration/securing-agents/web-server-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_REFERENCE.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/functions-v3-protocol-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/README.md + learn_path: /docs/developer-and-contributor-corner/external-plugins +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/functions-developer-guide +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/overriding-stock-alerts.md + learn_path: /docs/alerts-&-notifications/overriding-stock-alerts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/REFERENCE.md + learn_path: /docs/alerts-&-notifications/alert-configuration-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/alert-configuration-ordering.md + learn_path: /docs/alerts-&-notifications/alert-configuration-ordering +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/README.md + learn_path: /docs/alerts-&-notifications +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/agent-notifications-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/custom +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/ntfy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/aws-sns +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/opsgenie +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/microsoft-teams +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/kavenegar +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/discord +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/gotify +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/email/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/email +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/sms +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/messagebird +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/signl4 +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pushbullet +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/prowl +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/alerta +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/syslog +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/ilert +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/rocketchat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/dynatrace +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/flock +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/smseagle +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/telegram +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pagerduty +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pushover +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/matrix +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/twilio +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/slack +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/README.md + learn_path: /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/irc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/COLLECTORS.md + learn_path: /docs/welcome-to-netdata/monitor-anything +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/REFERENCE.md + learn_path: /docs/collecting-metrics/collectors-configuration +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/README.md + learn_path: /docs/collecting-metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/README.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/charts.d.plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/README.md + learn_path: /docs/collecting-metrics/vpns/libreswan +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/README.md + learn_path: /docs/collecting-metrics/telephony-servers/opensips +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/README.md + learn_path: /docs/collecting-metrics/linux-systems/cpu-performance +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/cups +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/README.md + learn_path: /docs/collecting-metrics/linux-systems/firewall/netfilter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md + learn_path: /docs/collecting-metrics/freebsd/vm.stats.vm.v_swappgs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getifaddrs.md + learn_path: /docs/collecting-metrics/freebsd/getifaddrs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet.ip.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.cp_time.md + learn_path: /docs/collecting-metrics/freebsd/kern.cp_time +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/zfs.md + learn_path: /docs/collecting-metrics/freebsd/zfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getmntinfo.md + learn_path: /docs/collecting-metrics/freebsd/getmntinfo +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md + learn_path: /docs/collecting-metrics/freebsd/vm.stats.sys.v_soft +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet.icmp.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet6.icmp6.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.sem.md + learn_path: /docs/collecting-metrics/freebsd/kern.ipc.sem +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/ipfw.md + learn_path: /docs/collecting-metrics/freebsd/ipfw +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet6.ip6.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.msq.md + learn_path: /docs/collecting-metrics/freebsd/kern.ipc.msq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md + learn_path: /docs/collecting-metrics/freebsd/dev.cpu.0.freq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md + learn_path: /docs/collecting-metrics/freebsd/vm.stats.sys.v_intr +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.swap_info.md + learn_path: /docs/collecting-metrics/freebsd/vm.swap_info +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.shm.md + learn_path: /docs/collecting-metrics/freebsd/kern.ipc.shm +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md + learn_path: /docs/collecting-metrics/freebsd/net.inet.tcp.states +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/uptime.md + learn_path: /docs/collecting-metrics/freebsd/uptime +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.loadavg.md + learn_path: /docs/collecting-metrics/freebsd/vm.loadavg +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.isr.md + learn_path: /docs/collecting-metrics/freebsd/net.isr +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/hw.intrcnt.md + learn_path: /docs/collecting-metrics/freebsd/hw.intrcnt +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md + learn_path: /docs/collecting-metrics/freebsd/vm.stats.sys.v_swtch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/system.ram.md + learn_path: /docs/collecting-metrics/freebsd/system.ram +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/devstat.md + learn_path: /docs/collecting-metrics/freebsd/devstat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md + learn_path: /docs/collecting-metrics/freebsd/vm.stats.vm.v_pgfaults +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet.tcp.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md + learn_path: /docs/collecting-metrics/freebsd/net.inet.udp.stats +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.vmtotal.md + learn_path: /docs/collecting-metrics/freebsd/vm.vmtotal +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md + learn_path: /docs/collecting-metrics/freebsd/dev.cpu.temperature +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/README.md + learn_path: /docs/collecting-metrics/linux-systems/network/tc-qos-classes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/intelligent-platform-management-interface-ipmi +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md + learn_path: /docs/collecting-metrics/windows-systems/active-directory-federation-service +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/memory_statistics.md + learn_path: /docs/collecting-metrics/windows-systems/memory-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hyper-v.md + learn_path: /docs/collecting-metrics/windows-systems/hyper-v +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/iis.md + learn_path: /docs/collecting-metrics/windows-systems/iis +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_exchange.md + learn_path: /docs/collecting-metrics/windows-systems/ms-exchange +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_thermal_zone.md + learn_path: /docs/collecting-metrics/windows-systems/system-thermal-zone +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/semaphore_statistics.md + learn_path: /docs/collecting-metrics/windows-systems/semaphore-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/asp.net.md + learn_path: /docs/collecting-metrics/windows-systems/asp.net +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/numa_architecture.md + learn_path: /docs/collecting-metrics/windows-systems/numa-architecture +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md + learn_path: /docs/collecting-metrics/windows-systems/active-directory-certificate-service +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/network_subsystem.md + learn_path: /docs/collecting-metrics/windows-systems/network-subsystem +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/windows_services.md + learn_path: /docs/collecting-metrics/windows-systems/windows-services +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_statistics.md + learn_path: /docs/collecting-metrics/windows-systems/system-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/processor.md + learn_path: /docs/collecting-metrics/windows-systems/processor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/power_supply.md + learn_path: /docs/collecting-metrics/windows-systems/power-supply +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md + learn_path: /docs/collecting-metrics/windows-systems/hardware-information-collected-from-kernel-ring. +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory.md + learn_path: /docs/collecting-metrics/windows-systems/active-directory +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/physical_and_logical_disk_performance_metrics.md + learn_path: /docs/collecting-metrics/windows-systems/physical-and-logical-disk-performance-metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_sql_server.md + learn_path: /docs/collecting-metrics/windows-systems/ms-sql-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/sensors.md + learn_path: /docs/collecting-metrics/windows-systems/sensors +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/net_framework.md + learn_path: /docs/collecting-metrics/windows-systems/net-framework +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/kubernetes_containers.md + learn_path: /docs/collecting-metrics/kubernetes/kubernetes-containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/proxmox_containers.md + learn_path: /docs/collecting-metrics/containers-and-vms/proxmox-containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/systemd_services.md + learn_path: /docs/collecting-metrics/systemd/systemd-services +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/virtual_machines.md + learn_path: /docs/collecting-metrics/containers-and-vms/virtual-machines +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/containers.md + learn_path: /docs/collecting-metrics/containers-and-vms/containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/libvirt_containers.md + learn_path: /docs/collecting-metrics/containers-and-vms/libvirt-containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/ovirt_containers.md + learn_path: /docs/collecting-metrics/containers-and-vms/ovirt-containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/lxc_containers.md + learn_path: /docs/collecting-metrics/containers-and-vms/lxc-containers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/README.md + learn_path: /docs/collecting-metrics/linux-systems/kernel/linux-kernel-slab-allocator-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/ioping +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/linux_zswap.md + learn_path: /docs/collecting-metrics/linux-systems/memory/linux-zswap +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/system_memory_fragmentation.md + learn_path: /docs/collecting-metrics/linux-systems/memory/system-memory-fragmentation +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/power_capping.md + learn_path: /docs/collecting-metrics/linux-systems/kernel/power-capping +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/user_groups.md + learn_path: /docs/collecting-metrics/processes-and-system-services/user-groups +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/applications.md + learn_path: /docs/collecting-metrics/processes-and-system-services/applications +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/users.md + learn_path: /docs/collecting-metrics/processes-and-system-services/users +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/README.md + learn_path: /docs/collecting-metrics/containers-and-vms/xen-xcp-ng +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/README.md + learn_path: /docs/collecting-metrics/macos-systems/macos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_shm.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-shm +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_vfs.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-vfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_dcstat.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-dcstat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_swap.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-swap +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_sync.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-sync +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mount.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-mount +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_process.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-process +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_oomkill.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-oomkill +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_softirq.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-softirq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_cachestat.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-cachestat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_hardirq.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-hardirq +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_socket.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-socket +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_disk.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-disk +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_processes.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-processes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filedescriptor.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-filedescriptor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filesystem.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-filesystem +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mdflush.md + learn_path: /docs/collecting-metrics/ebpf/ebpf-mdflush +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/README.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/python.d.plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/README.md + learn_path: /docs/collecting-metrics/generic-collecting-metrics/pandas +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/README.md + learn_path: /docs/collecting-metrics/apm/go-applications-expvar +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/README.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/am2320 +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/README.md + learn_path: /docs/collecting-metrics/synthetic-checks/idle-os-jitter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/README.md + learn_path: /docs/collecting-metrics/linux-systems/disk-space +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/README.md + learn_path: /docs/collecting-metrics/system-clock-and-ntp/timex +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/profile.plugin/README.md + learn_path: /docs/developer-and-contributor-corner/external-plugins/profile.plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/pressure_stall_information.md + learn_path: /docs/collecting-metrics/linux-systems/pressure/pressure-stall-information +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/memory/memory-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/kernel_same-page_merging.md + learn_path: /docs/collecting-metrics/linux-systems/memory/kernel-same-page-merging +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/network/network-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_server.md + learn_path: /docs/collecting-metrics/linux-systems/filesystem/nfs/nfs-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zram.md + learn_path: /docs/collecting-metrics/linux-systems/memory/zram +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/md_raid.md + learn_path: /docs/collecting-metrics/linux-systems/disk/md-raid +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_modules_dimms.md + learn_path: /docs/collecting-metrics/linux-systems/memory/memory-modules-dimms +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/infiniband.md + learn_path: /docs/collecting-metrics/linux-systems/network/infiniband +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/interrupts.md + learn_path: /docs/collecting-metrics/linux-systems/cpu/interrupts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/synproxy.md + learn_path: /docs/collecting-metrics/linux-systems/firewall/synproxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_interfaces.md + learn_path: /docs/collecting-metrics/linux-systems/network/network-interfaces +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/entropy.md + learn_path: /docs/collecting-metrics/linux-systems/system/entropy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softirq_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/cpu/softirq-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softnet_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/network/softnet-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/inter_process_communication.md + learn_path: /docs/collecting-metrics/linux-systems/ipc/inter-process-communication +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/disk_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/disk/disk-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/btrfs.md + learn_path: /docs/collecting-metrics/linux-systems/filesystem/btrfs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_usage.md + learn_path: /docs/collecting-metrics/linux-systems/memory/memory-usage +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/page_types.md + learn_path: /docs/collecting-metrics/linux-systems/memory/page-types +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/wireless_network_interfaces.md + learn_path: /docs/collecting-metrics/linux-systems/network/wireless-network-interfaces +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/socket_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/network/socket-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ip_virtual_server.md + learn_path: /docs/collecting-metrics/linux-systems/network/ip-virtual-server +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/sctp_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/network/sctp-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ipv6_socket_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/network/ipv6-socket-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_uptime.md + learn_path: /docs/collecting-metrics/linux-systems/system/system-uptime +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/conntrack.md + learn_path: /docs/collecting-metrics/linux-systems/firewall/conntrack +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_statistics.md + learn_path: /docs/collecting-metrics/linux-systems/system/system-statistics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/amd_gpu.md + learn_path: /docs/collecting-metrics/hardware-devices-and-sensors/amd-gpu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/power_supply.md + learn_path: /docs/collecting-metrics/linux-systems/power-supply +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/non-uniform_memory_access.md + learn_path: /docs/collecting-metrics/linux-systems/memory/non-uniform-memory-access +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_client.md + learn_path: /docs/collecting-metrics/linux-systems/filesystem/nfs/nfs-client +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_load_average.md + learn_path: /docs/collecting-metrics/linux-systems/system/system-load-average +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zfs_adaptive_replacement_cache.md + learn_path: /docs/collecting-metrics/linux-systems/filesystem/zfs/zfs-adaptive-replacement-cache +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/statsd.plugin/README.md + learn_path: /docs/collecting-metrics/statsd +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/log2journal/README.md + learn_path: /docs/logs/log2journal +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/collectors/windows-events.plugin/README.md + learn_path: /docs/logs/windows-event-logs/windows-events-plugin-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/README.md + learn_path: /docs/exporting-metrics/exporting-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/json/README.md + learn_path: /docs/exporting-metrics/connectors/json +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/README.md + learn_path: /docs/exporting-metrics/connectors/graphite +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/blueflood.md + learn_path: /docs/exporting-metrics/connectors/blueflood +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/kairosdb.md + learn_path: /docs/exporting-metrics/connectors/kairosdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/README.md + learn_path: /docs/exporting-metrics/connectors/aws-kinesis +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/README.md + learn_path: /docs/exporting-metrics/prometheus +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/remote_write/README.md + learn_path: /docs/exporting-metrics/connectors/prometheus-remote-write +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cratedb.md + learn_path: /docs/exporting-metrics/connectors/cratedb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/wavefront.md + learn_path: /docs/exporting-metrics/connectors/wavefront +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/gnocchi.md + learn_path: /docs/exporting-metrics/connectors/gnocchi +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/postgresql.md + learn_path: /docs/exporting-metrics/connectors/postgresql +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/google_bigquery.md + learn_path: /docs/exporting-metrics/connectors/google-bigquery +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/opeansearch.md + learn_path: /docs/exporting-metrics/connectors/opeansearch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/splunk_signalfx.md + learn_path: /docs/exporting-metrics/connectors/splunk-signalfx +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/greptimedb.md + learn_path: /docs/exporting-metrics/connectors/greptimedb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/tikv.md + learn_path: /docs/exporting-metrics/connectors/tikv +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cortex.md + learn_path: /docs/exporting-metrics/connectors/cortex +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_data_explorer.md + learn_path: /docs/exporting-metrics/connectors/azure-data-explorer +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/new_relic.md + learn_path: /docs/exporting-metrics/connectors/new-relic +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/quasardb.md + learn_path: /docs/exporting-metrics/connectors/quasardb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/metricfire.md + learn_path: /docs/exporting-metrics/connectors/metricfire +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/victoriametrics.md + learn_path: /docs/exporting-metrics/connectors/victoriametrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/elasticsearch.md + learn_path: /docs/exporting-metrics/connectors/elasticsearch +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/timescaledb.md + learn_path: /docs/exporting-metrics/connectors/timescaledb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_event_hub.md + learn_path: /docs/exporting-metrics/connectors/azure-event-hub +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/irondb.md + learn_path: /docs/exporting-metrics/connectors/irondb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/kafka.md + learn_path: /docs/exporting-metrics/connectors/kafka +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/m3db.md + learn_path: /docs/exporting-metrics/connectors/m3db +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/thanos.md + learn_path: /docs/exporting-metrics/connectors/thanos +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/chronix.md + learn_path: /docs/exporting-metrics/connectors/chronix +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/appoptics.md + learn_path: /docs/exporting-metrics/connectors/appoptics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/vmware_aria.md + learn_path: /docs/exporting-metrics/connectors/vmware-aria +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/README.md + learn_path: /docs/exporting-metrics/connectors/mongodb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/README.md + learn_path: /docs/exporting-metrics/connectors/opentsdb +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/README.md + learn_path: /docs/exporting-metrics/connectors/google-cloud-pub-sub +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/streaming/README.md + learn_path: /docs/netdata-parents/parent-child-configuration-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/ml/ml-configuration.md + learn_path: /docs/netdata-ai/anomaly-detection/ml-configuration +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/registry/CONFIGURATION.md + learn_path: /docs/netdata-agent/configuration/registry +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/registry/README.md + learn_path: /docs/netdata-agent/registry +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/CONFIGURATION.md + learn_path: /docs/netdata-agent/configuration/database +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/README.md + learn_path: /docs/netdata-agent/database +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/database/engine/README.md + learn_path: /docs/developer-and-contributor-corner/database-engine +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/cli/README.md + learn_path: /docs/netdata-agent/agent-cli +- custom_edit_url: https://github.com/netdata/netdata/edit/master/src/claim/README.md + learn_path: /docs/netdata-cloud/connect-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/tests/health_mgmtapi/README.md + learn_path: /docs/developer-and-contributor-corner/health-command-api-tester +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/Demo-Sites.md + learn_path: /docs/live-demo +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/fleet-configuration-management.md + learn_path: /docs/welcome-to-netdata/fleet-deployment-and-configuration-management +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md + learn_path: /docs/dashboards-and-charts/nidl-framework +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/realtime-monitoring.md + learn_path: /docs/welcome-to-netdata/real-time-monitoring +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/scalability.md + learn_path: /docs/welcome-to-netdata/scalability +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md + learn_path: /docs/welcome-to-netdata/enterprise-evaluation-guide +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/reporting.md + learn_path: /docs/welcome-to-netdata/reporting +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/streaming-routing.md + learn_path: /docs/netdata-parents/streaming-routing-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/welcome-to-netdata.md + learn_path: /docs/welcome-to-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/glossary.md + learn_path: /docs/developer-and-contributor-corner/glossary +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/metric-correlations.md + learn_path: /docs/netdata-ai/troubleshooting/metric-correlations +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/guidelines.md + learn_path: /docs/developer-and-contributor-corner/contribute-to-the-documentation +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/top-monitoring-netdata-functions.md + learn_path: /docs/top-consumers +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md + learn_path: /docs/netdata-parents/node-types-and-lifecycle-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/maintenance-operations-on-netdata-agents.md + learn_path: /docs/netdata-agent/maintenance +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/machine-learning-and-assisted-troubleshooting.md + learn_path: /docs/netdata-ai +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/best-practices.md + learn_path: /docs/netdata-parents/parent-configuration-best-practices +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption.md + learn_path: /docs/logs/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates.md + learn_path: /docs/logs/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/README.md + learn_path: /docs/logs/logs-centralization-points-with-systemd-journald +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents.md + learn_path: /docs/netdata-parents/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/configuration.md + learn_path: /docs/netdata-parents/metrics-centralization-points/configuring-metrics-centralization-points +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/faq.md + learn_path: /docs/netdata-parents/metrics-centralization-points/faq-on-metrics-centralization-points +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/README.md + learn_path: /docs/netdata-parents/metrics-centralization-points +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/replication-of-past-samples.md + learn_path: /docs/netdata-parents/metrics-centralization-points/replication-of-past-samples +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/standalone-deployment.md + learn_path: /docs/netdata-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-with-centralization-points.md + learn_path: /docs/netdata-parents +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-strategies.md + learn_path: /docs/netdata-parents/configuration-examples +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/deployment-guides/README.md + learn_path: /docs/netdata-agent/quickstart-deployment +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/backup-and-restore-an-agent.md + learn_path: /docs/netdata-agent/maintenance/backup-and-restore-an-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/start-stop-restart.md + learn_path: /docs/netdata-agent/maintenance/service-control +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/securing-netdata-agents.md + learn_path: /docs/netdata-agent/configuration/securing-agents +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/versions-and-platforms.md + learn_path: /docs/netdata-agent/versions-&-platforms +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/disk-requirements-and-retention.md + learn_path: /docs/netdata-agent/resource-utilization/disk-&-retention +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/bandwidth-requirements.md + learn_path: /docs/netdata-agent/resource-utilization/bandwidth +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/README.md + learn_path: /docs/netdata-agent/resource-utilization +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/ram-requirements.md + learn_path: /docs/netdata-agent/resource-utilization/ram +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/cpu-requirements.md + learn_path: /docs/netdata-agent/resource-utilization/cpu +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/dynamic-configuration.md + learn_path: /docs/netdata-agent/configuration/dynamic-configuration-manager +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/optimize-the-netdata-agents-performance.md + learn_path: /docs/netdata-agent/configuration/performance-optimization +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/README.md + learn_path: /docs/netdata-agent/configuration +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts.md + learn_path: /docs/netdata-agent/configuration/organize-systems-metrics-and-alerts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/anonymous-telemetry-events.md + learn_path: /docs/netdata-agent/anonymous-telemetry-events +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata.md + learn_path: /docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/caddy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/apache +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/lighttpd-v1.4.x +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/README.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/haproxy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-h2o.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/h2o +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md + learn_path: /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/nginx +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md + learn_path: /docs/developer-and-contributor-corner/monitor-nginx-or-apache-web-server-log-files-with-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/running-through-cf-tunnels.md + learn_path: /docs/developer-and-contributor-corner/running-a-local-dashboard-through-cloudflare-tunnels +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-unbound-metrics.md + learn_path: /docs/developer-and-contributor-corner/monitor-unbound-dns-servers-with-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/build-the-netdata-agent-yourself.md + learn_path: /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-debug-applications-ebpf.md + learn_path: /docs/developer-and-contributor-corner/monitor-troubleshoot-and-debug-applications-with-ebpf-metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/style-guide.md + learn_path: /docs/developer-and-contributor-corner/contribute-to-the-documentation/netdata-style-guide +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-hadoop-cluster.md + learn_path: /docs/developer-and-contributor-corner/monitor-a-hadoop-cluster-with-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/dyncfg.md + learn_path: /docs/developer-and-contributor-corner/dynamic-configuration +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/README.md + learn_path: /docs/developer-and-contributor-corner +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/dashboards-tab.md + learn_path: /docs/dashboards-and-charts/tabs/dashboards +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/metrics-tab-and-single-node-tabs.md + learn_path: /docs/dashboards-and-charts/tabs/metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/nodes-tab.md + learn_path: /docs/dashboards-and-charts/tabs/nodes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/expanded-chart-analysis.md + learn_path: /docs/dashboards-and-charts/expanded-chart-analysis +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/import-export-print-snapshot.md + learn_path: /docs/developer-and-contributor-corner/import-export-and-print-a-snapshot +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/anomaly-advisor-tab.md + learn_path: /docs/dashboards-and-charts/tabs/anomalies +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/alerts-tab.md + learn_path: /docs/dashboards-and-charts/tabs/alerts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/visualization-date-and-time-controls.md + learn_path: /docs/dashboards-and-charts/time-controls +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/README.md + learn_path: /docs/dashboards-and-charts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/kubernetes-tab.md + learn_path: /docs/dashboards-and-charts/tabs/kubernetes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/top-tab.md + learn_path: /docs/dashboards-and-charts/tabs/top +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/events-feed.md + learn_path: /docs/dashboards-and-charts/tabs/events +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/home-tab.md + learn_path: /docs/dashboards-and-charts/tabs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/netdata-charts.md + learn_path: /docs/dashboards-and-charts/charts +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/logs-tab.md + learn_path: /docs/dashboards-and-charts/tabs/logs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/themes.md + learn_path: /docs/dashboards-and-charts/theme +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/node-filter.md + learn_path: /docs/dashboards-and-charts/node-filter +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/forward_secure_sealing.md + learn_path: /docs/logs/systemd-journal-logs/forward-secure-sealing-fss-in-systemd-journal +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/active_journal_centralization_guide_no_encryption.md + learn_path: /docs/logs/logs-centralization-points-with-systemd-journald/active-journal-source-without-encryption +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/logs/README.md + learn_path: /docs/logs/systemd-journal-logs/journal-viewer-plugin +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/enable-an-exporting-connector.md + learn_path: /docs/exporting-metrics/enable-an-exporting-connector +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/README.md + learn_path: /docs/exporting-metrics +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/processes.md + learn_path: /docs/top-consumers/processes +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/functions/databases.md + learn_path: /docs/top-consumers/database-queries +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/getting-started-netdata/guide.md + learn_path: /docs/getting-started +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/switching-install-types.md + learn_path: /docs/netdata-agent/installation/linux/switch-install-types-and-release-channels +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/unclaim-reclaim-node.md + learn_path: /docs/netdata-cloud/unclaim-and-reclaim-a-node +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/vm-templates.md + learn_path: /docs/netdata-agent/vm-templates +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/remove-node.md + learn_path: /docs/netdata-cloud/remove-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/learn/node-identities.md + learn_path: /docs/netdata-agent/node-identities +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/conversations.md + learn_path: /docs/netdata-ai/conversations +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/scheduled-investigations.md + learn_path: /docs/netdata-ai/investigations/scheduled-investigations +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/custom-investigations.md + learn_path: /docs/netdata-ai/investigations/custom-investigations +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/index.md + learn_path: /docs/netdata-ai/investigations +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/alerts-automation/alerts-automation.md + learn_path: /docs/netdata-ai/alerts-automation +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/ai-chat-netdata.md + learn_path: /docs/netdata-ai/mcp/chat-with-netdata +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/README.md + learn_path: /docs/netdata-ai/mcp +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/vs-code.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/visual-studio-code +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/ai-devops-copilot.md + learn_path: /docs/netdata-ai/mcp/mcp-clients +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/crush.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/crush +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/codex-cli.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/openai-codex-cli +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/cursor.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/cursor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/netdata-web-client.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/netdata-web-client +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-desktop.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/claude-desktop +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/opencode.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/opencode +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/jetbrains-ides.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/jetbrains-ides +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-code.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/claude-code +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/gemini-cli.md + learn_path: /docs/netdata-ai/mcp/mcp-clients/gemini-cli +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/infrastructure-summary.md + learn_path: /docs/netdata-ai/insights/infrastructure-summary +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/performance-optimization.md + learn_path: /docs/netdata-ai/insights/performance-optimization +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/scheduled-reports.md + learn_path: /docs/netdata-ai/insights/scheduled-reports +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/anomaly-analysis.md + learn_path: /docs/netdata-ai/insights/anomaly-analysis +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/capacity-planning.md + learn_path: /docs/netdata-ai/insights/capacity-planning +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-ai/troubleshooting/index.md + learn_path: /docs/netdata-ai/troubleshooting +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/delete/netdata/account.md + learn_path: /docs/netdata-cloud/account-deletion +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/troubleshooting/troubleshoot.md + learn_path: /docs/netdata-ai/troubleshooting/alert-troubleshooting +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-cloud-security.md + learn_path: /docs/security-and-privacy-design/netdata-cloud +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-agent-security.md + learn_path: /docs/security-and-privacy-design/netdata-agent +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/README.md + learn_path: /docs/security-and-privacy-design +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/install/windows-release-channels.md + learn_path: /docs/netdata-agent/installation/windows/switching-install-types-and-release-channels +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/creating-alerts-with-netdata-alerts-configuration-manager.md + learn_path: /docs/alerts-&-notifications/creating-alerts-with-the-alerts-configuration-manager +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/README.md + learn_path: /docs/alerts-&-notifications/notifications +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-notification-methods.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/manage-notification-methods +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ai-insights.md + learn_path: /docs/netdata-ai/insights +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/anomaly-advisor.md + learn_path: /docs/netdata-ai/troubleshooting/anomaly-advisor +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-accuracy.md + learn_path: /docs/netdata-ai/anomaly-detection/ml-accuracy +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-anomaly-detection.md + learn_path: /docs/netdata-ai/anomaly-detection +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md + learn_path: /docs/netdata-cloud/spaces-and-rooms +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-states-and-transitions.md + learn_path: /docs/netdata-cloud/node-states-and-transitions +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-rule-based-room-assignment.md + learn_path: /docs/netdata-cloud/spaces-and-rooms/node-rule-based-room-assignment +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/README.md + learn_path: /docs/netdata-cloud +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/view-plan-and-billing.md + learn_path: /docs/netdata-cloud/netdata-plans-&-billing +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/role-based-access-model.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/role-based-access-model +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/api-tokens.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/api-tokens +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/enterprise-sso-authentication.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/enterprise-sso-authentication +- custom_edit_url: https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/README.md + learn_path: /docs/netdata-cloud/authentication-&-authorization +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/slack.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/slack +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/amazon_sns.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/amazon-sns +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/telegram.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/telegram +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/rocketchat.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/rocketchat +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk_victorops.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/splunk-victorops +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/webhook.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/webhook +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/pagerduty.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/pagerduty +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/netdata_mobile_app.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/netdata-mobile-app +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/opsgenie.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/opsgenie +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/servicenow.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/servicenow +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/mattermost.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/mattermost +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/splunk +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/microsoft_teams.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/microsoft-teams +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/ilert.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/ilert +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/discord.md + learn_path: /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/discord +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/windows_event_logs.md + learn_path: /docs/logs/windows-event-logs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/systemd_journal_logs.md + learn_path: /docs/logs/systemd-journal-logs +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/okta_sso.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/okta-sso +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/oidc.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/oidc +- custom_edit_url: https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/scim.md + learn_path: /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/scim +- custom_edit_url: https://github.com/netdata/helmchart/edit/master/charts/netdata/README.md + learn_path: /docs/netdata-agent/installation/kubernetes-helm-chart-reference +- custom_edit_url: https://github.com/netdata/.github/edit/main/SECURITY.md + learn_path: /docs/developer-and-contributor-corner/security-policy +- custom_edit_url: https://github.com/netdata/.github/edit/main/CONTRIBUTING.md + learn_path: /docs/developer-and-contributor-corner/contributing +- custom_edit_url: https://github.com/netdata/.github/edit/main/CODE_OF_CONDUCT.md + learn_path: /docs/developer-and-contributor-corner/community-code-of-conduct From 90277263c93efea7e308ad415348b5c6c6ceedbc Mon Sep 17 00:00:00 2001 From: fotis Date: Mon, 2 Feb 2026 11:47:39 +0200 Subject: [PATCH 2/3] remove old files --- ingest/generated_map.tsv | 831 --------------------------- ingest/one_commit_back_file-dict.tsv | 761 ------------------------ 2 files changed, 1592 deletions(-) delete mode 100644 ingest/generated_map.tsv delete mode 100644 ingest/one_commit_back_file-dict.tsv diff --git a/ingest/generated_map.tsv b/ingest/generated_map.tsv deleted file mode 100644 index 745427934b..0000000000 --- a/ingest/generated_map.tsv +++ /dev/null @@ -1,831 +0,0 @@ -custom_edit_url sidebar_label learn_status learn_rel_path keywords description meta_yaml message most_popular -https://github.com/netdata/netdata/edit/master/docs/welcome-to-netdata.md Welcome to Netdata Published Welcome to Netdata -https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md Enterprise Evaluation Guide Published Welcome to Netdata real-time observability, infrastructure monitoring -https://github.com/netdata/netdata/edit/master/docs/realtime-monitoring.md Real-time Monitoring Published Welcome to Netdata -https://github.com/netdata/netdata/edit/master/docs/scalability.md Scalability Published Welcome to Netdata -https://github.com/netdata/netdata/edit/master/src/collectors/COLLECTORS.md Monitor Anything Published Welcome to Netdata Netdata gathers real-time metrics from hundreds of data sources using collectors. Most require zero configuration and are pre-configured out of the box. -https://github.com/netdata/netdata/edit/master/docs/fleet-configuration-management.md Fleet Deployment and Configuration Management Published Welcome to Netdata -https://github.com/netdata/netdata/edit/master/docs/reporting.md Reporting Published Welcome to Netdata power bi, tableau, looker, qlik, reporting, business intelligence, bi, grafana, ai insights, mcp, executive reports, board reporting, data export Extract infrastructure insights for stakeholders and BI tools using AI Insights, AI assistants (MCP), Grafana, or data export to Power BI, Tableau, and other analytics platforms. -https://github.com/netdata/netdata/edit/master/docs/getting-started-netdata/guide.md Getting Started Published root -https://github.com/netdata/netdata/edit/master/docs/Demo-Sites.md Live Demo Published root - -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/standalone-deployment.md Netdata Agent Published Netdata Agent -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/versions-and-platforms.md Versions & Platforms Published Netdata Agent Present all the supported platform in the Netdata solution -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/README.md Quickstart Deployment Published Netdata Agent -https://github.com/netdata/netdata/edit/master/packaging/installer/README.md Installation Published Netdata Agent/Installation -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kickstart.md Linux Published Netdata Agent/Installation/Linux The kickstart.sh script installs Netdata from source, including all dependencies required to connect to Netdata Cloud, with a single command. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/packages.md Native Linux Distribution packages Published Netdata Agent/Installation/Linux Instructions for how to install Netdata using native DEB or RPM packages. -https://github.com/netdata/netdata/edit/master/packaging/makeself/README.md Static binary Linux Packages Published Netdata Agent/Installation/Linux Users can build the static 64-bit binary package that we ship with every release of the open-source Netdata Agent for debugging or specialize purposes. -https://github.com/netdata/netdata/edit/master/docs/learn/switching-install-types.md Switch Install Types and Release Channels Published Netdata Agent/Installation/Linux -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/offline.md Offline systems Published Netdata Agent/Installation/Linux Install the Netdata Agent on offline/air gapped systems to benefit from real-time, per-second monitoring without connecting to the internet. -https://github.com/netdata/netdata/edit/master/packaging/windows/WINDOWS_INSTALLER.md Windows Published Netdata Agent/Installation/Windows -https://github.com/netdata/netdata/edit/master/docs/install/windows-release-channels.md Switching Install Types and Release Channels Published Netdata Agent/Installation/Windows Guide to choosing and switching between different Netdata Windows installation methods and release channels -https://github.com/netdata/netdata/edit/master/packaging/docker/README.md Docker Published Netdata Agent/Installation -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kubernetes.md Kubernetes Published Netdata Agent/Installation Deploy Netdata to monitor a Kubernetes cluster to monitor the health, performance, resource utilization, and application metrics of a Kubernetes cluster in real time. -https://github.com/netdata/helmchart/edit/master/charts/netdata/README.md Kubernetes Helm chart reference Published Netdata Agent/Installation -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/macos.md macOS Published Netdata Agent/Installation -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/freebsd.md FreeBSD Published Netdata Agent/Installation Install Netdata on FreeBSD to monitor the health and performance of bare metal or VMs with thousands of real-time, per-second metrics. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/pfsense.md pfSense Published Netdata Agent/Installation Install Netdata on pfSense to monitor the health and performance of firewalls with thousands of real-time, per-second metrics. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/synology.md Synology Published Netdata Agent/Installation The Netdata Agent can be installed on AMD64-compatible NAS systems using the 64-bit pre-compiled static binary. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/ansible.md Ansible Published Netdata Agent/Installation Deploy an infrastructure monitoring solution in minutes with the Netdata Agent and Ansible. Use and customize a simple playbook for monitoring as code. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/aws.md AWS Published Netdata Agent/Installation The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/azure.md Azure Published Netdata Agent/Installation The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality. -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/gcp.md GCP Published Netdata Agent/Installation The Netdata Agent runs on all popular cloud providers, but often requires additional steps and configuration for full functionality. - -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/maintenance-operations-on-netdata-agents.md Maintenance Published Netdata Agent/Maintenance -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/start-stop-restart.md Service Control Published Netdata Agent/Maintenance Manage the Netdata Agent daemon, load configuration changes, and troubleshoot stuck processes on systemd and non-systemd nodes. -https://github.com/netdata/netdata/edit/master/packaging/installer/UPDATE.md Update Published Netdata Agent/Maintenance If you opted out of automatic updates, you need to update your Netdata Agent to the latest nightly or stable version. -https://github.com/netdata/netdata/edit/master/packaging/installer/REINSTALL.md Reinstall Published Netdata Agent/Maintenance Troubleshooting installation issues or force an update of the Netdata Agent by reinstalling it using the same method you used during installation. -https://github.com/netdata/netdata/edit/master/packaging/installer/UNINSTALL.md Uninstall Published Netdata Agent/Maintenance If you are no longer interested in using the Netdata Agent, use the self-contained uninstaller to remove all traces of binaries and configuration files. -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/backup-and-restore-an-agent.md Backup and restore an Agent Published Netdata Agent/Maintenance What actions you need to do to backup and Agent and restore it. - -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/README.md Resource Utilization Published Netdata Agent/Resource Utilization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/cpu-requirements.md CPU Published Netdata Agent/Resource Utilization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/ram-requirements.md RAM Published Netdata Agent/Resource Utilization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/bandwidth-requirements.md Bandwidth Published Netdata Agent/Resource Utilization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/disk-requirements-and-retention.md Disk & Retention Published Netdata Agent/Resource Utilization - -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/README.md Configuration Published Netdata Agent/Configuration Netdata is zero-configuration for most users, but complex infrastructures may require you to tweak some of the Agent's granular settings. -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/dynamic-configuration.md Dynamic Configuration Manager Published Netdata Agent/Configuration -https://github.com/netdata/netdata/edit/master/src/daemon/config/README.md Daemon Published Netdata Agent/Configuration The Netdata Agent's daemon is installed preconfigured to collect thousands of metrics every second, but is highly configurable for real-world workloads. -https://github.com/netdata/netdata/edit/master/src/database/CONFIGURATION.md Database Published Netdata Agent/Configuration With a single configuration change, the Netdata Agent can store days, weeks, or months of metrics at its famous per-second granularity. -https://github.com/netdata/netdata/edit/master/src/registry/CONFIGURATION.md Registry Published Netdata Agent/Configuration Netdata utilizes a central registry of machines/person GUIDs, URLs, and opt-in account information to provide unified cross-server dashboards. -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/securing-netdata-agents.md Securing Agents Published Netdata Agent/Configuration/Securing Agents Your data and systems are safe with Netdata, but we recommend a few easy ways to improve the security of your infrastructure. -https://github.com/netdata/netdata/edit/master/src/web/server/README.md Web Server Reference Published Netdata Agent/Configuration/Securing Agents The Netdata Agent's local static-threaded web server serves dashboards and real-time visualizations with security and DDoS protection. -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/README.md Running the Agent behind a reverse proxy Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md Nginx Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md HAProxy Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md Apache Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md Lighttpd v1.4.x Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md Caddy Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-h2o.md H2O Published Netdata Agent/Configuration/Securing Agents/Running the Agent behind a reverse proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/optimize-the-netdata-agents-performance.md Performance Optimization Published Netdata Agent/Configuration While the Netdata Agent is designed to monitor a system with only 1% CPU, you can optimize its performance for low-resource systems. -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts.md Organize systems, metrics, and alerts Published Netdata Agent/Configuration -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata.md Using custom CA certificates with Netdata Published Netdata Agent/Configuration -https://github.com/netdata/netdata/edit/master/src/daemon/README.md Daemon Published Netdata Agent -https://github.com/netdata/netdata/edit/master/src/database/README.md Database Published Netdata Agent -https://github.com/netdata/netdata/edit/master/src/libnetdata/log/README.md Logging Published Netdata Agent -https://github.com/netdata/netdata/edit/master/src/registry/README.md Registry Published Netdata Agent Netdata utilizes a central registry of machines/person GUIDs, URLs, and opt-in account information to provide unified cross-server dashboards. -https://github.com/netdata/netdata/edit/master/src/cli/README.md Agent CLI Published Netdata Agent The Netdata Agent includes a command-line experience for reloading health configuration, reopening log files, halting the daemon, and more. -https://github.com/netdata/netdata/edit/master/docs/learn/node-identities.md Node Identities Published Netdata Agent guid,machine guid,node id,claimed id,identity Understanding how Netdata identifies nodes across Agents Parents and Cloud -https://github.com/netdata/netdata/edit/master/docs/learn/vm-templates.md VM Templates Published Netdata Agent vm,template,clone,kvm,proxmox,vagrant,terraform Prepare VM templates so each clone gets a unique Netdata identity -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/anonymous-telemetry-events.md Anonymous telemetry events Published Netdata Agent - - - - - - -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-with-centralization-points.md Netdata Parents Published Netdata Parents -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/best-practices.md Parent Configuration Best Practices Published Netdata Parents -https://github.com/netdata/netdata/edit/master/src/streaming/README.md Parent-Child Configuration Reference Published Netdata Parents -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-strategies.md Configuration Examples Published Netdata Parents -https://github.com/netdata/netdata/edit/master/docs/streaming-routing.md Streaming Routing Reference Published Netdata Parents -https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md Node Types and Lifecycle Reference Published Netdata Parents - - -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/README.md Netdata Cloud Published Netdata Cloud -https://github.com/netdata/netdata/edit/master/src/claim/README.md Connect Agent Published Netdata Cloud -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md Spaces and Rooms Published Netdata Cloud/Spaces and Rooms -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-rule-based-room-assignment.md Node Rule-Based Room Assignment Published Netdata Cloud/Spaces and Rooms -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/versions.md Versions Unpublished Netdata Cloud/Versions -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/README.md Authentication & Authorization Published Netdata Cloud/Authentication & Authorization -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/enterprise-sso-authentication.md Enterprise SSO Authentication Published Netdata Cloud/Authentication & Authorization -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/oidc.md OIDC Published Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations ['sso', 'oidc'] https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/okta_sso.md Okta SSO Published Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations ['sso', 'okta', 'okta-sso'] https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/scim.md SCIM Published Netdata Cloud/Authentication & Authorization/Cloud Authentication & Authorization Integrations ['scim', 'identity-management'] https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE AUTHENTICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/role-based-access-model.md Role-based access model Published Netdata Cloud/Authentication & Authorization Explanation of Netdata roles and permissions linked to them -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/api-tokens.md API Tokens Published Netdata Cloud/Authentication & Authorization -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/view-plan-and-billing.md Netdata Plans & Billing Published Netdata Cloud -https://github.com/netdata/netdata/edit/master/src/aclk/README.md Agent-Cloud Link (ACLK) Published Netdata Cloud The Agent-Cloud link (ACLK) is the mechanism responsible for connecting a Netdata agent to Netdata Cloud. -https://github.com/netdata/netdata/edit/master/docs/learn/remove-node.md Remove Agent Published Netdata Cloud -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-states-and-transitions.md Node States and Transitions Published Netdata Cloud node states,live,stale,offline,unseen,transitions Understanding node connection states and state transitions in Netdata Cloud -https://github.com/netdata/netdata/edit/master/docs/learn/unclaim-reclaim-node.md Unclaim and Reclaim a Node Published Netdata Cloud -https://github.com/netdata/netdata/edit/master/docs/delete/netdata/account.md Account Deletion Published Netdata Cloud - -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/README.md Netdata Cloud On-Prem Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/installation.md Installation Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/sbom.md Software Bill of Materials Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/image-signature-verification.md Container Image Signature Verification Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/hardening-guide.md Security Hardening Guide Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/netpol.md Kubernetes Network Policy Configuration Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/poc-without-k8s.md PoC without K8s Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/ecr-mirror.md Mirroring image registry Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/troubleshooting.md Troubleshooting Published Netdata Cloud On-Prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/netdata-cloud-onprem/RELEASE-NOTES.md Release Notes Published Netdata Cloud On-Prem - - - -https://github.com/netdata/netdata/edit/master/src/collectors/README.md Collecting Metrics Published Collecting Metrics -https://github.com/netdata/netdata/edit/master/src/collectors/REFERENCE.md Collectors configuration Published Collecting Metrics -https://github.com/netdata/agent-service-discovery/edit/master/README.md Service discovery Published Collecting Metrics -https://github.com/netdata/netdata/edit/master/src/collectors/statsd.plugin/README.md StatsD Published Collecting Metrics -https://github.com/netdata/netdata/edit/master/src/crates/netdata-otel/otel-plugin/README.md OpenTelemetry Metrics Published Collecting Metrics/OpenTelemetry Ingesting storing and visualizing OpenTelemetry metrics -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/README.md Metrics Centralization Points Published Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/configuration.md Configuring Metrics Centralization Points Published Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/sizing-netdata-parents.md Sizing Netdata Parents Published Netdata Parents/Metrics Centralization Points - Optimizing Netdata Children Unpublished Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents.md Clustering and High Availability of Netdata Parents Published Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/replication-of-past-samples.md Replication of Past Samples Published Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/faq.md FAQ on Metrics Centralization Points Published Netdata Parents/Metrics Centralization Points -https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/system-metrics.md System metrics Unpublished Collecting Metrics Netdata collects thousands of metrics from physical and virtual systems, IoT/edge devices, and containers with zero configuration. -https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/application-metrics.md Application metrics Unpublished Collecting Metrics Monitor and troubleshoot every application on your infrastructure with per-second metrics, zero configuration, and meaningful charts. -https://github.com/netdata/netdata/edit/master/docs/collecting-metrics/container-metrics.md Container metrics Unpublished Collecting Metrics Use Netdata to collect per-second utilization and application-level metrics from Linux/Docker containers and Kubernetes clusters. -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/profile-format.md SNMP Profile Format Published Collecting Metrics Learn how Netdata’s SNMP collector uses profiles. -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/alamos_fe2_server.md Alamos FE2 server Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/README.md Go applications (EXPVAR) Published Collecting Metrics/APM ['go', 'expvar', 'application'] https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_pagespeed.md Google Pagespeed Published Collecting Metrics/APM ['cloud services', 'cloud computing', 'google cloud services'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gpsd.md gpsd Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_aix_systems_njmon.md IBM AIX systems Njmon Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jmx.md JMX Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nrpe_daemon.md NRPE daemon Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/README.md phpDaemon Published Collecting Metrics/APM ['phpdaemon', 'php'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sysload.md Sysload Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vscode.md VSCode Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/yourls_url_shortener.md YOURLS URL Shortener Published Collecting Metrics/APM https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/README.md Fail2ban Published Collecting Metrics/Authentication and Authorization ['fail2ban', 'security', 'authentication', 'authorization'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/README.md FreeRADIUS Published Collecting Metrics/Authentication and Authorization ['freeradius', 'radius'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/README.md OpenLDAP Published Collecting Metrics/Authentication and Authorization ['openldap', 'RBAC', 'Directory access'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radius.md RADIUS Published Collecting Metrics/Authentication and Authorization https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tacacs.md TACACS Published Collecting Metrics/Authentication and Authorization https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/chia.md Chia Published Collecting Metrics/Blockchain Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cryptowatch.md Cryptowatch Published Collecting Metrics/Blockchain Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/README.md Go-ethereum Published Collecting Metrics/Blockchain Servers ['geth', 'ethereum', 'blockchain'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/concourse.md Concourse Published Collecting Metrics/CICD Platforms https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gitlab_runner.md GitLab Runner Published Collecting Metrics/CICD Platforms https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jenkins.md Jenkins Published Collecting Metrics/CICD Platforms https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/README.md Puppet Published Collecting Metrics/CICD Platforms ['puppet'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_ec2_compute_instances.md AWS EC2 Compute instances Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'aws services'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_quota.md AWS Quota Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'aws services'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloudwatch.md CloudWatch Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'scalability'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gcp_gce.md GCP GCE Published Collecting Metrics/Cloud Provider Managed https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_cloud_platform.md Google Cloud Platform Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'scalability'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_stackdriver.md Google Stackdriver Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'google cloud services'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/linode.md Linode Published Collecting Metrics/Cloud Provider Managed https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lustre_metadata.md Lustre metadata Published Collecting Metrics/Cloud Provider Managed https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextcloud_servers.md Nextcloud servers Published Collecting Metrics/Cloud Provider Managed ['cloud services', 'cloud computing', 'scalability'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/zerto.md Zerto Published Collecting Metrics/Cloud Provider Managed https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/containers.md Containers Published Collecting Metrics/Containers and VMs ['containers', 'docker'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/README.md Docker Published Collecting Metrics/Containers and VMs ['container'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/README.md Docker Engine Published Collecting Metrics/Containers and VMs ['docker', 'container'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/README.md Docker Hub repository Published Collecting Metrics/Containers and VMs ['dockerhub'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/libvirt_containers.md Libvirt Containers Published Collecting Metrics/Containers and VMs ['libvirt', 'container'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/lxc_containers.md LXC Containers Published Collecting Metrics/Containers and VMs ['lxc', 'lxd', 'container'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/ovirt_containers.md oVirt Containers Published Collecting Metrics/Containers and VMs ['ovirt', 'container'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/podman.md Podman Published Collecting Metrics/Containers and VMs https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/proxmox_containers.md Proxmox Containers Published Collecting Metrics/Containers and VMs ['proxmox', 'container'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proxmox_ve.md Proxmox VE Published Collecting Metrics/Containers and VMs https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/README.md vCenter Server Appliance Published Collecting Metrics/Containers and VMs ['vmware'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/virtual_machines.md Virtual Machines Published Collecting Metrics/Containers and VMs ['vms', 'virtualization', 'container'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/README.md VMware vCenter Server Published Collecting Metrics/Containers and VMs ['vmware', 'esxi', 'vcenter'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/README.md Xen XCP-ng Published Collecting Metrics/Containers and VMs https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/4d_server.md 4D Server Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_rds.md AWS RDS Published Collecting Metrics/Databases ['cloud services', 'cloud computing', 'aws services'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/README.md BOINC Published Collecting Metrics/Databases ['boinc', 'distributed'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/README.md Cassandra Published Collecting Metrics/Databases ['nosql', 'dbms', 'db', 'database'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/README.md ClickHouse Published Collecting Metrics/Databases ['database'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clustercontrol_cmon.md ClusterControl CMON Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/README.md CockroachDB Published Collecting Metrics/Databases ['cockroachdb', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/README.md Couchbase Published Collecting Metrics/Databases ['couchbase', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/README.md CouchDB Published Collecting Metrics/Databases ['couchdb', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hana.md HANA Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/influxdb.md InfluxDB Published Collecting Metrics/Databases ['database', 'dbms', 'data storage'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/mariadb.md MariaDB Published Collecting Metrics/Databases ['db', 'database', 'mysql', 'maria', 'mariadb', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/README.md MaxScale Published Collecting Metrics/Databases ['maria', 'mariadb', 'maxscale', 'database', 'db'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/README.md Memcached Published Collecting Metrics/Databases ['memcached', 'memcache', 'cache', 'database'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/README.md Microsoft SQL Server Published Collecting Metrics/Databases ['db', 'database', 'mssql', 'sql server', 'microsoft'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/README.md MongoDB Published Collecting Metrics/Databases ['mongodb', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/README.md MySQL Published Collecting Metrics/Databases ['db', 'database', 'mysql', 'maria', 'mariadb', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/README.md Oracle DB Published Collecting Metrics/Databases ['database', 'oracle', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/patroni.md Patroni Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/percona_mysql.md Percona MySQL Published Collecting Metrics/Databases ['db', 'database', 'mysql', 'maria', 'mariadb', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgbackrest.md pgBackRest Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/README.md PgBouncer Published Collecting Metrics/Databases ['pgbouncer'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgpool-ii.md Pgpool-II Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/README.md Pika Published Collecting Metrics/Databases ['pika', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/README.md PostgreSQL Published Collecting Metrics/Databases ['db', 'database', 'postgres', 'postgresql', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/README.md ProxySQL Published Collecting Metrics/Databases ['proxysql', 'databases', 'sql'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/README.md Redis Published Collecting Metrics/Databases ['redis', 'databases'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/README.md RethinkDB Published Collecting Metrics/Databases ['rethinkdb', 'database', 'db'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/README.md Riak KV Published Collecting Metrics/Databases ['database', 'nosql', 'big data'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/scylladb.md ScyllaDB Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/README.md SQL databases (generic) Published Collecting Metrics/Databases ['db', 'database', 'sql', 'mysql', 'maria', 'postgres', 'postgresql', 'pgx', 'oracle', 'sqlserver', 'mssql', 'generic'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vertica.md Vertica Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/warp10.md Warp10 Published Collecting Metrics/Databases https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/README.md YugabyteDB Published Collecting Metrics/Databases ['db', 'database', 'yb', 'yugabyte'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/README.md Gearman Published Collecting Metrics/Distributed Computing Systems ['gearman'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/README.md CoreDNS Published Collecting Metrics/DNS and DHCP Servers ['coredns', 'dns', 'kubernetes'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/README.md DNS query Published Collecting Metrics/DNS and DHCP Servers ['dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dnsbl.md DNSBL Published Collecting Metrics/DNS and DHCP Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/README.md DNSdist Published Collecting Metrics/DNS and DHCP Servers ['dnsdist', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/README.md Dnsmasq Published Collecting Metrics/DNS and DHCP Servers ['dnsmasq', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/README.md Dnsmasq DHCP Published Collecting Metrics/DNS and DHCP Servers ['dnsmasq', 'dhcp'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/README.md ISC DHCP Published Collecting Metrics/DNS and DHCP Servers ['dhcpd', 'dhcp'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextdns.md NextDNS Published Collecting Metrics/DNS and DHCP Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/README.md NSD Published Collecting Metrics/DNS and DHCP Servers ['nsd', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/README.md Pi-hole Published Collecting Metrics/DNS and DHCP Servers ['pihole'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/README.md PowerDNS Authoritative Server Published Collecting Metrics/DNS and DHCP Servers ['powerdns', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/README.md PowerDNS Recursor Published Collecting Metrics/DNS and DHCP Servers ['powerdns', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/README.md Unbound Published Collecting Metrics/DNS and DHCP Servers ['unbound', 'dns'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_cachestat.md eBPF Cachestat Published Collecting Metrics/eBPF ['Page cache', 'Hit ratio', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_dcstat.md eBPF DCstat Published Collecting Metrics/eBPF ['Directory Cache', 'File system', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_disk.md eBPF Disk Published Collecting Metrics/eBPF ['hard Disk', 'eBPF', 'latency', 'partition'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filedescriptor.md eBPF Filedescriptor Published Collecting Metrics/eBPF ['file', 'eBPF', 'fd', 'open', 'close'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filesystem.md eBPF Filesystem Published Collecting Metrics/eBPF ['Filesystem', 'ext4', 'btrfs', 'nfs', 'xfs', 'zfs', 'eBPF', 'latency', 'I/O'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_hardirq.md eBPF Hardirq Published Collecting Metrics/eBPF ['HardIRQ', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mdflush.md eBPF MDflush Published Collecting Metrics/eBPF ['MD', 'RAID', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mount.md eBPF Mount Published Collecting Metrics/eBPF ['mount', 'umount', 'device', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_oomkill.md eBPF OOMkill Published Collecting Metrics/eBPF ['application', 'memory'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_process.md eBPF Process Published Collecting Metrics/eBPF ['Memory', 'plugin', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_processes.md eBPF Processes Published Collecting Metrics/eBPF ['thread', 'fork', 'process', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_shm.md eBPF SHM Published Collecting Metrics/eBPF ['syscall', 'shared memory', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_socket.md eBPF Socket Published Collecting Metrics/eBPF ['TCP', 'UDP', 'bandwidth', 'server', 'connection', 'socket'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_softirq.md eBPF SoftIRQ Published Collecting Metrics/eBPF ['SoftIRQ', 'eBPF'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_swap.md eBPF SWAP Published Collecting Metrics/eBPF ['SWAP', 'memory', 'eBPF', 'Hard Disk'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_sync.md eBPF Sync Published Collecting Metrics/eBPF ['syscall', 'eBPF', 'hard disk', 'memory'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_vfs.md eBPF VFS Published Collecting Metrics/eBPF ['virtual', 'filesystem', 'eBPF', 'I/O', 'files'] https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md dev.cpu.0.freq Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md dev.cpu.temperature Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/devstat.md devstat Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_nfs.md FreeBSD NFS Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_rctl-racct.md FreeBSD RCTL-RACCT Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getifaddrs.md getifaddrs Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getmntinfo.md getmntinfo Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/hw.intrcnt.md hw.intrcnt Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/ipfw.md ipfw Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.cp_time.md kern.cp_time Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.msq.md kern.ipc.msq Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.sem.md kern.ipc.sem Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.shm.md kern.ipc.shm Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md net.inet.icmp.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md net.inet.ip.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md net.inet.tcp.states Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md net.inet.tcp.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md net.inet.udp.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md net.inet6.icmp6.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md net.inet6.ip6.stats Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.isr.md net.isr Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/system.ram.md system.ram Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/uptime.md uptime Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.loadavg.md vm.loadavg Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md vm.stats.sys.v_intr Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md vm.stats.sys.v_soft Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md vm.stats.sys.v_swtch Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md vm.stats.vm.v_pgfaults Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md vm.stats.vm.v_swappgs Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.swap_info.md vm.swap_info Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.vmtotal.md vm.vmtotal Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/zfs.md zfs Published Collecting Metrics/FreeBSD https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proftpd.md ProFTPD Published Collecting Metrics/FTP Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bungeecord.md BungeeCord Published Collecting Metrics/Gaming https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/minecraft.md Minecraft Published Collecting Metrics/Gaming https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/README.md SpigotMC Published Collecting Metrics/Gaming ['minecraft', 'spigotmc', 'spigot'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/steam.md Steam Published Collecting Metrics/Gaming https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openweathermap.md OpenWeatherMap Published Collecting Metrics/Generic Collecting Metrics https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/README.md Pandas Published Collecting Metrics/Generic Collecting Metrics ['pandas', 'python'] https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/README.md Prometheus endpoint Published Collecting Metrics/Generic Collecting Metrics ['prometheus', 'openmetrics'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/README.md SNMP devices Published Collecting Metrics/Generic Collecting Metrics ['snmp', 'mib', 'oid', 'network', 'router', 'switch', 'firewall', 'ap', 'access point', 'wireless controller', 'wlc', 'wifi', 'vpn', 'pdu', 'ups', 'nas', 'san', 'printer', 'bgp', 'ospf', 'ucd', '3com', 'a10', 'alcatel', 'lucent', 'nokia', 'anue', 'apc', 'netbotz', 'arista', 'aruba', 'audiocodes', 'avaya', 'avocent', 'avtech', 'roomalert', 'barracuda', 'bluecat', 'brocade', 'brother', 'chatsworth', 'checkpoint', 'chrysalis', 'cisco', 'cisco asa', 'cisco asr', 'cisco catalyst', 'cisco nexus', 'cisco ironport', 'cisco ics', 'cisco wlc', 'cisco ucs', 'meraki', 'citrix', 'netscaler', 'cradlepoint', 'cyberpower', 'dell', 'dell emc', 'poweredge', 'sonicwall', 'dialogic', 'dlink', 'd-link', 'eaton', 'exagrid', 'extreme', 'f5', 'big-ip', 'fireeye', 'fortinet', 'fortigate', 'fortiswitch', 'gigamon', 'hp', 'hewlett packard', 'hp ilo', 'ilo', 'ilo4', 'hp h3c', 'hp icf', 'hpe', 'proliant', 'huawei', '3com huawei', 'ibm', 'datapower', 'lenovo', 'idrac', 'dell idrac', 'infinera', 'coriant', 'infoblox', 'isilon', 'ixsystems', 'truenas', 'juniper', 'junos', 'kyocera', 'linksys', 'mcafee', 'mikrotik', 'nasuni', 'nec', 'net-snmp', 'netsnmp', 'netapp', 'netgear', 'readynas', 'omron', 'opengear', 'palo alto', 'cloudgenix', 'peplink', 'raritan', 'riverbed', 'ruckus', 'serveriron', 'server-iron', 'servertech', 'silverpeak', 'silver peak', 'edgeconnect', 'sinetica', 'sophos', 'synology', 'diskstation', 'tp-link', 'tplink', 'tripplite', 'tripp lite', 'ubiquiti', 'unifi', 'velocloud', 'vertiv', 'liebert', 'watchguard', 'western digital', 'wd', 'mycloud', 'zebra', 'zyxel'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tankerkoenig_api.md Tankerkoenig API Published Collecting Metrics/Generic Collecting Metrics https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/README.md 1-Wire Sensors Published Collecting Metrics/Hardware Devices and Sensors ['temperature', 'sensor', '1-wire'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/README.md AM2320 Published Collecting Metrics/Hardware Devices and Sensors ['temperature', 'am2320', 'sensor', 'humidity'] https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/amd_cpu_&_gpu.md AMD CPU & GPU Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/amd_gpu.md AMD GPU Published Collecting Metrics/Hardware Devices and Sensors ['amd', 'gpu', 'hardware'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/README.md CUPS Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/README.md HDD temperature Published Collecting Metrics/Hardware Devices and Sensors ['hardware', 'hdd temperature', 'disk temperature', 'temperature'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_cryptoexpress_cex_cards.md IBM CryptoExpress (CEX) cards Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_z_hardware_management_console.md IBM Z Hardware Management Console Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/README.md Intel GPU Published Collecting Metrics/Hardware Devices and Sensors ['intel', 'gpu', 'hardware'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/README.md Intelligent Platform Management Interface (IPMI) Published Collecting Metrics/Hardware Devices and Sensors ['sensors', 'ipmi', 'freeipmi', 'ipmimonitoring'] https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/README.md Linux Sensors Published Collecting Metrics/Hardware Devices and Sensors ['sensors', 'temperature', 'voltage', 'current', 'power', 'fan', 'energy', 'humidity', 'intrusion'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/README.md Nvidia GPU Published Collecting Metrics/Hardware Devices and Sensors ['nvidia', 'gpu', 'hardware'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/raritan_pdu.md Raritan PDU Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/README.md S.M.A.R.T. Published Collecting Metrics/Hardware Devices and Sensors ['smart', 'S.M.A.R.T.', 'SCSI devices', 'ATA devices'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/siemens_s7_plc.md Siemens S7 PLC Published Collecting Metrics/Hardware Devices and Sensors https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/statuspage.md StatusPage Published Collecting Metrics/Incident Management https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md Christ Elektronik CLM5IP power panel Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/craftbeerpi.md CraftBeerPi Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dutch_electricity_smart_meter.md Dutch Electricity Smart Meter Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/elgato_key_light_devices..md Elgato Key Light devices. Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/energomera_smart_power_meters.md Energomera smart power meters Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homebridge.md Homebridge Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homey.md Homey Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jarvis_standing_desk.md Jarvis Standing Desk Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/modbus_protocol.md Modbus protocol Published Collecting Metrics/IoT Devices ['database', 'dbms', 'data storage'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nature_remo_e_lite_devices.md Nature Remo E lite devices Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netatmo_sensors.md Netatmo sensors Published Collecting Metrics/IoT Devices ['network monitoring', 'network performance', 'traffic analysis'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/personal_weather_station.md Personal Weather Station Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/philips_hue.md Philips Hue Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pimoroni_enviro+.md Pimoroni Enviro+ Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/powerpal_devices.md Powerpal devices Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radio_thermostat.md Radio Thermostat Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/salicru_eqx_inverter.md Salicru EQX inverter Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sense_energy.md Sense Energy Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/shelly_humidity_sensor.md Shelly humidity sensor Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sma_inverters.md SMA Inverters Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/smart_meters_sml.md Smart meters SML Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solar_logging_stick.md Solar logging stick Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solis_ginlong_5g_inverters.md Solis Ginlong 5G inverters Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sunspec_solar_energy.md Sunspec Solar Energy Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tado_smart_heating_solution.md Tado smart heating solution Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_vehicle.md Tesla vehicle Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_wall_connector.md Tesla Wall Connector Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/xiaomi_mi_flora.md Xiaomi Mi Flora Published Collecting Metrics/IoT Devices https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_agent.md Cilium Agent Published Collecting Metrics/Kubernetes https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_operator.md Cilium Operator Published Collecting Metrics/Kubernetes https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_proxy.md Cilium Proxy Published Collecting Metrics/Kubernetes https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/README.md Kubelet Published Collecting Metrics/Kubernetes ['kubelet', 'kubernetes', 'k8s'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md Kubeproxy Published Collecting Metrics/Kubernetes ['kubeproxy', 'kubernetes', 'k8s'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/README.md Kubernetes Cluster State Published Collecting Metrics/Kubernetes ['kubernetes', 'k8s'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/kubernetes_containers.md Kubernetes Containers Published Collecting Metrics/Kubernetes ['k8s', 'kubernetes', 'pods', 'containers'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/README.md CPU performance Published Collecting Metrics/Linux Systems ['linux', 'cpu performance', 'cpu cache', 'perf.plugin'] https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/README.md Disk space Published Collecting Metrics/Linux Systems ['disk', 'I/O', 'space', 'inode'] https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openrc.md OpenRC Published Collecting Metrics/Linux Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/interrupts.md Interrupts Published Collecting Metrics/Linux Systems/CPU ['interrupts'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softirq_statistics.md SoftIRQ statistics Published Collecting Metrics/Linux Systems/CPU ['softirqs', 'interrupts'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/disk_statistics.md Disk Statistics Published Collecting Metrics/Linux Systems/Disk ['disk', 'disks', 'io', 'bcache', 'block devices'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/md_raid.md MD RAID Published Collecting Metrics/Linux Systems/Disk ['raid', 'mdadm', 'mdstat', 'raid'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/btrfs.md BTRFS Published Collecting Metrics/Linux Systems/Filesystem/BTRFS ['btrfs', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_client.md NFS Client Published Collecting Metrics/Linux Systems/Filesystem/NFS ['nfs client', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_server.md NFS Server Published Collecting Metrics/Linux Systems/Filesystem/NFS ['nfs server', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zfs_adaptive_replacement_cache.md ZFS Adaptive Replacement Cache Published Collecting Metrics/Linux Systems/Filesystem/ZFS ['zfs arc', 'arc', 'zfs', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/conntrack.md Conntrack Published Collecting Metrics/Linux Systems/Firewall ['connection tracking mechanism', 'netfilter', 'conntrack'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/README.md Netfilter Published Collecting Metrics/Linux Systems/Firewall https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/synproxy.md Synproxy Published Collecting Metrics/Linux Systems/Firewall ['synproxy'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/inter_process_communication.md Inter Process Communication Published Collecting Metrics/Linux Systems/IPC ['ipc', 'semaphores', 'shared memory'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/README.md Linux kernel SLAB allocator statistics Published Collecting Metrics/Linux Systems/Kernel ['linux kernel', 'slab', 'slub', 'slob', 'slabinfo'] https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/power_capping.md Power Capping Published Collecting Metrics/Linux Systems/Kernel ['power capping', 'energy'] https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/kernel_same-page_merging.md Kernel Same-Page Merging Published Collecting Metrics/Linux Systems/Memory ['ksm', 'samepage', 'merging'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/linux_zswap.md Linux ZSwap Published Collecting Metrics/Linux Systems/Memory ['swap', 'zswap', 'frontswap', 'swap cache'] https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_modules_dimms.md Memory modules (DIMMs) Published Collecting Metrics/Linux Systems/Memory ['edac', 'ecc', 'dimm', 'ram', 'hardware'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_statistics.md Memory Statistics Published Collecting Metrics/Linux Systems/Memory ['swap', 'page faults', 'oom', 'numa'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_usage.md Memory Usage Published Collecting Metrics/Linux Systems/Memory ['memory', 'ram', 'available', 'committed'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/non-uniform_memory_access.md Non-Uniform Memory Access Published Collecting Metrics/Linux Systems/Memory ['numa'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/page_types.md Page types Published Collecting Metrics/Linux Systems/Memory ['memory page types'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/system_memory_fragmentation.md System Memory Fragmentation Published Collecting Metrics/Linux Systems/Memory ['extfrag', 'extfrag_threshold', 'memory fragmentation'] https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zram.md ZRAM Published Collecting Metrics/Linux Systems/Memory ['zram'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/README.md Access Points Published Collecting Metrics/Linux Systems/Network ['ap', 'access', 'point', 'wireless', 'network'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/infiniband.md InfiniBand Published Collecting Metrics/Linux Systems/Network ['infiniband', 'rdma'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ip_virtual_server.md IP Virtual Server Published Collecting Metrics/Linux Systems/Network ['ip virtual server'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ipv6_socket_statistics.md IPv6 Socket Statistics Published Collecting Metrics/Linux Systems/Network ['ipv6 sockets'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_interfaces.md Network interfaces Published Collecting Metrics/Linux Systems/Network ['network interfaces'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_statistics.md Network statistics Published Collecting Metrics/Linux Systems/Network ['ip', 'udp', 'udplite', 'icmp', 'netstat', 'snmp'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/sctp_statistics.md SCTP Statistics Published Collecting Metrics/Linux Systems/Network ['sctp', 'stream control transmission protocol'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/socket_statistics.md Socket statistics Published Collecting Metrics/Linux Systems/Network ['sockets'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softnet_statistics.md Softnet Statistics Published Collecting Metrics/Linux Systems/Network ['softnet'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/README.md tc QoS classes Published Collecting Metrics/Linux Systems/Network https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/wireless_network_interfaces.md Wireless network interfaces Published Collecting Metrics/Linux Systems/Network ['wireless devices'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/power_supply.md Power Supply Published Collecting Metrics/Linux Systems/Power Supply ['psu', 'power supply'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/pressure_stall_information.md Pressure Stall Information Published Collecting Metrics/Linux Systems/Pressure ['pressure'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/entropy.md Entropy Published Collecting Metrics/Linux Systems/System ['entropy'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_load_average.md System Load Average Published Collecting Metrics/Linux Systems/System ['load', 'load average'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_statistics.md System statistics Published Collecting Metrics/Linux Systems/System ['cpu utilization', 'process counts'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_uptime.md System Uptime Published Collecting Metrics/Linux Systems/System ['uptime'] https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/authlog.md AuthLog Published Collecting Metrics/Logs Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/README.md Fluentd Published Collecting Metrics/Logs Servers ['fluentd', 'logging'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/graylog_server.md Graylog Server Published Collecting Metrics/Logs Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/journald.md journald Published Collecting Metrics/Logs Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/README.md Logstash Published Collecting Metrics/Logs Servers ['logstatsh'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/loki.md loki Published Collecting Metrics/Logs Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mtail.md mtail Published Collecting Metrics/Logs Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/README.md macOS Published Collecting Metrics/macOS Systems ['macos', 'apple', 'darwin'] https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dmarc.md DMARC Published Collecting Metrics/Mail Servers ['email authentication', 'policy', 'reporting'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/README.md Dovecot Published Collecting Metrics/Mail Servers ['dovecot', 'imap', 'mail'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/README.md Exim Published Collecting Metrics/Mail Servers ['exim', 'mail', 'email'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/halon.md Halon Published Collecting Metrics/Mail Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/README.md Postfix Published Collecting Metrics/Mail Servers ['postfix', 'mail', 'mail server'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/discourse.md Discourse Published Collecting Metrics/Media Services https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/README.md Icecast Published Collecting Metrics/Media Services ['icecast', 'streaming', 'media'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/obs_studio.md OBS Studio Published Collecting Metrics/Media Services https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sabnzbd.md SABnzbd Published Collecting Metrics/Media Services https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/twitch.md Twitch Published Collecting Metrics/Media Services https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/README.md ActiveMQ Published Collecting Metrics/Message Brokers ['message broker'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/README.md Apache Pulsar Published Collecting Metrics/Message Brokers ['pulsar'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/README.md Beanstalk Published Collecting Metrics/Message Brokers ['beanstalk', 'beanstalkd', 'message'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_mq.md IBM MQ Published Collecting Metrics/Message Brokers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka.md Kafka Published Collecting Metrics/Message Brokers ['big data', 'stream processing', 'message broker'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_zookeeper.md Kafka ZooKeeper Published Collecting Metrics/Message Brokers ['big data', 'stream processing', 'message broker'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mosquitto.md mosquitto Published Collecting Metrics/Message Brokers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mqtt_blackbox.md MQTT Blackbox Published Collecting Metrics/Message Brokers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/README.md NATS Published Collecting Metrics/Message Brokers ['nats', 'messaging', 'broker'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/README.md RabbitMQ Published Collecting Metrics/Message Brokers ['rabbitmq', 'message brokers'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/redis_queue.md Redis Queue Published Collecting Metrics/Message Brokers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/README.md VerneMQ Published Collecting Metrics/Message Brokers ['vernemq', 'message brokers'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/8430ft_modem.md 8430FT modem Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bird_routing_daemon.md Bird Routing Daemon Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freifunk_network.md Freifunk network Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/frrouting.md FRRouting Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hitron_coda_cable_modem.md Hitron CODA Cable Modem Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/keepalived.md Keepalived Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/open_vswitch.md Open vSwitch Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openroadm_devices.md OpenROADM devices Published Collecting Metrics/Networking Stack and Network Interfaces ['network monitoring', 'network performance', 'traffic analysis'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/README.md Optical modules Published Collecting Metrics/Networking Stack and Network Interfaces ['sfp', 'ddm', 'optic'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ripe_atlas.md RIPE Atlas Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sonic_nos.md SONiC NOS Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/starlink_spacex.md Starlink (SpaceX) Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ubiquiti_ufiber_olt.md Ubiquiti UFiber OLT Published Collecting Metrics/Networking Stack and Network Interfaces https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/collectd.md Collectd Published Collecting Metrics/Observability https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dynatrace.md Dynatrace Published Collecting Metrics/Observability https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/grafana.md Grafana Published Collecting Metrics/Observability https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hubble.md Hubble Published Collecting Metrics/Observability https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nagios.md Nagios Published Collecting Metrics/Observability https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/README.md Files and directories Published Collecting Metrics/Other ['files', 'directories'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_api_rate_limit.md GitHub API rate limit Published Collecting Metrics/Other https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_repository.md GitHub repository Published Collecting Metrics/Other https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/applications.md Applications Published Collecting Metrics/Processes and System Services ['applications', 'processes', 'os', 'host monitoring'] https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/README.md Supervisor Published Collecting Metrics/Processes and System Services ['supervisor'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/user_groups.md User Groups Published Collecting Metrics/Processes and System Services ['groups', 'processes', 'user auditing', 'authorization', 'os', 'host monitoring'] https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/users.md Users Published Collecting Metrics/Processes and System Services ['users', 'processes', 'os', 'host monitoring'] https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bosh.md BOSH Published Collecting Metrics/Provisioning Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry.md Cloud Foundry Published Collecting Metrics/Provisioning Systems ['cloud services', 'cloud computing', 'scalability'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry_firehose.md Cloud Foundry Firehose Published Collecting Metrics/Provisioning Systems ['cloud services', 'cloud computing', 'scalability'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/spacelift.md Spacelift Published Collecting Metrics/Provisioning Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/README.md Elasticsearch Published Collecting Metrics/Search Engines ['elastic', 'elasticsearch', 'opensearch', 'search engine'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/meilisearch.md Meilisearch Published Collecting Metrics/Search Engines https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/integrations/opensearch.md OpenSearch Published Collecting Metrics/Search Engines ['elastic', 'elasticsearch', 'opensearch', 'search engine'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sphinx.md Sphinx Published Collecting Metrics/Search Engines https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/README.md Typesense Published Collecting Metrics/Search Engines ['typesense', 'search engine'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamav_daemon.md ClamAV daemon Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamscan_results.md Clamscan results Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/crowdsec.md Crowdsec Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/honeypot.md Honeypot Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lynis_audit_reports.md Lynis audit reports Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/README.md Rspamd Published Collecting Metrics/Security Systems ['spam', 'rspamd', 'email'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/suricata.md Suricata Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vault_pki.md Vault PKI Published Collecting Metrics/Security Systems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/README.md Consul Published Collecting Metrics/Service Discovery / Registry ['service networking platform', 'hashicorp'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/etcd.md etcd Published Collecting Metrics/Service Discovery / Registry https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_consumer_lag.md Kafka Consumer Lag Published Collecting Metrics/Service Discovery / Registry ['big data', 'stream processing', 'message broker'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/README.md ZooKeeper Published Collecting Metrics/Service Discovery / Registry ['zookeeper'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/README.md Adaptec RAID Published Collecting Metrics/Storage, Mount Points and Filesystems ['storage', 'raid-controller', 'manage-disks'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/README.md Ceph Published Collecting Metrics/Storage, Mount Points and Filesystems ['ceph', 'storage'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/README.md Dell EMC ScaleIO Published Collecting Metrics/Storage, Mount Points and Filesystems ['scaleio'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/README.md DMCache devices Published Collecting Metrics/Storage, Mount Points and Filesystems ['dmcache'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/eos.md EOS Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/generic_storage_enclosure_tool.md Generic storage enclosure tool Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/README.md Hadoop Distributed File System (HDFS) Published Collecting Metrics/Storage, Mount Points and Filesystems ['hdfs', 'hadoop'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/README.md HPE Smart Arrays Published Collecting Metrics/Storage, Mount Points and Filesystems ['storage', 'raid-controller', 'hp', 'hpssa', 'array'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum.md IBM Spectrum Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum_virtualize.md IBM Spectrum Virtualize Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/README.md IPFS Published Collecting Metrics/Storage, Mount Points and Filesystems ['ipfs', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/README.md LVM logical volumes Published Collecting Metrics/Storage, Mount Points and Filesystems ['lvm', 'lvs'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/README.md MegaCLI MegaRAID Published Collecting Metrics/Storage, Mount Points and Filesystems ['storage', 'raid-controller', 'manage-disks'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mogilefs.md MogileFS Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_ontap_api.md Netapp ONTAP API Published Collecting Metrics/Storage, Mount Points and Filesystems ['network monitoring', 'network performance', 'traffic analysis'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_solidfire.md NetApp Solidfire Published Collecting Metrics/Storage, Mount Points and Filesystems ['network monitoring', 'network performance', 'traffic analysis'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/README.md NVMe devices Published Collecting Metrics/Storage, Mount Points and Filesystems ['nvme'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/README.md Samba Published Collecting Metrics/Storage, Mount Points and Filesystems ['samba', 'smb', 'file sharing'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/README.md StoreCLI RAID Published Collecting Metrics/Storage, Mount Points and Filesystems ['storage', 'raid-controller', 'manage-disks'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/storidge.md Storidge Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/synology_activebackup.md Synology ActiveBackup Published Collecting Metrics/Storage, Mount Points and Filesystems https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/README.md ZFS Pools Published Collecting Metrics/Storage, Mount Points and Filesystems ['zfs pools', 'pools', 'zfs', 'filesystem'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/blackbox.md Blackbox Published Collecting Metrics/Synthetic Checks ['blackbox'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/README.md Domain expiration date Published Collecting Metrics/Synthetic Checks ['whois'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/README.md HTTP Endpoints Published Collecting Metrics/Synthetic Checks ['webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/README.md Idle OS Jitter Published Collecting Metrics/Synthetic Checks ['latency', 'jitter'] https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/README.md IOPing Published Collecting Metrics/Synthetic Checks https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/README.md Monit Published Collecting Metrics/Synthetic Checks ['monit', 'mmonit', 'supervision tool', 'monitrc'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/README.md Ping Published Collecting Metrics/Synthetic Checks ['ping'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/site_24x7.md Site 24x7 Published Collecting Metrics/Synthetic Checks https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/README.md TCP/UDP Endpoints Published Collecting Metrics/Synthetic Checks https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/uptimerobot.md Uptimerobot Published Collecting Metrics/Synthetic Checks https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/README.md X.509 certificate Published Collecting Metrics/Synthetic Checks ['x509', 'certificate'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/README.md Chrony Published Collecting Metrics/System Clock and NTP https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/README.md NTPd Published Collecting Metrics/System Clock and NTP ['ntpd', 'ntp', 'time'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/README.md Timex Published Collecting Metrics/System Clock and NTP https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/systemd_services.md Systemd Services Published Collecting Metrics/Systemd ['containers', 'docker'] https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/README.md Systemd Units Published Collecting Metrics/Systemd ['systemd'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/README.md systemd-logind users Published Collecting Metrics/Systemd ['logind', 'systemd'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/celery.md Celery Published Collecting Metrics/Task Queues https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mesos.md Mesos Published Collecting Metrics/Task Queues https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/slurm.md Slurm Published Collecting Metrics/Task Queues https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kannel.md Kannel Published Collecting Metrics/Telephony Servers https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/README.md OpenSIPS Published Collecting Metrics/Telephony Servers ['opensips', 'sip', 'voice', 'video', 'stream'] https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/README.md APC UPS Published Collecting Metrics/UPS ['ups', 'apcupsd', 'apc'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/README.md UPS (NUT) Published Collecting Metrics/UPS ['ups', 'nut'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/fastd.md Fastd Published Collecting Metrics/VPNs https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/README.md Libreswan Published Collecting Metrics/VPNs ['vpn', 'libreswan', 'network', 'ipsec'] https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/README.md OpenVPN Published Collecting Metrics/VPNs ['openvpn', 'vpn'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/README.md OpenVPN status log Published Collecting Metrics/VPNs ['openvpn', 'vpn'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/softether_vpn_server.md SoftEther VPN Server Published Collecting Metrics/VPNs https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/strongswan.md strongSwan Published Collecting Metrics/VPNs https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/README.md Tor Published Collecting Metrics/VPNs ['tor', 'traffic', 'vpn'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/README.md WireGuard Published Collecting Metrics/VPNs ['wireguard', 'vpn', 'security'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/README.md Apache Published Collecting Metrics/Web Servers and Web Proxies ['webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/apicast.md APIcast Published Collecting Metrics/Web Servers and Web Proxies https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clash.md Clash Published Collecting Metrics/Web Servers and Web Proxies https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/README.md Envoy Published Collecting Metrics/Web Servers and Web Proxies ['envoy', 'proxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gobetween.md Gobetween Published Collecting Metrics/Web Servers and Web Proxies https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/README.md HAProxy Published Collecting Metrics/Web Servers and Web Proxies ['haproxy', 'web', 'webserver', 'http', 'proxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/integrations/httpd.md HTTPD Published Collecting Metrics/Web Servers and Web Proxies ['webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/README.md Lighttpd Published Collecting Metrics/Web Servers and Web Proxies ['webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/README.md Litespeed Published Collecting Metrics/Web Servers and Web Proxies ['litespeed', 'web', 'server'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/README.md NGINX Published Collecting Metrics/Web Servers and Web Proxies ['nginx', 'web', 'webserver', 'http', 'proxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/README.md NGINX Plus Published Collecting Metrics/Web Servers and Web Proxies ['nginxplus', 'nginx', 'web', 'webserver', 'http', 'proxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/README.md NGINX Unit Published Collecting Metrics/Web Servers and Web Proxies ['nginx', 'unit', 'web', 'appserver', 'http'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/README.md NGINX VTS Published Collecting Metrics/Web Servers and Web Proxies ['webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/README.md PHP-FPM Published Collecting Metrics/Web Servers and Web Proxies ['phpfpm', 'php'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/README.md Squid Published Collecting Metrics/Web Servers and Web Proxies ['squid', 'web delivery', 'squid caching proxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/README.md Squid log files Published Collecting Metrics/Web Servers and Web Proxies ['squid', 'logs'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE True -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/README.md Tengine Published Collecting Metrics/Web Servers and Web Proxies ['tengine', 'web', 'webserver'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/README.md Tomcat Published Collecting Metrics/Web Servers and Web Proxies ['apache', 'tomcat', 'webserver', 'websocket', 'jakarta', 'javaEE'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/README.md Traefik Published Collecting Metrics/Web Servers and Web Proxies ['traefik', 'proxy', 'webproxy'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/README.md uWSGI Published Collecting Metrics/Web Servers and Web Proxies ['application server', 'python', 'web applications'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/README.md Varnish Published Collecting Metrics/Web Servers and Web Proxies ['varnish', 'varnishstat', 'varnishd', 'cache', 'web server', 'web cache'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/README.md Web server log files Published Collecting Metrics/Web Servers and Web Proxies ['webserver', 'apache', 'httpd', 'nginx', 'lighttpd', 'logs'] https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory.md Active Directory Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'active directory', 'ad'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md Active Directory Certificate Service Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'active directory', 'adcs', 'ad'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md Active Directory Federation Service Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'active directory', 'adfs', 'ad'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/asp.net.md ASP.NET Published Collecting Metrics/Windows Systems ['windows', 'ASP', 'webservice'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md Hardware information collected from kernel ring. Published Collecting Metrics/Windows Systems ['cpu', 'temperature'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hyper-v.md Hyper-V Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'hyperv', 'virtualization', 'vm'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/iis.md IIS Published Collecting Metrics/Windows Systems ['IIS', 'HTTP', 'Web service'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/memory_statistics.md Memory statistics Published Collecting Metrics/Windows Systems ['memory', 'swap'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_exchange.md MS Exchange Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'exchange', 'mail'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_sql_server.md MS SQL Server Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'sql', 'queries'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/net_framework.md NET Framework Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'netframework', 'dotnet'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/network_subsystem.md Network Subsystem Published Collecting Metrics/Windows Systems ['network', 'bandwidth', 'ip', 'udp', 'tcp', 'interface'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/numa_architecture.md NUMA Architecture Published Collecting Metrics/Windows Systems ['windows', 'NUMA', 'processor'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/physical_and_logical_disk_performance_metrics.md Physical and Logical Disk Performance Metrics Published Collecting Metrics/Windows Systems ['disk', 'disks', 'io', 'volume', 'physical', 'logical'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/power_supply.md Power supply Published Collecting Metrics/Windows Systems ['power supply'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/processor.md Processor Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'processor', 'CPU'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/semaphore_statistics.md Semaphore statistics Published Collecting Metrics/Windows Systems ['ipc', 'semaphores'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/sensors.md Sensors Published Collecting Metrics/Windows Systems ['Sensors', 'Windows'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_statistics.md System statistics Published Collecting Metrics/Windows Systems ['process counts', 'threads', 'context switch'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_thermal_zone.md System thermal zone Published Collecting Metrics/Windows Systems ['thermal', 'temperature'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/windows_services.md Windows Services Published Collecting Metrics/Windows Systems ['windows', 'microsoft', 'services'] https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE COLLECTOR'S metadata.yaml FILE False - - - - -https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/README.md Exporting Metrics Published Exporting Metrics Use the exporting engine to send Netdata metrics to popular external time series databases for long-term storage or further analysis. -https://github.com/netdata/netdata/edit/master/src/exporting/README.md Exporting reference Published Exporting Metrics With the exporting engine, you can archive your Netdata metrics to multiple external databases for long-term storage or further analysis. -https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/enable-an-exporting-connector.md Enable an exporting connector Published Exporting Metrics Learn how to enable and configure any connector using examples to start exporting metrics to external time-series databases in minutes. -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/appoptics.md AppOptics Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/README.md AWS Kinesis Published Exporting Metrics/Connectors ['exporter', 'AWS', 'Kinesis'] https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_data_explorer.md Azure Data Explorer Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_event_hub.md Azure Event Hub Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/blueflood.md Blueflood Published Exporting Metrics/Connectors ['exporter', 'graphite', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/chronix.md Chronix Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cortex.md Cortex Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cratedb.md CrateDB Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/elasticsearch.md ElasticSearch Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/gnocchi.md Gnocchi Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/google_bigquery.md Google BigQuery Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/README.md Google Cloud Pub Sub Published Exporting Metrics/Connectors ['exporter', 'Google Cloud', 'Pub Sub'] https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/README.md Graphite Published Exporting Metrics/Connectors ['exporter', 'graphite', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/greptimedb.md GreptimeDB Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/irondb.md IRONdb Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/json/README.md JSON Published Exporting Metrics/Connectors ['exporter', 'json'] https://github.com/netdata/netdata/edit/master/src/exporting/json/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/kafka.md Kafka Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/kairosdb.md KairosDB Published Exporting Metrics/Connectors ['exporter', 'graphite', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/graphite/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/m3db.md M3DB Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/metricfire.md MetricFire Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/README.md MongoDB Published Exporting Metrics/Connectors ['exporter', 'MongoDB'] https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/new_relic.md New Relic Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/opeansearch.md OpeanSearch Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/README.md OpenTSDB Published Exporting Metrics/Connectors ['exporter', 'OpenTSDB', 'scalable time series'] https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/postgresql.md PostgreSQL Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/remote_write/README.md Prometheus Remote Write Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/quasardb.md QuasarDB Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/splunk_signalfx.md Splunk SignalFx Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/thanos.md Thanos Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/tikv.md TiKV Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/timescaledb.md TimescaleDB Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/victoriametrics.md VictoriaMetrics Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/vmware_aria.md VMware Aria Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/wavefront.md Wavefront Published Exporting Metrics/Connectors ['exporter', 'Prometheus', 'remote write', 'time series'] https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE EXPORTER'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/README.md Prometheus Published Exporting Metrics Export Netdata metrics to Prometheus for archiving and further analysis. -https://github.com/netdata/netdata/edit/master/src/web/api/exporters/shell/README.md Shell Scripts Published Exporting Metrics - - -https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/systemd_journal_logs.md Systemd Journal Logs Published Logs/Systemd Journal Logs ['systemd', 'journal', 'logs'] https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/windows_event_logs.md Windows Event Logs Published Logs/Windows Event Logs ['windows', 'windows events', 'logs'] https://github.com/netdata/netdata/edit/master/integrations/logs/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE LOGS' metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/docs/logs/README.md Journal Viewer Plugin Published Logs/Systemd Journal Logs View and analyze logs available in systemd journal -https://github.com/netdata/netdata/edit/master/docs/logs/forward_secure_sealing.md Forward Secure Sealing (FSS) in Systemd-Journal Published Logs/Systemd Journal Logs -https://github.com/netdata/netdata/edit/master/src/collectors/windows-events.plugin/README.md Windows Events Plugin Reference Published Logs/Windows Event Logs -https://github.com/netdata/netdata/edit/master/src/collectors/log2journal/README.md log2journal Published Logs/log2journal -https://github.com/netdata/netdata/edit/master/src/libnetdata/log/systemd-cat-native.md systemd-cat-native Published Logs/systemd-cat-native -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/README.md Logs Centralization Points with systemd-journald Published Logs/Logs Centralization Points with systemd-journald -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates.md Passive journal centralization with encryption using self-signed certificates Published Logs/Logs Centralization Points with systemd-journald -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption.md Passive journal centralization without encryption Published Logs/Logs Centralization Points with systemd-journald -https://github.com/netdata/netdata/edit/master/docs/logs/active_journal_centralization_guide_no_encryption.md Active journal source without encryption Published Logs/Logs Centralization Points with systemd-journald - - -https://github.com/netdata/netdata/edit/master/docs/top-monitoring-netdata-functions.md Top Consumers Published Top Consumers Present the Netdata Functions what these are and why they should be used. -https://github.com/netdata/netdata/edit/master/docs/functions/processes.md Processes Published Top Consumers -https://github.com/netdata/netdata/edit/master/docs/functions/databases.md Database Queries Published Top Consumers Top and running database queries with deadlock and error attribution for 13 databases. - -https://github.com/netdata/netdata/edit/master/src/health/README.md Alerts & Notifications Published Alerts & Notifications -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/creating-alerts-with-netdata-alerts-configuration-manager.md Creating Alerts with the Alerts Configuration Manager Published Alerts & Notifications -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/README.md Notifications Published Alerts & Notifications/Notifications Send Netdata alerts from a centralized place with Netdata Cloud, or configure nodes individually, to enable incident response and faster resolution. -https://github.com/netdata/netdata/edit/master/src/health/notifications/README.md Agent Notifications Reference Published Alerts & Notifications/Notifications/Agent Dispatched Notifications -https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/README.md Alerta Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Alerta'] https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/README.md AWS SNS Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['AWS SNS'] https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/README.md Custom Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['custom'] https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/README.md Discord Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Discord'] https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/README.md Dynatrace Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Dynatrace'] https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/email/README.md Email Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['email'] https://github.com/netdata/netdata/edit/master/src/health/notifications/email/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/README.md Flock Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Flock'] https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/README.md Gotify Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['gotify'] https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/README.md ilert Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['ilert'] https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/README.md IRC Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['IRC'] https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/README.md Kavenegar Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Kavenegar'] https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/README.md Matrix Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Matrix'] https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/README.md MessageBird Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['MessageBird'] https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/README.md Microsoft Teams Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Microsoft', 'Teams', 'MS teams'] https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/README.md ntfy Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['ntfy'] https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/README.md OpsGenie Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['OpsGenie'] https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/README.md PagerDuty Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['PagerDuty'] https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/README.md Prowl Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Prowl'] https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/README.md Pushbullet Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Pushbullet'] https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/README.md PushOver Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['PushOver'] https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/README.md RocketChat Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['RocketChat'] https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/README.md SIGNL4 Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['signl4'] https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/README.md Slack Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Slack'] https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/README.md SMS Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['SMS tools 3', 'SMS', 'Messaging'] https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/README.md SMSEagle Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['smseagle'] https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/README.md syslog Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['syslog'] https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/README.md Telegram Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Telegram'] https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/README.md Twilio Published Alerts & Notifications/Notifications/Agent Dispatched Notifications ['Twilio'] https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference.md Centralized Cloud Notifications Reference Published Alerts & Notifications/Notifications/Centralized Cloud Notifications Configure Netdata Cloud to send notifications to your team whenever any node on your infrastructure triggers an alert threshold. -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-notification-methods.md Manage notification methods Published Alerts & Notifications/Notifications/Centralized Cloud Notifications Instructions on how to manage notification methods -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules.md Manage alert notification silencing rules Published Alerts & Notifications/Notifications/Centralized Cloud Notifications Master Netdata alert management via notification silencing rules for efficient and focused monitoring. -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/amazon_sns.md Amazon SNS Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['awssns'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/discord.md Discord Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['discord', 'community'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/ilert.md ilert Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['ilert'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/mattermost.md Mattermost Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['mattermost'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/microsoft_teams.md Microsoft Teams Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['microsoft', 'teams'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/netdata_mobile_app.md Netdata Mobile App Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['mobile-app', 'phone', 'personal-notifications'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/opsgenie.md Opsgenie Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['opsgenie', 'atlassian'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/pagerduty.md PagerDuty Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['pagerduty'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/rocketchat.md RocketChat Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['rocketchat'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/servicenow.md ServiceNow Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['servicenow'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/slack.md Slack Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['slack'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk.md Splunk Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['Splunk'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk_victorops.md Splunk VictorOps Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['VictorOps', 'Splunk', 'On-Call'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/telegram.md Telegram Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['Telegram'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/webhook.md Webhook Published Alerts & Notifications/Notifications/Centralized Cloud Notifications ['generic webhooks', 'webhooks'] https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/metadata.yaml DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE -https://github.com/netdata/netdata/edit/master/src/health/REFERENCE.md Alert Configuration Reference Published Alerts & Notifications -https://github.com/netdata/netdata/edit/master/src/health/alert-configuration-ordering.md Alert Configuration Ordering Published Alerts & Notifications alerts,health,ordering,precedence,templates,alarms -https://github.com/netdata/netdata/edit/master/src/health/overriding-stock-alerts.md Overriding Stock Alerts Published Alerts & Notifications alerts,health,override,stock,templates,alarms -https://github.com/netdata/netdata/edit/master/src/web/api/health/README.md Health API Calls Published Alerts & Notifications - -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/machine-learning-and-assisted-troubleshooting.md Netdata AI Published Netdata AI -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/conversations.md Conversations Published Netdata AI conversations,chat,real-time,live exhibits -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ai-insights.md Insights Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/infrastructure-summary.md Infrastructure Summary Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/performance-optimization.md Performance Optimization Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/capacity-planning.md Capacity Planning Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/anomaly-analysis.md Anomaly Analysis Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/scheduled-reports.md Scheduled Reports Published Netdata AI/Insights -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/index.md Investigations Published Netdata AI/Investigations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/custom-investigations.md Custom Investigations Published Netdata AI/Investigations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/scheduled-investigations.md Scheduled Investigations Published Netdata AI/Investigations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/troubleshooting/index.md Troubleshooting Published Netdata AI/Troubleshooting -https://github.com/netdata/netdata/edit/master/docs/troubleshooting/troubleshoot.md Alert Troubleshooting Published Netdata AI/Troubleshooting -https://github.com/netdata/netdata/edit/master/docs/ml-ai/anomaly-advisor.md Anomaly Advisor Published Netdata AI/Troubleshooting -https://github.com/netdata/netdata/edit/master/docs/metric-correlations.md Metric Correlations Published Netdata AI/Troubleshooting Quickly find metrics and charts closely related to a particular timeframe of interest anywhere in your infrastructure to discover the root cause faster. -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/alerts-automation/alerts-automation.md Alerts Automation Published Netdata AI alerts,automation,ai alerts AI-powered alert creation and suggestions -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-anomaly-detection.md Anomaly Detection Published Netdata AI/Anomaly Detection -https://github.com/netdata/netdata/edit/master/src/ml/ml-configuration.md ML Configuration Published Netdata AI/Anomaly Detection -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-accuracy.md ML Accuracy Published Netdata AI/Anomaly Detection Analysis of Netdata's ML anomaly detection accuracy, false positive rates, and comparison with other approaches -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/README.md MCP Published Netdata AI/MCP -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/ai-chat-netdata.md Chat with Netdata Published Netdata AI/MCP -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/ai-devops-copilot.md MCP Clients Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-desktop.md Claude Desktop Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/cursor.md Cursor Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/vs-code.md Visual Studio Code Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/jetbrains-ides.md JetBrains IDEs Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/netdata-web-client.md Netdata Web Client Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-code.md Claude Code Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/gemini-cli.md Gemini CLI Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/codex-cli.md OpenAI Codex CLI Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/crush.md Crush Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/opencode.md OpenCode Published Netdata AI/MCP/MCP Clients -https://github.com/netdata/netdata/edit/master/docs/netdata-assistant.md AI powered troubleshooting assistant Unpublished AI and Machine Learning -https://github.com/netdata/netdata/edit/master/src/ml/README.md ML models and anomaly detection Unpublished AI and Machine Learning This is an in-depth look at how Netdata uses ML to detect anomalies. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/README.md Dashboards and Charts Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/home-tab.md Tabs Published Dashboards and Charts/Tabs With Netdata Cloud's War Rooms, you can see real-time metrics, from any number of nodes in your infrastructure, in composite charts. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/alerts-tab.md Alerts Published Dashboards and Charts/Tabs -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/anomaly-advisor-tab.md Anomalies Published Dashboards and Charts/Tabs Quickly find anomalous metrics anywhere in your infrastructure. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/dashboards-tab.md Dashboards Published Dashboards and Charts/Tabs Design new dashboards that target your infrastructure's unique needs and share them with your team fortargeted visual anomaly detection or incident response. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/events-feed.md Events Published Dashboards and Charts/Tabs Present the Netdata Events feed. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/kubernetes-tab.md Kubernetes Published Dashboards and Charts/Tabs Netdata Cloud features rich, zero-configuration Kubernetes monitoring for the resource utilization and application metrics of Kubernetes (k8s) clusters. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/logs-tab.md Logs Published Dashboards and Charts/Tabs -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/metrics-tab-and-single-node-tabs.md Metrics Published Dashboards and Charts/Tabs -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/nodes-tab.md Nodes Published Dashboards and Charts/Tabs See charts from all your nodes in one pane of glass, then dive in to embedded dashboards for granular troubleshooting of ongoing issues. -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/top-tab.md Top Published Dashboards and Charts/Tabs Instructions on how to use Functions -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/themes.md Theme Published Dashboards and Charts -https://github.com/netdata/netdata-grafana-datasource-plugin/edit/master/README.md Grafana Plugin Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/netdata-charts.md Charts Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/expanded-chart-analysis.md Expanded Chart Analysis Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md NIDL Framework Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/node-filter.md Node Filter Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/visualization-date-and-time-controls.md Time Controls Published Dashboards and Charts -https://github.com/netdata/netdata/edit/master/src/web/gui/confluence/README.md Atlassian Confluence dashboards Unpublished Dashboards and Charts -https://github.com/netdata/netdata/edit/master/src/web/gui/README.md Legacy Agent Dashboard Unpublished Dashboards and Charts The local Netdata Agent dashboard is the heart of health monitoring and performance troubleshooting, with hundreds of real-time charts. -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/monitor-your-infrastructure.md Monitor your Infrastructure Unpublished Dashboards and Charts - - -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/README.md Security and Privacy Design Published Security and Privacy Design -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-agent-security.md Netdata Agent Published Security and Privacy Design -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-cloud-security.md Netdata Cloud Published Security and Privacy Design - - - - - - - - -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/README.md Developer and Contributor Corner Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/netdata-apis.md REST API Unpublished Developer and Contributor Corner/REST API -https://github.com/netdata/netdata/edit/master/src/web/api/README.md REST API Published Developer and Contributor Corner/REST API -https://github.com/netdata/netdata/edit/master/src/web/api/queries/README.md Queries Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/average/README.md Average or Mean Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/countif/README.md CountIf Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/des/README.md Double exponential smoothing Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/incremental_sum/README.md Incremental Sum (`incremental_sum`) Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/max/README.md Max Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/median/README.md Median Published Developer and Contributor Corner/REST API/Queries Use median in API queries and health entities to find the 'middle' value from a sample, eliminating any unwanted spikes in the returned metrics. -https://github.com/netdata/netdata/edit/master/src/web/api/queries/min/README.md Min Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/percentile/README.md Percentile Published Developer and Contributor Corner/REST API/Queries Use percentile in API queries and health entities to find the 'percentile' value from a sample, eliminating any unwanted spikes in the returned metrics. -https://github.com/netdata/netdata/edit/master/src/web/api/queries/ses/README.md Single (or Simple) Exponential Smoothing (`ses`) Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/stddev/README.md Standard deviation (`stddev`) Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/sum/README.md Sum Published Developer and Contributor Corner/REST API/Queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/trimmed_mean/README.md Trimmed Mean Published Developer and Contributor Corner/REST API/Queries Use trimmed-mean in API queries and health entities to find the average value from a sample, eliminating any unwanted spikes in the returned metrics. -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/README.md Formatters Published Developer and Contributor Corner/REST API/Formatters -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/csv/README.md CSV formatter Published Developer and Contributor Corner/REST API/Formatters -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/json/README.md JSON formatter Published Developer and Contributor Corner/REST API/Formatters -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/ssv/README.md SSV formatter Published Developer and Contributor Corner/REST API/Formatters -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/value/README.md Value formatter Published Developer and Contributor Corner/REST API/Formatters -https://github.com/netdata/netdata/edit/master/src/web/api/badges/README.md Netdata badges Published Developer and Contributor Corner/REST API -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/dyncfg.md Dynamic Configuration Published Developer and Contributor Corner/Dynamic Configuration - - -https://github.com/netdata/netdata/edit/master/src/database/engine/README.md Database Engine Published Developer and Contributor Corner -https://github.com/netdata/.github/edit/main/CONTRIBUTING.md Contributing Published Developer and Contributor Corner -https://github.com/netdata/.github/edit/main/CODE_OF_CONDUCT.md Community code of conduct Published Developer and Contributor Corner -https://github.com/netdata/.github/edit/main/SECURITY.md Security Policy Published Developer and Contributor Corner The Netdata team maintains and adheres to a formal process any time a member of the community reports a security vulnerability. -https://github.com/netdata/netdata/edit/master/src/plugins.d/README.md External plugins Published Developer and Contributor Corner/External Plugins -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/README.md go.d.plugin Published Developer and Contributor Corner/External Plugins/go.d.plugin go.d.plugin is an external plugin for Netdata, responsible for running individual data collectors written in Go. -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/docs/how-to-write-a-module.md How to write a Netdata collector in Go Published Developer and Contributor Corner/External Plugins/go.d.plugin This guide will walk you through the technical implementation of writing a new Netdata collector in Golang, with tips on interfaces, structure, configuration files, and more. -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/README.md python.d.plugin Published Developer and Contributor Corner/External Plugins/python.d.plugin -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/python-collector.md Develop a custom data collector in Python Unpublished Developer and Contributor Corner/External Plugins/python.d.plugin Learn how write a custom data collector in Python, which you'll use to collect metrics from and monitor any application that isn't supported out of the box. -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/README.md charts.d.plugin Published Developer and Contributor Corner/External Plugins -https://github.com/netdata/netdata/edit/master/src/collectors/profile.plugin/README.md profile.plugin Published Developer and Contributor Corner/External Plugins -https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_REFERENCE.md Functions v3 Protocol reference Published Developer and Contributor Corner/External Plugins -https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md Functions developer guide Published Developer and Contributor Corner/External Plugins -https://github.com/netdata/netdata/edit/master/docs/guidelines.md Contribute to the documentation Published Developer and Contributor Corner/Contribute to the documentation -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/style-guide.md Netdata style guide Published Developer and Contributor Corner/Contribute to the documentation The Netdata style guide establishes editorial guidelines for all of Netdata's writing, including documentation, blog posts, in-product UX copy, and more. -https://github.com/netdata/netdata/edit/master/src/web/README.md Web Unpublished Developer and Contributor Corner Every Netdata Agent comes bundled with hundreds of interactive, customizable charts designed by monitoring and troubleshooting experts. -https://github.com/netdata/netdata/edit/master/docs/glossary.md Glossary Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/src/libnetdata/README.md libnetdata Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/adaptive_resortable_list/README.md Adaptive re-sortable list (ARL) Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/aral/README.md Array allocator Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/avl/README.md AVL Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/buffer/README.md BUFFER library Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/circular_buffer/README.md Circular Buffer Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/clocks/README.md Clocks Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/config/README.md Netdata ini config files Published Developer and Contributor Corner/libnetdata - -https://github.com/netdata/netdata/edit/master/src/libnetdata/json/README.md JSON Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/locks/README.md Locks Published Developer and Contributor Corner/libnetdata - -https://github.com/netdata/netdata/edit/master/src/libnetdata/onewayalloc/README.md One way allocator Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/popen/README.md popen Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/parser/README.md parser Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/procfile/README.md procfile Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/simple_pattern/README.md Simple patterns Published Developer and Contributor Corner/libnetdata Netdata supports simple patterns, which are less cryptic versions of regular expressions. Use familiar notation for powerful results. -https://github.com/netdata/netdata/edit/master/src/libnetdata/statistical/README.md Statistical functions Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/storage_number/README.md Storage number Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/string/README.md String Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/threads/README.md Threads Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/url/README.md URL Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/worker_utilization/README.md Worker Utilization Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/dictionary/README.md Dictionaries Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/july/README.md July interface Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/socket/README.md Socket Published Developer and Contributor Corner/libnetdata -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/running-through-cf-tunnels.md Running a Local Dashboard through Cloudflare Tunnels Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/REDISTRIBUTED.md Redistributed Software Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/tests/health_mgmtapi/README.md Health command API tester Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/import-export-print-snapshot.md Import, export, and print a snapshot Published Developer and Contributor Corner Snapshots can be incredibly useful for diagnosing anomalies after they've already happened, and are interoperable with any other node running Netdata. -https://github.com/netdata/netdata/edit/master/src/web/gui/custom/README.md Build a custom Dashboard HTML page Published Developer and Contributor Corner Build custom dashboards with key metrics from one or more nodes running the Netdata Agent and host them anywhere. -https://github.com/netdata/netdata/edit/master/docs/netdata-for-IoT.md Netdata for IoT Unpublished Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md Monitor Nginx or Apache web server log files with Netdata Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-unbound-metrics.md Monitor Unbound DNS servers with Netdata Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-cockroachdb.md Monitor CockroachDB metrics with Netdata Unpublished Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-hadoop-cluster.md Monitor a Hadoop cluster with Netdata Published Developer and Contributor Corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/kubernetes-k8s-netdata.md Kubernetes monitoring with Netdata: Overview and visualizations Unpublished Developer and Contributor Corner Learn how to navigate Netdata's Kubernetes monitoring features for visualizing the health and performance of a Kubernetes cluster with per-second granularity. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/lamp-stack.md LAMP stack monitoring (Linux, Apache, MySQL, PHP) with Netdata Unpublished Developer and Contributor Corner Set up robust LAMP stack monitoring (Linux, Apache, MySQL, PHP) in just a few minutes using a free, open-source monitoring tool that collects metrics every second. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/pi-hole-raspberry-pi.md Monitor Pi-hole (and a Raspberry Pi) with Netdata Unpublished Developer and Contributor Corner Monitor Pi-hole metrics, plus Raspberry Pi system metrics, in minutes and completely for free with Netdata's open-source monitoring agent. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/raspberry-pi-anomaly-detection.md Unsupervised anomaly detection for Raspberry Pi monitoring Unpublished Developer and Contributor Corner Use a low-overhead machine learning algorithm and an open-source monitoring tool to detect anomalous metrics on a Raspberry Pi. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-debug-applications-ebpf.md Monitor, troubleshoot, and debug applications with eBPF metrics Published Developer and Contributor Corner Use Netdata's built-in eBPF metrics collector to monitor, troubleshoot, and debug your custom application using low-level kernel feedback. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/process.md Monitor any process in real-time with Netdata Unpublished Developer and Contributor Corner Tap into Netdata's powerful collectors, with per-second utilization metrics for every process, to troubleshoot faster and make data-informed decisions. -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/build-the-netdata-agent-yourself.md Build the Netdata Agent Yourself Published Developer and Contributor Corner/Build the Netdata Agent Yourself -https://github.com/netdata/netdata/edit/master/packaging/maintainers/README.md Package Maintainers Published Developer and Contributor Corner/Build the Netdata Agent Yourself -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/source.md Compile from source code Published Developer and Contributor Corner/Build the Netdata Agent Yourself Package maintainers and power users may be interested in manually building Netdata from source without using any of our installation scripts. -https://github.com/netdata/netdata/edit/master/build_external/README.md External build-system Published Developer and Contributor Corner/Build the Netdata Agent Yourself -https://github.com/netdata/netdata/edit/master/packaging/building-native-packages-locally.md How to build native (DEB/RPM) packages locally for testing Published Developer and Contributor Corner/Build the Netdata Agent Yourself Instructions for developers who need to build native packages locally for testing. -https://github.com/netdata/netdata/edit/master/contrib/README.md Netdata contrib Published Developer and Contributor Corner/Build the Netdata Agent Yourself -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/manual.md Install the Netdata Agent from a Git checkout Published Developer and Contributor Corner Use the Netdata Agent source code from GitHub, plus helper scripts to set up your system, to install Netdata without packages or binaries. diff --git a/ingest/one_commit_back_file-dict.tsv b/ingest/one_commit_back_file-dict.tsv deleted file mode 100644 index 25c0ef656f..0000000000 --- a/ingest/one_commit_back_file-dict.tsv +++ /dev/null @@ -1,761 +0,0 @@ -custom_edit_url learn_path -https://github.com/netdata/netdata-cloud-onprem/edit/master/netdata-cloud-onprem/RELEASE-NOTES.md /docs/netdata-cloud-on-prem/release-notes -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/hardening-guide.md /docs/netdata-cloud-on-prem/security-hardening-guide -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/troubleshooting.md /docs/netdata-cloud-on-prem/troubleshooting -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/ecr-mirror.md /docs/netdata-cloud-on-prem/mirroring-image-registry -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/sbom.md /docs/netdata-cloud-on-prem/software-bill-of-materials -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/image-signature-verification.md /docs/netdata-cloud-on-prem/container-image-signature-verification -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/README.md /docs/netdata-cloud-on-prem -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/poc-without-k8s.md /docs/netdata-cloud-on-prem/poc-without-k8s -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/installation.md /docs/netdata-cloud-on-prem/installation -https://github.com/netdata/netdata-cloud-onprem/edit/master/docs/learn.netdata.cloud/netpol.md /docs/netdata-cloud-on-prem/kubernetes-network-policy-configuration -https://github.com/netdata/agent-service-discovery/edit/master/README.md /docs/collecting-metrics/service-discovery -https://github.com/netdata/helmchart/edit/master/charts/netdata/README.md /docs/netdata-agent/installation/kubernetes-helm-chart-reference -https://github.com/netdata/netdata/edit/master/REDISTRIBUTED.md /docs/developer-and-contributor-corner/redistributed-software -https://github.com/netdata/netdata/edit/master/packaging/building-native-packages-locally.md /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/how-to-build-native-deb-rpm-packages-locally-for-testing -https://github.com/netdata/netdata/edit/master/packaging/makeself/README.md /docs/netdata-agent/installation/linux/static-binary-linux-packages -https://github.com/netdata/netdata/edit/master/packaging/docker/README.md /docs/netdata-agent/installation/docker -https://github.com/netdata/netdata/edit/master/packaging/windows/WINDOWS_INSTALLER.md /docs/netdata-agent/installation/windows -https://github.com/netdata/netdata/edit/master/packaging/maintainers/README.md /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/package-maintainers -https://github.com/netdata/netdata/edit/master/packaging/installer/UPDATE.md /docs/netdata-agent/maintenance/update -https://github.com/netdata/netdata/edit/master/packaging/installer/README.md /docs/netdata-agent/installation -https://github.com/netdata/netdata/edit/master/packaging/installer/UNINSTALL.md /docs/netdata-agent/maintenance/uninstall -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/freebsd.md /docs/netdata-agent/installation/freebsd -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kickstart.md /docs/netdata-agent/installation/linux -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/pfsense.md /docs/netdata-agent/installation/pfsense -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/macos.md /docs/netdata-agent/installation/macos -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/gcp.md /docs/netdata-agent/installation/gcp -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/synology.md /docs/netdata-agent/installation/synology -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/source.md /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself/compile-from-source-code -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/manual.md /docs/developer-and-contributor-corner/install-the-netdata-agent-from-a-git-checkout -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/ansible.md /docs/netdata-agent/installation/ansible -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/packages.md /docs/netdata-agent/installation/linux/native-linux-distribution-packages -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/aws.md /docs/netdata-agent/installation/aws -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/azure.md /docs/netdata-agent/installation/azure -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/kubernetes.md /docs/netdata-agent/installation/kubernetes -https://github.com/netdata/netdata/edit/master/packaging/installer/methods/offline.md /docs/netdata-agent/installation/linux/offline-systems -https://github.com/netdata/netdata/edit/master/docs/welcome-to-netdata.md /docs/welcome-to-netdata -https://github.com/netdata/netdata/edit/master/docs/nodes-ephemerality.md /docs/netdata-parents/node-types-and-lifecycle-reference -https://github.com/netdata/netdata/edit/master/docs/Demo-Sites.md /docs/live-demo -https://github.com/netdata/netdata/edit/master/docs/scalability.md /docs/welcome-to-netdata/scalability -https://github.com/netdata/netdata/edit/master/docs/fleet-configuration-management.md /docs/welcome-to-netdata/fleet-deployment-and-configuration-management -https://github.com/netdata/netdata/edit/master/docs/glossary.md /docs/developer-and-contributor-corner/glossary -https://github.com/netdata/netdata/edit/master/docs/reporting.md /docs/welcome-to-netdata/reporting -https://github.com/netdata/netdata/edit/master/docs/netdata-enterprise-evaluation-corrected.md /docs/welcome-to-netdata/enterprise-evaluation-guide -https://github.com/netdata/netdata/edit/master/docs/streaming-routing.md /docs/netdata-parents/streaming-routing-reference -https://github.com/netdata/netdata/edit/master/docs/realtime-monitoring.md /docs/welcome-to-netdata/real-time-monitoring -https://github.com/netdata/netdata/edit/master/docs/top-monitoring-netdata-functions.md /docs/top-consumers -https://github.com/netdata/netdata/edit/master/docs/metric-correlations.md /docs/netdata-ai/troubleshooting/metric-correlations -https://github.com/netdata/netdata/edit/master/docs/NIDL-Framework.md /docs/dashboards-and-charts/nidl-framework -https://github.com/netdata/netdata/edit/master/docs/guidelines.md /docs/developer-and-contributor-corner/contribute-to-the-documentation -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/best-practices.md /docs/netdata-parents/parent-configuration-best-practices -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/configuration.md /docs/netdata-parents/metrics-centralization-points/configuring-metrics-centralization-points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents.md /docs/netdata-parents/metrics-centralization-points/clustering-and-high-availability-of-netdata-parents -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/replication-of-past-samples.md /docs/netdata-parents/metrics-centralization-points/replication-of-past-samples -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/README.md /docs/netdata-parents/metrics-centralization-points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/metrics-centralization-points/faq.md /docs/netdata-parents/metrics-centralization-points/faq-on-metrics-centralization-points -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates.md /docs/logs/logs-centralization-points-with-systemd-journald/passive-journal-centralization-with-encryption-using-self-signed-certificates -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption.md /docs/logs/logs-centralization-points-with-systemd-journald/passive-journal-centralization-without-encryption -https://github.com/netdata/netdata/edit/master/docs/observability-centralization-points/logs-centralization-points-with-systemd-journald/README.md /docs/logs/logs-centralization-points-with-systemd-journald -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/maintenance-operations-on-netdata-agents.md /docs/netdata-agent/maintenance -https://github.com/netdata/netdata/edit/master/docs/category-overview-pages/machine-learning-and-assisted-troubleshooting.md /docs/netdata-ai -https://github.com/netdata/netdata/edit/master/docs/getting-started-netdata/guide.md /docs/getting-started -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-cloud-security.md /docs/security-and-privacy-design/netdata-cloud -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/README.md /docs/security-and-privacy-design -https://github.com/netdata/netdata/edit/master/docs/security-and-privacy-design/netdata-agent-security.md /docs/security-and-privacy-design/netdata-agent -https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/enable-an-exporting-connector.md /docs/exporting-metrics/enable-an-exporting-connector -https://github.com/netdata/netdata/edit/master/docs/exporting-metrics/README.md /docs/exporting-metrics -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-unbound-metrics.md /docs/developer-and-contributor-corner/monitor-unbound-dns-servers-with-netdata -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/running-through-cf-tunnels.md /docs/developer-and-contributor-corner/running-a-local-dashboard-through-cloudflare-tunnels -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/README.md /docs/developer-and-contributor-corner -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/build-the-netdata-agent-yourself.md /docs/developer-and-contributor-corner/build-the-netdata-agent-yourself -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/collect-apache-nginx-web-logs.md /docs/developer-and-contributor-corner/monitor-nginx-or-apache-web-server-log-files-with-netdata -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/dyncfg.md /docs/developer-and-contributor-corner/dynamic-configuration -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/style-guide.md /docs/developer-and-contributor-corner/contribute-to-the-documentation/netdata-style-guide -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-debug-applications-ebpf.md /docs/developer-and-contributor-corner/monitor-troubleshoot-and-debug-applications-with-ebpf-metrics -https://github.com/netdata/netdata/edit/master/docs/developer-and-contributor-corner/monitor-hadoop-cluster.md /docs/developer-and-contributor-corner/monitor-a-hadoop-cluster-with-netdata -https://github.com/netdata/netdata/edit/master/docs/delete/netdata/account.md /docs/netdata-cloud/account-deletion -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/creating-alerts-with-netdata-alerts-configuration-manager.md /docs/alerts-&-notifications/creating-alerts-with-the-alerts-configuration-manager -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/README.md /docs/alerts-&-notifications/notifications -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/manage-alert-notification-silencing-rules -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/manage-notification-methods.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/manage-notification-methods -https://github.com/netdata/netdata/edit/master/docs/alerts-and-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/centralized-cloud-notifications-reference -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/conversations.md /docs/netdata-ai/conversations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/ai-chat-netdata.md /docs/netdata-ai/mcp/chat-with-netdata -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/README.md /docs/netdata-ai/mcp -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/codex-cli.md /docs/netdata-ai/mcp/mcp-clients/openai-codex-cli -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/ai-devops-copilot.md /docs/netdata-ai/mcp/mcp-clients -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-desktop.md /docs/netdata-ai/mcp/mcp-clients/claude-desktop -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/vs-code.md /docs/netdata-ai/mcp/mcp-clients/visual-studio-code -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/crush.md /docs/netdata-ai/mcp/mcp-clients/crush -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/netdata-web-client.md /docs/netdata-ai/mcp/mcp-clients/netdata-web-client -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/gemini-cli.md /docs/netdata-ai/mcp/mcp-clients/gemini-cli -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/opencode.md /docs/netdata-ai/mcp/mcp-clients/opencode -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/cursor.md /docs/netdata-ai/mcp/mcp-clients/cursor -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/claude-code.md /docs/netdata-ai/mcp/mcp-clients/claude-code -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/mcp/mcp-clients/jetbrains-ides.md /docs/netdata-ai/mcp/mcp-clients/jetbrains-ides -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/alerts-automation/alerts-automation.md /docs/netdata-ai/alerts-automation -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/anomaly-analysis.md /docs/netdata-ai/insights/anomaly-analysis -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/performance-optimization.md /docs/netdata-ai/insights/performance-optimization -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/capacity-planning.md /docs/netdata-ai/insights/capacity-planning -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/infrastructure-summary.md /docs/netdata-ai/insights/infrastructure-summary -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/insights/scheduled-reports.md /docs/netdata-ai/insights/scheduled-reports -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/troubleshooting/index.md /docs/netdata-ai/troubleshooting -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/scheduled-investigations.md /docs/netdata-ai/investigations/scheduled-investigations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/custom-investigations.md /docs/netdata-ai/investigations/custom-investigations -https://github.com/netdata/netdata/edit/master/docs/netdata-ai/investigations/index.md /docs/netdata-ai/investigations -https://github.com/netdata/netdata/edit/master/docs/ml-ai/anomaly-advisor.md /docs/netdata-ai/troubleshooting/anomaly-advisor -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ai-insights.md /docs/netdata-ai/insights -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-anomaly-detection.md /docs/netdata-ai/anomaly-detection -https://github.com/netdata/netdata/edit/master/docs/ml-ai/ml-anomaly-detection/ml-accuracy.md /docs/netdata-ai/anomaly-detection/ml-accuracy -https://github.com/netdata/netdata/edit/master/docs/logs/forward_secure_sealing.md /docs/logs/systemd-journal-logs/forward-secure-sealing-fss-in-systemd-journal -https://github.com/netdata/netdata/edit/master/docs/logs/active_journal_centralization_guide_no_encryption.md /docs/logs/logs-centralization-points-with-systemd-journald/active-journal-source-without-encryption -https://github.com/netdata/netdata/edit/master/docs/logs/README.md /docs/logs/systemd-journal-logs/journal-viewer-plugin -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/start-stop-restart.md /docs/netdata-agent/maintenance/service-control -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/versions-and-platforms.md /docs/netdata-agent/versions-&-platforms -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/securing-netdata-agents.md /docs/netdata-agent/configuration/securing-agents -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/backup-and-restore-an-agent.md /docs/netdata-agent/maintenance/backup-and-restore-an-agent -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/ram-requirements.md /docs/netdata-agent/resource-utilization/ram -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/README.md /docs/netdata-agent/resource-utilization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/cpu-requirements.md /docs/netdata-agent/resource-utilization/cpu -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/disk-requirements-and-retention.md /docs/netdata-agent/resource-utilization/disk-&-retention -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/sizing-netdata-agents/bandwidth-requirements.md /docs/netdata-agent/resource-utilization/bandwidth -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata.md /docs/netdata-agent/configuration/using-custom-ca-certificates-with-netdata -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/README.md /docs/netdata-agent/configuration -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/optimize-the-netdata-agents-performance.md /docs/netdata-agent/configuration/performance-optimization -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/organize-systems-metrics-and-alerts.md /docs/netdata-agent/configuration/organize-systems-metrics-and-alerts -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/dynamic-configuration.md /docs/netdata-agent/configuration/dynamic-configuration-manager -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/anonymous-telemetry-events.md /docs/netdata-agent/anonymous-telemetry-events -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-h2o.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/h2o -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-haproxy.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/haproxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/README.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-nginx.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/nginx -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-apache.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/apache -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-lighttpd.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/lighttpd-v1.4.x -https://github.com/netdata/netdata/edit/master/docs/netdata-agent/configuration/running-the-netdata-agent-behind-a-reverse-proxy/Running-behind-caddy.md /docs/netdata-agent/configuration/securing-agents/running-the-agent-behind-a-reverse-proxy/caddy -https://github.com/netdata/netdata/edit/master/docs/troubleshooting/troubleshoot.md /docs/netdata-ai/troubleshooting/alert-troubleshooting -https://github.com/netdata/netdata/edit/master/docs/learn/node-identities.md /docs/netdata-agent/node-identities -https://github.com/netdata/netdata/edit/master/docs/learn/vm-templates.md /docs/netdata-agent/vm-templates -https://github.com/netdata/netdata/edit/master/docs/learn/switching-install-types.md /docs/netdata-agent/installation/linux/switch-install-types-and-release-channels -https://github.com/netdata/netdata/edit/master/docs/learn/unclaim-reclaim-node.md /docs/netdata-cloud/unclaim-and-reclaim-a-node -https://github.com/netdata/netdata/edit/master/docs/learn/remove-node.md /docs/netdata-cloud/remove-agent -https://github.com/netdata/netdata/edit/master/docs/install/windows-release-channels.md /docs/netdata-agent/installation/windows/switching-install-types-and-release-channels -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/kubernetes-tab.md /docs/dashboards-and-charts/tabs/kubernetes -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/netdata-charts.md /docs/dashboards-and-charts/charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/dashboards-tab.md /docs/dashboards-and-charts/tabs/dashboards -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/node-filter.md /docs/dashboards-and-charts/node-filter -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/expanded-chart-analysis.md /docs/dashboards-and-charts/expanded-chart-analysis -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/top-tab.md /docs/dashboards-and-charts/tabs/top -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/nodes-tab.md /docs/dashboards-and-charts/tabs/nodes -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/themes.md /docs/dashboards-and-charts/theme -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/README.md /docs/dashboards-and-charts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/logs-tab.md /docs/dashboards-and-charts/tabs/logs -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/events-feed.md /docs/dashboards-and-charts/tabs/events -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/metrics-tab-and-single-node-tabs.md /docs/dashboards-and-charts/tabs/metrics -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/import-export-print-snapshot.md /docs/developer-and-contributor-corner/import-export-and-print-a-snapshot -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/visualization-date-and-time-controls.md /docs/dashboards-and-charts/time-controls -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/home-tab.md /docs/dashboards-and-charts/tabs -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/alerts-tab.md /docs/dashboards-and-charts/tabs/alerts -https://github.com/netdata/netdata/edit/master/docs/dashboards-and-charts/anomaly-advisor-tab.md /docs/dashboards-and-charts/tabs/anomalies -https://github.com/netdata/netdata/edit/master/docs/functions/processes.md /docs/top-consumers/processes -https://github.com/netdata/netdata/edit/master/docs/functions/databases.md /docs/top-consumers/database-queries -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/README.md /docs/netdata-cloud -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-rule-based-room-assignment.md /docs/netdata-cloud/spaces-and-rooms/node-rule-based-room-assignment -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/node-states-and-transitions.md /docs/netdata-cloud/node-states-and-transitions -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/view-plan-and-billing.md /docs/netdata-cloud/netdata-plans-&-billing -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/organize-your-infrastructure-invite-your-team.md /docs/netdata-cloud/spaces-and-rooms -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/api-tokens.md /docs/netdata-cloud/authentication-&-authorization/api-tokens -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/README.md /docs/netdata-cloud/authentication-&-authorization -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/role-based-access-model.md /docs/netdata-cloud/authentication-&-authorization/role-based-access-model -https://github.com/netdata/netdata/edit/master/docs/netdata-cloud/authentication-and-authorization/enterprise-sso-authentication.md /docs/netdata-cloud/authentication-&-authorization/enterprise-sso-authentication -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/README.md /docs/netdata-agent/quickstart-deployment -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-with-centralization-points.md /docs/netdata-parents -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/standalone-deployment.md /docs/netdata-agent -https://github.com/netdata/netdata/edit/master/docs/deployment-guides/deployment-strategies.md /docs/netdata-parents/configuration-examples -https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/windows_event_logs.md /docs/logs/windows-event-logs -https://github.com/netdata/netdata/edit/master/integrations/logs/integrations/systemd_journal_logs.md /docs/logs/systemd-journal-logs -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/discord.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/discord -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/netdata_mobile_app.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/netdata-mobile-app -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/mattermost.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/mattermost -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/servicenow.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/servicenow -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/telegram.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/telegram -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/opsgenie.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/opsgenie -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/pagerduty.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/pagerduty -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/splunk -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/webhook.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/webhook -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/microsoft_teams.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/microsoft-teams -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/ilert.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/ilert -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/slack.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/slack -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/splunk_victorops.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/splunk-victorops -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/amazon_sns.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/amazon-sns -https://github.com/netdata/netdata/edit/master/integrations/cloud-notifications/integrations/rocketchat.md /docs/alerts-&-notifications/notifications/centralized-cloud-notifications/rocketchat -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/okta_sso.md /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/okta-sso -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/scim.md /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/scim -https://github.com/netdata/netdata/edit/master/integrations/cloud-authentication/integrations/oidc.md /docs/netdata-cloud/authentication-&-authorization/cloud-authentication-&-authorization-integrations/oidc -https://github.com/netdata/netdata/edit/master/tests/health_mgmtapi/README.md /docs/developer-and-contributor-corner/health-command-api-tester -https://github.com/netdata/netdata/edit/master/src/health/README.md /docs/alerts-&-notifications -https://github.com/netdata/netdata/edit/master/src/health/REFERENCE.md /docs/alerts-&-notifications/alert-configuration-reference -https://github.com/netdata/netdata/edit/master/src/health/alert-configuration-ordering.md /docs/alerts-&-notifications/alert-configuration-ordering -https://github.com/netdata/netdata/edit/master/src/health/overriding-stock-alerts.md /docs/alerts-&-notifications/overriding-stock-alerts -https://github.com/netdata/netdata/edit/master/src/health/notifications/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/agent-notifications-reference -https://github.com/netdata/netdata/edit/master/src/health/notifications/smstools3/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/sms -https://github.com/netdata/netdata/edit/master/src/health/notifications/matrix/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/matrix -https://github.com/netdata/netdata/edit/master/src/health/notifications/smseagle/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/smseagle -https://github.com/netdata/netdata/edit/master/src/health/notifications/discord/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/discord -https://github.com/netdata/netdata/edit/master/src/health/notifications/opsgenie/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/opsgenie -https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/slack -https://github.com/netdata/netdata/edit/master/src/health/notifications/prowl/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/prowl -https://github.com/netdata/netdata/edit/master/src/health/notifications/pagerduty/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pagerduty -https://github.com/netdata/netdata/edit/master/src/health/notifications/irc/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/irc -https://github.com/netdata/netdata/edit/master/src/health/notifications/msteams/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/microsoft-teams -https://github.com/netdata/netdata/edit/master/src/health/notifications/dynatrace/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/dynatrace -https://github.com/netdata/netdata/edit/master/src/health/notifications/signl4/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/signl4 -https://github.com/netdata/netdata/edit/master/src/health/notifications/alerta/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/alerta -https://github.com/netdata/netdata/edit/master/src/health/notifications/ilert/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/ilert -https://github.com/netdata/netdata/edit/master/src/health/notifications/email/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/email -https://github.com/netdata/netdata/edit/master/src/health/notifications/ntfy/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/ntfy -https://github.com/netdata/netdata/edit/master/src/health/notifications/custom/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/custom -https://github.com/netdata/netdata/edit/master/src/health/notifications/flock/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/flock -https://github.com/netdata/netdata/edit/master/src/health/notifications/gotify/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/gotify -https://github.com/netdata/netdata/edit/master/src/health/notifications/messagebird/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/messagebird -https://github.com/netdata/netdata/edit/master/src/health/notifications/syslog/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/syslog -https://github.com/netdata/netdata/edit/master/src/health/notifications/telegram/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/telegram -https://github.com/netdata/netdata/edit/master/src/health/notifications/rocketchat/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/rocketchat -https://github.com/netdata/netdata/edit/master/src/health/notifications/pushover/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pushover -https://github.com/netdata/netdata/edit/master/src/health/notifications/pushbullet/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/pushbullet -https://github.com/netdata/netdata/edit/master/src/health/notifications/kavenegar/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/kavenegar -https://github.com/netdata/netdata/edit/master/src/health/notifications/awssns/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/aws-sns -https://github.com/netdata/netdata/edit/master/src/health/notifications/twilio/README.md /docs/alerts-&-notifications/notifications/agent-dispatched-notifications/twilio -https://github.com/netdata/netdata/edit/master/src/plugins.d/README.md /docs/developer-and-contributor-corner/external-plugins -https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_DEVELOPER_GUIDE.md /docs/developer-and-contributor-corner/external-plugins/functions-developer-guide -https://github.com/netdata/netdata/edit/master/src/plugins.d/FUNCTION_UI_REFERENCE.md /docs/developer-and-contributor-corner/external-plugins/functions-v3-protocol-reference -https://github.com/netdata/netdata/edit/master/src/libnetdata/README.md /docs/developer-and-contributor-corner/libnetdata -https://github.com/netdata/netdata/edit/master/src/libnetdata/string/README.md /docs/developer-and-contributor-corner/libnetdata/string -https://github.com/netdata/netdata/edit/master/src/libnetdata/socket/README.md /docs/developer-and-contributor-corner/libnetdata/socket -https://github.com/netdata/netdata/edit/master/src/libnetdata/aral/README.md /docs/developer-and-contributor-corner/libnetdata/array-allocator -https://github.com/netdata/netdata/edit/master/src/libnetdata/statistical/README.md /docs/developer-and-contributor-corner/libnetdata/statistical-functions -https://github.com/netdata/netdata/edit/master/src/libnetdata/storage_number/README.md /docs/developer-and-contributor-corner/libnetdata/storage-number -https://github.com/netdata/netdata/edit/master/src/libnetdata/threads/README.md /docs/developer-and-contributor-corner/libnetdata/threads -https://github.com/netdata/netdata/edit/master/src/libnetdata/worker_utilization/README.md /docs/developer-and-contributor-corner/libnetdata/worker-utilization -https://github.com/netdata/netdata/edit/master/src/libnetdata/simple_pattern/README.md /docs/developer-and-contributor-corner/libnetdata/simple-patterns -https://github.com/netdata/netdata/edit/master/src/libnetdata/adaptive_resortable_list/README.md /docs/developer-and-contributor-corner/libnetdata/adaptive-re-sortable-list-arl -https://github.com/netdata/netdata/edit/master/src/libnetdata/dictionary/README.md /docs/developer-and-contributor-corner/libnetdata/dictionaries -https://github.com/netdata/netdata/edit/master/src/libnetdata/circular_buffer/README.md /docs/developer-and-contributor-corner/libnetdata/circular-buffer -https://github.com/netdata/netdata/edit/master/src/libnetdata/procfile/README.md /docs/developer-and-contributor-corner/libnetdata/procfile -https://github.com/netdata/netdata/edit/master/src/libnetdata/json/README.md /docs/developer-and-contributor-corner/libnetdata/json -https://github.com/netdata/netdata/edit/master/src/libnetdata/url/README.md /docs/developer-and-contributor-corner/libnetdata/url -https://github.com/netdata/netdata/edit/master/src/libnetdata/log/README.md /docs/netdata-agent/logging -https://github.com/netdata/netdata/edit/master/src/libnetdata/log/systemd-cat-native.md /docs/logs/systemd-cat-native -https://github.com/netdata/netdata/edit/master/src/libnetdata/locks/README.md /docs/developer-and-contributor-corner/libnetdata/locks -https://github.com/netdata/netdata/edit/master/src/libnetdata/buffer/README.md /docs/developer-and-contributor-corner/libnetdata/buffer-library -https://github.com/netdata/netdata/edit/master/src/libnetdata/avl/README.md /docs/developer-and-contributor-corner/libnetdata/avl -https://github.com/netdata/netdata/edit/master/src/libnetdata/clocks/README.md /docs/developer-and-contributor-corner/libnetdata/clocks -https://github.com/netdata/netdata/edit/master/src/libnetdata/onewayalloc/README.md /docs/developer-and-contributor-corner/libnetdata/one-way-allocator -https://github.com/netdata/netdata/edit/master/src/streaming/README.md /docs/netdata-parents/parent-child-configuration-reference -https://github.com/netdata/netdata/edit/master/src/web/api/README.md /docs/developer-and-contributor-corner/rest-api -https://github.com/netdata/netdata/edit/master/src/web/api/queries/README.md /docs/developer-and-contributor-corner/rest-api/queries -https://github.com/netdata/netdata/edit/master/src/web/api/queries/incremental_sum/README.md /docs/developer-and-contributor-corner/rest-api/queries/incremental-sum-incremental_sum -https://github.com/netdata/netdata/edit/master/src/web/api/queries/average/README.md /docs/developer-and-contributor-corner/rest-api/queries/average-or-mean -https://github.com/netdata/netdata/edit/master/src/web/api/queries/countif/README.md /docs/developer-and-contributor-corner/rest-api/queries/countif -https://github.com/netdata/netdata/edit/master/src/web/api/queries/percentile/README.md /docs/developer-and-contributor-corner/rest-api/queries/percentile -https://github.com/netdata/netdata/edit/master/src/web/api/queries/median/README.md /docs/developer-and-contributor-corner/rest-api/queries/median -https://github.com/netdata/netdata/edit/master/src/web/api/queries/sum/README.md /docs/developer-and-contributor-corner/rest-api/queries/sum -https://github.com/netdata/netdata/edit/master/src/web/api/queries/max/README.md /docs/developer-and-contributor-corner/rest-api/queries/max -https://github.com/netdata/netdata/edit/master/src/web/api/queries/min/README.md /docs/developer-and-contributor-corner/rest-api/queries/min -https://github.com/netdata/netdata/edit/master/src/web/api/queries/stddev/README.md /docs/developer-and-contributor-corner/rest-api/queries/standard-deviation-stddev -https://github.com/netdata/netdata/edit/master/src/web/api/queries/trimmed_mean/README.md /docs/developer-and-contributor-corner/rest-api/queries/trimmed-mean -https://github.com/netdata/netdata/edit/master/src/web/api/queries/ses/README.md /docs/developer-and-contributor-corner/rest-api/queries/single-or-simple-exponential-smoothing-ses -https://github.com/netdata/netdata/edit/master/src/web/api/queries/des/README.md /docs/developer-and-contributor-corner/rest-api/queries/double-exponential-smoothing -https://github.com/netdata/netdata/edit/master/src/web/api/health/README.md /docs/alerts-&-notifications/health-api-calls -https://github.com/netdata/netdata/edit/master/src/web/api/exporters/shell/README.md /docs/exporting-metrics/shell-scripts -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/README.md /docs/developer-and-contributor-corner/rest-api/formatters -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/csv/README.md /docs/developer-and-contributor-corner/rest-api/formatters/csv-formatter -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/value/README.md /docs/developer-and-contributor-corner/rest-api/formatters/value-formatter -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/json/README.md /docs/developer-and-contributor-corner/rest-api/formatters/json-formatter -https://github.com/netdata/netdata/edit/master/src/web/api/formatters/ssv/README.md /docs/developer-and-contributor-corner/rest-api/formatters/ssv-formatter -https://github.com/netdata/netdata/edit/master/src/web/server/README.md /docs/netdata-agent/configuration/securing-agents/web-server-reference -https://github.com/netdata/netdata/edit/master/src/aclk/README.md /docs/netdata-cloud/agent-cloud-link-aclk -https://github.com/netdata/netdata/edit/master/src/cli/README.md /docs/netdata-agent/agent-cli -https://github.com/netdata/netdata/edit/master/src/registry/CONFIGURATION.md /docs/netdata-agent/configuration/registry -https://github.com/netdata/netdata/edit/master/src/registry/README.md /docs/netdata-agent/registry -https://github.com/netdata/netdata/edit/master/src/daemon/README.md /docs/netdata-agent/daemon -https://github.com/netdata/netdata/edit/master/src/daemon/config/README.md /docs/netdata-agent/configuration/daemon -https://github.com/netdata/netdata/edit/master/src/exporting/README.md /docs/exporting-metrics/exporting-reference -https://github.com/netdata/netdata/edit/master/src/exporting/mongodb/README.md /docs/exporting-metrics/connectors/mongodb -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/README.md /docs/exporting-metrics/connectors/graphite -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/kairosdb.md /docs/exporting-metrics/connectors/kairosdb -https://github.com/netdata/netdata/edit/master/src/exporting/graphite/integrations/blueflood.md /docs/exporting-metrics/connectors/blueflood -https://github.com/netdata/netdata/edit/master/src/exporting/aws_kinesis/README.md /docs/exporting-metrics/connectors/aws-kinesis -https://github.com/netdata/netdata/edit/master/src/exporting/json/README.md /docs/exporting-metrics/connectors/json -https://github.com/netdata/netdata/edit/master/src/exporting/pubsub/README.md /docs/exporting-metrics/connectors/google-cloud-pub-sub -https://github.com/netdata/netdata/edit/master/src/exporting/opentsdb/README.md /docs/exporting-metrics/connectors/opentsdb -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/README.md /docs/exporting-metrics/prometheus -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/remote_write/README.md /docs/exporting-metrics/connectors/prometheus-remote-write -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/elasticsearch.md /docs/exporting-metrics/connectors/elasticsearch -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/appoptics.md /docs/exporting-metrics/connectors/appoptics -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/quasardb.md /docs/exporting-metrics/connectors/quasardb -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/vmware_aria.md /docs/exporting-metrics/connectors/vmware-aria -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/greptimedb.md /docs/exporting-metrics/connectors/greptimedb -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cortex.md /docs/exporting-metrics/connectors/cortex -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/chronix.md /docs/exporting-metrics/connectors/chronix -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/m3db.md /docs/exporting-metrics/connectors/m3db -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_data_explorer.md /docs/exporting-metrics/connectors/azure-data-explorer -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/kafka.md /docs/exporting-metrics/connectors/kafka -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/new_relic.md /docs/exporting-metrics/connectors/new-relic -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/tikv.md /docs/exporting-metrics/connectors/tikv -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/google_bigquery.md /docs/exporting-metrics/connectors/google-bigquery -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/postgresql.md /docs/exporting-metrics/connectors/postgresql -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/azure_event_hub.md /docs/exporting-metrics/connectors/azure-event-hub -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/timescaledb.md /docs/exporting-metrics/connectors/timescaledb -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/gnocchi.md /docs/exporting-metrics/connectors/gnocchi -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/cratedb.md /docs/exporting-metrics/connectors/cratedb -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/victoriametrics.md /docs/exporting-metrics/connectors/victoriametrics -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/opeansearch.md /docs/exporting-metrics/connectors/opeansearch -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/metricfire.md /docs/exporting-metrics/connectors/metricfire -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/thanos.md /docs/exporting-metrics/connectors/thanos -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/splunk_signalfx.md /docs/exporting-metrics/connectors/splunk-signalfx -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/wavefront.md /docs/exporting-metrics/connectors/wavefront -https://github.com/netdata/netdata/edit/master/src/exporting/prometheus/integrations/irondb.md /docs/exporting-metrics/connectors/irondb -https://github.com/netdata/netdata/edit/master/src/collectors/README.md /docs/collecting-metrics -https://github.com/netdata/netdata/edit/master/src/collectors/COLLECTORS.md /docs/welcome-to-netdata/monitor-anything -https://github.com/netdata/netdata/edit/master/src/collectors/REFERENCE.md /docs/collecting-metrics/collectors-configuration -https://github.com/netdata/netdata/edit/master/src/collectors/log2journal/README.md /docs/logs/log2journal -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_softirq.md /docs/collecting-metrics/ebpf/ebpf-softirq -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_process.md /docs/collecting-metrics/ebpf/ebpf-process -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_dcstat.md /docs/collecting-metrics/ebpf/ebpf-dcstat -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_hardirq.md /docs/collecting-metrics/ebpf/ebpf-hardirq -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filesystem.md /docs/collecting-metrics/ebpf/ebpf-filesystem -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_disk.md /docs/collecting-metrics/ebpf/ebpf-disk -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_shm.md /docs/collecting-metrics/ebpf/ebpf-shm -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_filedescriptor.md /docs/collecting-metrics/ebpf/ebpf-filedescriptor -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_socket.md /docs/collecting-metrics/ebpf/ebpf-socket -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_cachestat.md /docs/collecting-metrics/ebpf/ebpf-cachestat -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_oomkill.md /docs/collecting-metrics/ebpf/ebpf-oomkill -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_swap.md /docs/collecting-metrics/ebpf/ebpf-swap -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_processes.md /docs/collecting-metrics/ebpf/ebpf-processes -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_sync.md /docs/collecting-metrics/ebpf/ebpf-sync -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_vfs.md /docs/collecting-metrics/ebpf/ebpf-vfs -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mount.md /docs/collecting-metrics/ebpf/ebpf-mount -https://github.com/netdata/netdata/edit/master/src/collectors/ebpf.plugin/integrations/ebpf_mdflush.md /docs/collecting-metrics/ebpf/ebpf-mdflush -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_thermal_zone.md /docs/collecting-metrics/windows-systems/system-thermal-zone -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_certificate_service.md /docs/collecting-metrics/windows-systems/active-directory-certificate-service -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/system_statistics.md /docs/collecting-metrics/windows-systems/system-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_exchange.md /docs/collecting-metrics/windows-systems/ms-exchange -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/network_subsystem.md /docs/collecting-metrics/windows-systems/network-subsystem -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory_federation_service.md /docs/collecting-metrics/windows-systems/active-directory-federation-service -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/net_framework.md /docs/collecting-metrics/windows-systems/net-framework -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/processor.md /docs/collecting-metrics/windows-systems/processor -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/physical_and_logical_disk_performance_metrics.md /docs/collecting-metrics/windows-systems/physical-and-logical-disk-performance-metrics -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/power_supply.md /docs/collecting-metrics/windows-systems/power-supply -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/memory_statistics.md /docs/collecting-metrics/windows-systems/memory-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hyper-v.md /docs/collecting-metrics/windows-systems/hyper-v -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/semaphore_statistics.md /docs/collecting-metrics/windows-systems/semaphore-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/ms_sql_server.md /docs/collecting-metrics/windows-systems/ms-sql-server -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/asp.net.md /docs/collecting-metrics/windows-systems/asp.net -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/windows_services.md /docs/collecting-metrics/windows-systems/windows-services -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/numa_architecture.md /docs/collecting-metrics/windows-systems/numa-architecture -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/iis.md /docs/collecting-metrics/windows-systems/iis -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/hardware_information_collected_from_kernel_ring..md /docs/collecting-metrics/windows-systems/hardware-information-collected-from-kernel-ring. -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/active_directory.md /docs/collecting-metrics/windows-systems/active-directory -https://github.com/netdata/netdata/edit/master/src/collectors/windows.plugin/integrations/sensors.md /docs/collecting-metrics/windows-systems/sensors -https://github.com/netdata/netdata/edit/master/src/collectors/nfacct.plugin/README.md /docs/collecting-metrics/linux-systems/firewall/netfilter -https://github.com/netdata/netdata/edit/master/src/collectors/slabinfo.plugin/README.md /docs/collecting-metrics/linux-systems/kernel/linux-kernel-slab-allocator-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/ioping.plugin/README.md /docs/collecting-metrics/synthetic-checks/ioping -https://github.com/netdata/netdata/edit/master/src/collectors/diskspace.plugin/README.md /docs/collecting-metrics/linux-systems/disk-space -https://github.com/netdata/netdata/edit/master/src/collectors/statsd.plugin/README.md /docs/collecting-metrics/statsd -https://github.com/netdata/netdata/edit/master/src/collectors/freeipmi.plugin/README.md /docs/collecting-metrics/hardware-devices-and-sensors/intelligent-platform-management-interface-ipmi -https://github.com/netdata/netdata/edit/master/src/collectors/tc.plugin/README.md /docs/collecting-metrics/linux-systems/network/tc-qos-classes -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/README.md /docs/developer-and-contributor-corner/external-plugins/charts.d.plugin -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/libreswan/README.md /docs/collecting-metrics/vpns/libreswan -https://github.com/netdata/netdata/edit/master/src/collectors/charts.d.plugin/opensips/README.md /docs/collecting-metrics/telephony-servers/opensips -https://github.com/netdata/netdata/edit/master/src/collectors/profile.plugin/README.md /docs/developer-and-contributor-corner/external-plugins/profile.plugin -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getifaddrs.md /docs/collecting-metrics/freebsd/getifaddrs -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.stats.md /docs/collecting-metrics/freebsd/net.inet.tcp.stats -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/devstat.md /docs/collecting-metrics/freebsd/devstat -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/zfs.md /docs/collecting-metrics/freebsd/zfs -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_pgfaults.md /docs/collecting-metrics/freebsd/vm.stats.vm.v_pgfaults -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.ip6.stats.md /docs/collecting-metrics/freebsd/net.inet6.ip6.stats -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet6.icmp6.stats.md /docs/collecting-metrics/freebsd/net.inet6.icmp6.stats -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.loadavg.md /docs/collecting-metrics/freebsd/vm.loadavg -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_soft.md /docs/collecting-metrics/freebsd/vm.stats.sys.v_soft -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_intr.md /docs/collecting-metrics/freebsd/vm.stats.sys.v_intr -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/getmntinfo.md /docs/collecting-metrics/freebsd/getmntinfo -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.vm.v_swappgs.md /docs/collecting-metrics/freebsd/vm.stats.vm.v_swappgs -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.isr.md /docs/collecting-metrics/freebsd/net.isr -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.ip.stats.md /docs/collecting-metrics/freebsd/net.inet.ip.stats -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.swap_info.md /docs/collecting-metrics/freebsd/vm.swap_info -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.temperature.md /docs/collecting-metrics/freebsd/dev.cpu.temperature -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.msq.md /docs/collecting-metrics/freebsd/kern.ipc.msq -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/system.ram.md /docs/collecting-metrics/freebsd/system.ram -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.udp.stats.md /docs/collecting-metrics/freebsd/net.inet.udp.stats -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/dev.cpu.0.freq.md /docs/collecting-metrics/freebsd/dev.cpu.0.freq -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/ipfw.md /docs/collecting-metrics/freebsd/ipfw -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/hw.intrcnt.md /docs/collecting-metrics/freebsd/hw.intrcnt -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.cp_time.md /docs/collecting-metrics/freebsd/kern.cp_time -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.vmtotal.md /docs/collecting-metrics/freebsd/vm.vmtotal -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/vm.stats.sys.v_swtch.md /docs/collecting-metrics/freebsd/vm.stats.sys.v_swtch -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.sem.md /docs/collecting-metrics/freebsd/kern.ipc.sem -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.tcp.states.md /docs/collecting-metrics/freebsd/net.inet.tcp.states -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/uptime.md /docs/collecting-metrics/freebsd/uptime -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/kern.ipc.shm.md /docs/collecting-metrics/freebsd/kern.ipc.shm -https://github.com/netdata/netdata/edit/master/src/collectors/freebsd.plugin/integrations/net.inet.icmp.stats.md /docs/collecting-metrics/freebsd/net.inet.icmp.stats -https://github.com/netdata/netdata/edit/master/src/collectors/windows-events.plugin/README.md /docs/logs/windows-event-logs/windows-events-plugin-reference -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/system_memory_fragmentation.md /docs/collecting-metrics/linux-systems/memory/system-memory-fragmentation -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/linux_zswap.md /docs/collecting-metrics/linux-systems/memory/linux-zswap -https://github.com/netdata/netdata/edit/master/src/collectors/debugfs.plugin/integrations/power_capping.md /docs/collecting-metrics/linux-systems/kernel/power-capping -https://github.com/netdata/netdata/edit/master/src/collectors/cups.plugin/README.md /docs/collecting-metrics/hardware-devices-and-sensors/cups -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/user_groups.md /docs/collecting-metrics/processes-and-system-services/user-groups -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/users.md /docs/collecting-metrics/processes-and-system-services/users -https://github.com/netdata/netdata/edit/master/src/collectors/apps.plugin/integrations/applications.md /docs/collecting-metrics/processes-and-system-services/applications -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zram.md /docs/collecting-metrics/linux-systems/memory/zram -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/inter_process_communication.md /docs/collecting-metrics/linux-systems/ipc/inter-process-communication -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/non-uniform_memory_access.md /docs/collecting-metrics/linux-systems/memory/non-uniform-memory-access -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/zfs_adaptive_replacement_cache.md /docs/collecting-metrics/linux-systems/filesystem/zfs/zfs-adaptive-replacement-cache -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/conntrack.md /docs/collecting-metrics/linux-systems/firewall/conntrack -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/synproxy.md /docs/collecting-metrics/linux-systems/firewall/synproxy -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/entropy.md /docs/collecting-metrics/linux-systems/system/entropy -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_statistics.md /docs/collecting-metrics/linux-systems/system/system-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_modules_dimms.md /docs/collecting-metrics/linux-systems/memory/memory-modules-dimms -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softnet_statistics.md /docs/collecting-metrics/linux-systems/network/softnet-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/disk_statistics.md /docs/collecting-metrics/linux-systems/disk/disk-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/interrupts.md /docs/collecting-metrics/linux-systems/cpu/interrupts -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_interfaces.md /docs/collecting-metrics/linux-systems/network/network-interfaces -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_uptime.md /docs/collecting-metrics/linux-systems/system/system-uptime -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ipv6_socket_statistics.md /docs/collecting-metrics/linux-systems/network/ipv6-socket-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/infiniband.md /docs/collecting-metrics/linux-systems/network/infiniband -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/btrfs.md /docs/collecting-metrics/linux-systems/filesystem/btrfs -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/wireless_network_interfaces.md /docs/collecting-metrics/linux-systems/network/wireless-network-interfaces -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/power_supply.md /docs/collecting-metrics/linux-systems/power-supply -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/pressure_stall_information.md /docs/collecting-metrics/linux-systems/pressure/pressure-stall-information -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/socket_statistics.md /docs/collecting-metrics/linux-systems/network/socket-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_statistics.md /docs/collecting-metrics/linux-systems/memory/memory-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/sctp_statistics.md /docs/collecting-metrics/linux-systems/network/sctp-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/md_raid.md /docs/collecting-metrics/linux-systems/disk/md-raid -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/ip_virtual_server.md /docs/collecting-metrics/linux-systems/network/ip-virtual-server -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/page_types.md /docs/collecting-metrics/linux-systems/memory/page-types -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/memory_usage.md /docs/collecting-metrics/linux-systems/memory/memory-usage -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/kernel_same-page_merging.md /docs/collecting-metrics/linux-systems/memory/kernel-same-page-merging -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/amd_gpu.md /docs/collecting-metrics/hardware-devices-and-sensors/amd-gpu -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/network_statistics.md /docs/collecting-metrics/linux-systems/network/network-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_server.md /docs/collecting-metrics/linux-systems/filesystem/nfs/nfs-server -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/system_load_average.md /docs/collecting-metrics/linux-systems/system/system-load-average -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/softirq_statistics.md /docs/collecting-metrics/linux-systems/cpu/softirq-statistics -https://github.com/netdata/netdata/edit/master/src/collectors/proc.plugin/integrations/nfs_client.md /docs/collecting-metrics/linux-systems/filesystem/nfs/nfs-client -https://github.com/netdata/netdata/edit/master/src/collectors/xenstat.plugin/README.md /docs/collecting-metrics/containers-and-vms/xen-xcp-ng -https://github.com/netdata/netdata/edit/master/src/collectors/macos.plugin/README.md /docs/collecting-metrics/macos-systems/macos -https://github.com/netdata/netdata/edit/master/src/collectors/perf.plugin/README.md /docs/collecting-metrics/linux-systems/cpu-performance -https://github.com/netdata/netdata/edit/master/src/collectors/idlejitter.plugin/README.md /docs/collecting-metrics/synthetic-checks/idle-os-jitter -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/README.md /docs/developer-and-contributor-corner/external-plugins/python.d.plugin -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/go_expvar/README.md /docs/collecting-metrics/apm/go-applications-expvar -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/pandas/README.md /docs/collecting-metrics/generic-collecting-metrics/pandas -https://github.com/netdata/netdata/edit/master/src/collectors/python.d.plugin/am2320/README.md /docs/collecting-metrics/hardware-devices-and-sensors/am2320 -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/ovirt_containers.md /docs/collecting-metrics/containers-and-vms/ovirt-containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/kubernetes_containers.md /docs/collecting-metrics/kubernetes/kubernetes-containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/systemd_services.md /docs/collecting-metrics/systemd/systemd-services -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/proxmox_containers.md /docs/collecting-metrics/containers-and-vms/proxmox-containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/containers.md /docs/collecting-metrics/containers-and-vms/containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/libvirt_containers.md /docs/collecting-metrics/containers-and-vms/libvirt-containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/lxc_containers.md /docs/collecting-metrics/containers-and-vms/lxc-containers -https://github.com/netdata/netdata/edit/master/src/collectors/cgroups.plugin/integrations/virtual_machines.md /docs/collecting-metrics/containers-and-vms/virtual-machines -https://github.com/netdata/netdata/edit/master/src/collectors/timex.plugin/README.md /docs/collecting-metrics/system-clock-and-ntp/timex -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/README.md /docs/developer-and-contributor-corner/external-plugins/go.d.plugin -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxvts/README.md /docs/collecting-metrics/web-servers-and-web-proxies/nginx-vts -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ap/README.md /docs/collecting-metrics/linux-systems/network/access-points -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ethtool/README.md /docs/collecting-metrics/networking-stack-and-network-interfaces/optical-modules -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hddtemp/README.md /docs/collecting-metrics/hardware-devices-and-sensors/hdd-temperature -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/chrony/README.md /docs/collecting-metrics/system-clock-and-ntp/chrony -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/gearman/README.md /docs/collecting-metrics/distributed-computing-systems/gearman -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/oracledb/README.md /docs/collecting-metrics/databases/oracle-db -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/profile-format.md /docs/collecting-metrics/snmp-profile-format -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/snmp/README.md /docs/collecting-metrics/generic-collecting-metrics/snmp-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rabbitmq/README.md /docs/collecting-metrics/message-brokers/rabbitmq -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/maxscale/README.md /docs/collecting-metrics/databases/maxscale -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lvm/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/lvm-logical-volumes -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/clickhouse/README.md /docs/collecting-metrics/databases/clickhouse -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/README.md /docs/collecting-metrics/databases/mysql -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/percona_mysql.md /docs/collecting-metrics/databases/percona-mysql -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mysql/integrations/mariadb.md /docs/collecting-metrics/databases/mariadb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/proxysql/README.md /docs/collecting-metrics/databases/proxysql -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/wireguard/README.md /docs/collecting-metrics/vpns/wireguard -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/whoisquery/README.md /docs/collecting-metrics/synthetic-checks/domain-expiration-date -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/envoy/README.md /docs/collecting-metrics/web-servers-and-web-proxies/envoy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nsd/README.md /docs/collecting-metrics/dns-and-dhcp-servers/nsd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/puppet/README.md /docs/collecting-metrics/cicd-platforms/puppet -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ceph/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/ceph -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mongodb/README.md /docs/collecting-metrics/databases/mongodb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsdist/README.md /docs/collecting-metrics/dns-and-dhcp-servers/dnsdist -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/samba/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/samba -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/typesense/README.md /docs/collecting-metrics/search-engines/typesense -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq/README.md /docs/collecting-metrics/dns-and-dhcp-servers/dnsmasq -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vcsa/README.md /docs/collecting-metrics/containers-and-vms/vcenter-server-appliance -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/boinc/README.md /docs/collecting-metrics/databases/boinc -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apcupsd/README.md /docs/collecting-metrics/ups/apc-ups -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hdfs/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/hadoop-distributed-file-system-hdfs -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openldap/README.md /docs/collecting-metrics/authentication-and-authorization/openldap -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/unbound/README.md /docs/collecting-metrics/dns-and-dhcp-servers/unbound -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ntpd/README.md /docs/collecting-metrics/system-clock-and-ntp/ntpd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/portcheck/README.md /docs/collecting-metrics/synthetic-checks/tcp-udp-endpoints -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sql/README.md /docs/collecting-metrics/databases/sql-databases-generic -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squid/README.md /docs/collecting-metrics/web-servers-and-web-proxies/squid -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/upsd/README.md /docs/collecting-metrics/ups/ups-nut -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/traefik/README.md /docs/collecting-metrics/web-servers-and-web-proxies/traefik -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker/README.md /docs/collecting-metrics/containers-and-vms/docker -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postgres/README.md /docs/collecting-metrics/databases/postgresql -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/supervisord/README.md /docs/collecting-metrics/processes-and-system-services/supervisor -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/storcli/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/storecli-raid -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pgbouncer/README.md /docs/collecting-metrics/databases/pgbouncer -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxunit/README.md /docs/collecting-metrics/web-servers-and-web-proxies/nginx-unit -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zookeeper/README.md /docs/collecting-metrics/service-discovery-/-registry/zookeeper -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/beanstalk/README.md /docs/collecting-metrics/message-brokers/beanstalk -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/icecast/README.md /docs/collecting-metrics/media-services/icecast -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logind/README.md /docs/collecting-metrics/systemd/systemd-logind-users -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_state/README.md /docs/collecting-metrics/kubernetes/kubernetes-cluster-state -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/x509check/README.md /docs/collecting-metrics/synthetic-checks/x.509-certificate -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginxplus/README.md /docs/collecting-metrics/web-servers-and-web-proxies/nginx-plus -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn/README.md /docs/collecting-metrics/vpns/openvpn -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchbase/README.md /docs/collecting-metrics/databases/couchbase -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rethinkdb/README.md /docs/collecting-metrics/databases/rethinkdb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns_recursor/README.md /docs/collecting-metrics/dns-and-dhcp-servers/powerdns-recursor -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/sensors/README.md /docs/collecting-metrics/hardware-devices-and-sensors/linux-sensors -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nginx/README.md /docs/collecting-metrics/web-servers-and-web-proxies/nginx -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tor/README.md /docs/collecting-metrics/vpns/tor -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvme/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/nvme-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tengine/README.md /docs/collecting-metrics/web-servers-and-web-proxies/tengine -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pulsar/README.md /docs/collecting-metrics/message-brokers/apache-pulsar -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nvidia_smi/README.md /docs/collecting-metrics/hardware-devices-and-sensors/nvidia-gpu -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/w1sensor/README.md /docs/collecting-metrics/hardware-devices-and-sensors/1-wire-sensors -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/nats/README.md /docs/collecting-metrics/message-brokers/nats -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/exim/README.md /docs/collecting-metrics/mail-servers/exim -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsquery/README.md /docs/collecting-metrics/dns-and-dhcp-servers/dns-query -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/zfspool/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/zfs-pools -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/couchdb/README.md /docs/collecting-metrics/databases/couchdb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/spigotmc/README.md /docs/collecting-metrics/gaming/spigotmc -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vernemq/README.md /docs/collecting-metrics/message-brokers/vernemq -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/uwsgi/README.md /docs/collecting-metrics/web-servers-and-web-proxies/uwsgi -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpdaemon/README.md /docs/collecting-metrics/apm/phpdaemon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/freeradius/README.md /docs/collecting-metrics/authentication-and-authorization/freeradius -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/memcached/README.md /docs/collecting-metrics/databases/memcached -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/haproxy/README.md /docs/collecting-metrics/web-servers-and-web-proxies/haproxy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fail2ban/README.md /docs/collecting-metrics/authentication-and-authorization/fail2ban -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/activemq/README.md /docs/collecting-metrics/message-brokers/activemq -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pihole/README.md /docs/collecting-metrics/dns-and-dhcp-servers/pi-hole -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/README.md /docs/collecting-metrics/search-engines/elasticsearch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/elasticsearch/integrations/opensearch.md /docs/collecting-metrics/search-engines/opensearch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/vsphere/README.md /docs/collecting-metrics/containers-and-vms/vmware-vcenter-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cassandra/README.md /docs/collecting-metrics/databases/cassandra -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/weblog/README.md /docs/collecting-metrics/web-servers-and-web-proxies/web-server-log-files -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/isc_dhcpd/README.md /docs/collecting-metrics/dns-and-dhcp-servers/isc-dhcp -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ipfs/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/ipfs -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/scaleio/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/dell-emc-scaleio -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/docker_engine/README.md /docs/collecting-metrics/containers-and-vms/docker-engine -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/intelgpu/README.md /docs/collecting-metrics/hardware-devices-and-sensors/intel-gpu -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/filecheck/README.md /docs/collecting-metrics/other/files-and-directories -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/httpcheck/README.md /docs/collecting-metrics/synthetic-checks/http-endpoints -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/mssql/README.md /docs/collecting-metrics/databases/microsoft-sql-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/tomcat/README.md /docs/collecting-metrics/web-servers-and-web-proxies/tomcat -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/systemdunits/README.md /docs/collecting-metrics/systemd/systemd-units -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/smartctl/README.md /docs/collecting-metrics/hardware-devices-and-sensors/s.m.a.r.t. -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/coredns/README.md /docs/collecting-metrics/dns-and-dhcp-servers/coredns -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/README.md /docs/collecting-metrics/web-servers-and-web-proxies/apache -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/apache/integrations/httpd.md /docs/collecting-metrics/web-servers-and-web-proxies/httpd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/postfix/README.md /docs/collecting-metrics/mail-servers/postfix -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/monit/README.md /docs/collecting-metrics/synthetic-checks/monit -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/logstash/README.md /docs/collecting-metrics/logs-servers/logstash -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/lighttpd/README.md /docs/collecting-metrics/web-servers-and-web-proxies/lighttpd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/consul/README.md /docs/collecting-metrics/service-discovery-/-registry/consul -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/riakkv/README.md /docs/collecting-metrics/databases/riak-kv -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/rspamd/README.md /docs/collecting-metrics/security-systems/rspamd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubeproxy/README.md /docs/collecting-metrics/kubernetes/kubeproxy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/litespeed/README.md /docs/collecting-metrics/web-servers-and-web-proxies/litespeed -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/powerdns/README.md /docs/collecting-metrics/dns-and-dhcp-servers/powerdns-authoritative-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/adaptecraid/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/adaptec-raid -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/megacli/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/megacli-megaraid -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dockerhub/README.md /docs/collecting-metrics/containers-and-vms/docker-hub-repository -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/geth/README.md /docs/collecting-metrics/blockchain-servers/go-ethereum -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/hpssa/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/hpe-smart-arrays -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/phpfpm/README.md /docs/collecting-metrics/web-servers-and-web-proxies/php-fpm -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/README.md /docs/collecting-metrics/generic-collecting-metrics/prometheus-endpoint -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/meilisearch.md /docs/collecting-metrics/search-engines/meilisearch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openrc.md /docs/collecting-metrics/linux-systems/openrc -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/siemens_s7_plc.md /docs/collecting-metrics/hardware-devices-and-sensors/siemens-s7-plc -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sonic_nos.md /docs/collecting-metrics/networking-stack-and-network-interfaces/sonic-nos -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solis_ginlong_5g_inverters.md /docs/collecting-metrics/iot-devices/solis-ginlong-5g-inverters -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freifunk_network.md /docs/collecting-metrics/networking-stack-and-network-interfaces/freifunk-network -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextdns.md /docs/collecting-metrics/dns-and-dhcp-servers/nextdns -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_mq.md /docs/collecting-metrics/message-brokers/ibm-mq -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/statuspage.md /docs/collecting-metrics/incident-management/statuspage -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lynis_audit_reports.md /docs/collecting-metrics/security-systems/lynis-audit-reports -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_aix_systems_njmon.md /docs/collecting-metrics/apm/ibm-aix-systems-njmon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/generic_storage_enclosure_tool.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/generic-storage-enclosure-tool -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proftpd.md /docs/collecting-metrics/ftp-servers/proftpd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_agent.md /docs/collecting-metrics/kubernetes/cilium-agent -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/energomera_smart_power_meters.md /docs/collecting-metrics/iot-devices/energomera-smart-power-meters -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/scylladb.md /docs/collecting-metrics/databases/scylladb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_z_hardware_management_console.md /docs/collecting-metrics/hardware-devices-and-sensors/ibm-z-hardware-management-console -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/site_24x7.md /docs/collecting-metrics/synthetic-checks/site-24x7 -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/eos.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/eos -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/craftbeerpi.md /docs/collecting-metrics/iot-devices/craftbeerpi -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jarvis_standing_desk.md /docs/collecting-metrics/iot-devices/jarvis-standing-desk -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sense_energy.md /docs/collecting-metrics/iot-devices/sense-energy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bungeecord.md /docs/collecting-metrics/gaming/bungeecord -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mqtt_blackbox.md /docs/collecting-metrics/message-brokers/mqtt-blackbox -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/alamos_fe2_server.md /docs/collecting-metrics/apm/alamos-fe2-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dutch_electricity_smart_meter.md /docs/collecting-metrics/iot-devices/dutch-electricity-smart-meter -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_zookeeper.md /docs/collecting-metrics/message-brokers/kafka-zookeeper -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/loki.md /docs/collecting-metrics/logs-servers/loki -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/zerto.md /docs/collecting-metrics/cloud-provider-managed/zerto -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sunspec_solar_energy.md /docs/collecting-metrics/iot-devices/sunspec-solar-energy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum_virtualize.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/ibm-spectrum-virtualize -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mesos.md /docs/collecting-metrics/task-queues/mesos -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/slurm.md /docs/collecting-metrics/task-queues/slurm -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_vehicle.md /docs/collecting-metrics/iot-devices/tesla-vehicle -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_ec2_compute_instances.md /docs/collecting-metrics/cloud-provider-managed/aws-ec2-compute-instances -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/keepalived.md /docs/collecting-metrics/networking-stack-and-network-interfaces/keepalived -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mosquitto.md /docs/collecting-metrics/message-brokers/mosquitto -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/frrouting.md /docs/collecting-metrics/networking-stack-and-network-interfaces/frrouting -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sabnzbd.md /docs/collecting-metrics/media-services/sabnzbd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tacacs.md /docs/collecting-metrics/authentication-and-authorization/tacacs -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/twitch.md /docs/collecting-metrics/media-services/twitch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/open_vswitch.md /docs/collecting-metrics/networking-stack-and-network-interfaces/open-vswitch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/honeypot.md /docs/collecting-metrics/security-systems/honeypot -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry_firehose.md /docs/collecting-metrics/provisioning-systems/cloud-foundry-firehose -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/podman.md /docs/collecting-metrics/containers-and-vms/podman -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/philips_hue.md /docs/collecting-metrics/iot-devices/philips-hue -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/fastd.md /docs/collecting-metrics/vpns/fastd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/christ_elektronik_clm5ip_power_panel.md /docs/collecting-metrics/iot-devices/christ-elektronik-clm5ip-power-panel -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/modbus_protocol.md /docs/collecting-metrics/iot-devices/modbus-protocol -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/steam.md /docs/collecting-metrics/gaming/steam -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_pagespeed.md /docs/collecting-metrics/apm/google-pagespeed -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_cloud_platform.md /docs/collecting-metrics/cloud-provider-managed/google-cloud-platform -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/obs_studio.md /docs/collecting-metrics/media-services/obs-studio -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radio_thermostat.md /docs/collecting-metrics/iot-devices/radio-thermostat -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/apicast.md /docs/collecting-metrics/web-servers-and-web-proxies/apicast -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nagios.md /docs/collecting-metrics/observability/nagios -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nature_remo_e_lite_devices.md /docs/collecting-metrics/iot-devices/nature-remo-e-lite-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jmx.md /docs/collecting-metrics/apm/jmx -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/salicru_eqx_inverter.md /docs/collecting-metrics/iot-devices/salicru-eqx-inverter -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openweathermap.md /docs/collecting-metrics/generic-collecting-metrics/openweathermap -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clash.md /docs/collecting-metrics/web-servers-and-web-proxies/clash -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/yourls_url_shortener.md /docs/collecting-metrics/apm/yourls-url-shortener -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/softether_vpn_server.md /docs/collecting-metrics/vpns/softether-vpn-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/influxdb.md /docs/collecting-metrics/databases/influxdb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mtail.md /docs/collecting-metrics/logs-servers/mtail -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_operator.md /docs/collecting-metrics/kubernetes/cilium-operator -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vault_pki.md /docs/collecting-metrics/security-systems/vault-pki -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/halon.md /docs/collecting-metrics/mail-servers/halon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gpsd.md /docs/collecting-metrics/apm/gpsd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_solidfire.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/netapp-solidfire -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/celery.md /docs/collecting-metrics/task-queues/celery -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cilium_proxy.md /docs/collecting-metrics/kubernetes/cilium-proxy -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netatmo_sensors.md /docs/collecting-metrics/iot-devices/netatmo-sensors -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/spacelift.md /docs/collecting-metrics/provisioning-systems/spacelift -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/shelly_humidity_sensor.md /docs/collecting-metrics/iot-devices/shelly-humidity-sensor -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/concourse.md /docs/collecting-metrics/cicd-platforms/concourse -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/lustre_metadata.md /docs/collecting-metrics/cloud-provider-managed/lustre-metadata -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/grafana.md /docs/collecting-metrics/observability/grafana -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/openroadm_devices.md /docs/collecting-metrics/networking-stack-and-network-interfaces/openroadm-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vertica.md /docs/collecting-metrics/databases/vertica -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_rds.md /docs/collecting-metrics/databases/aws-rds -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dynatrace.md /docs/collecting-metrics/observability/dynatrace -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka.md /docs/collecting-metrics/message-brokers/kafka -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sysload.md /docs/collecting-metrics/apm/sysload -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tado_smart_heating_solution.md /docs/collecting-metrics/iot-devices/tado-smart-heating-solution -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/proxmox_ve.md /docs/collecting-metrics/containers-and-vms/proxmox-ve -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sphinx.md /docs/collecting-metrics/search-engines/sphinx -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/warp10.md /docs/collecting-metrics/databases/warp10 -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/aws_quota.md /docs/collecting-metrics/cloud-provider-managed/aws-quota -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/authlog.md /docs/collecting-metrics/logs-servers/authlog -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_rctl-racct.md /docs/collecting-metrics/freebsd/freebsd-rctl-racct -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/graylog_server.md /docs/collecting-metrics/logs-servers/graylog-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/linode.md /docs/collecting-metrics/cloud-provider-managed/linode -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tankerkoenig_api.md /docs/collecting-metrics/generic-collecting-metrics/tankerkoenig-api -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgbackrest.md /docs/collecting-metrics/databases/pgbackrest -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/vscode.md /docs/collecting-metrics/apm/vscode -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/netapp_ontap_api.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/netapp-ontap-api -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloudwatch.md /docs/collecting-metrics/cloud-provider-managed/cloudwatch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/4d_server.md /docs/collecting-metrics/databases/4d-server -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/synology_activebackup.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/synology-activebackup -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_cryptoexpress_cex_cards.md /docs/collecting-metrics/hardware-devices-and-sensors/ibm-cryptoexpress-cex-cards -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bosh.md /docs/collecting-metrics/provisioning-systems/bosh -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/mogilefs.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/mogilefs -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hubble.md /docs/collecting-metrics/observability/hubble -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/freebsd_nfs.md /docs/collecting-metrics/freebsd/freebsd-nfs -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/chia.md /docs/collecting-metrics/blockchain-servers/chia -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kannel.md /docs/collecting-metrics/telephony-servers/kannel -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_repository.md /docs/collecting-metrics/other/github-repository -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/blackbox.md /docs/collecting-metrics/synthetic-checks/blackbox -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/raritan_pdu.md /docs/collecting-metrics/hardware-devices-and-sensors/raritan-pdu -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/patroni.md /docs/collecting-metrics/databases/patroni -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/8430ft_modem.md /docs/collecting-metrics/networking-stack-and-network-interfaces/8430ft-modem -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/redis_queue.md /docs/collecting-metrics/message-brokers/redis-queue -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/smart_meters_sml.md /docs/collecting-metrics/iot-devices/smart-meters-sml -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clustercontrol_cmon.md /docs/collecting-metrics/databases/clustercontrol-cmon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/xiaomi_mi_flora.md /docs/collecting-metrics/iot-devices/xiaomi-mi-flora -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nextcloud_servers.md /docs/collecting-metrics/cloud-provider-managed/nextcloud-servers -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/kafka_consumer_lag.md /docs/collecting-metrics/service-discovery-/-registry/kafka-consumer-lag -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pgpool-ii.md /docs/collecting-metrics/databases/pgpool-ii -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gitlab_runner.md /docs/collecting-metrics/cicd-platforms/gitlab-runner -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homebridge.md /docs/collecting-metrics/iot-devices/homebridge -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/etcd.md /docs/collecting-metrics/service-discovery-/-registry/etcd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/crowdsec.md /docs/collecting-metrics/security-systems/crowdsec -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/pimoroni_enviro+.md /docs/collecting-metrics/iot-devices/pimoroni-enviro+ -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hana.md /docs/collecting-metrics/databases/hana -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/amd_cpu_&_gpu.md /docs/collecting-metrics/hardware-devices-and-sensors/amd-cpu-&-gpu -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/homey.md /docs/collecting-metrics/iot-devices/homey -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dnsbl.md /docs/collecting-metrics/dns-and-dhcp-servers/dnsbl -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/bird_routing_daemon.md /docs/collecting-metrics/networking-stack-and-network-interfaces/bird-routing-daemon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/radius.md /docs/collecting-metrics/authentication-and-authorization/radius -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/personal_weather_station.md /docs/collecting-metrics/iot-devices/personal-weather-station -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamav_daemon.md /docs/collecting-metrics/security-systems/clamav-daemon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/clamscan_results.md /docs/collecting-metrics/security-systems/clamscan-results -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/github_api_rate_limit.md /docs/collecting-metrics/other/github-api-rate-limit -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/powerpal_devices.md /docs/collecting-metrics/iot-devices/powerpal-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/sma_inverters.md /docs/collecting-metrics/iot-devices/sma-inverters -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/uptimerobot.md /docs/collecting-metrics/synthetic-checks/uptimerobot -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/solar_logging_stick.md /docs/collecting-metrics/iot-devices/solar-logging-stick -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/suricata.md /docs/collecting-metrics/security-systems/suricata -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/minecraft.md /docs/collecting-metrics/gaming/minecraft -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/elgato_key_light_devices..md /docs/collecting-metrics/iot-devices/elgato-key-light-devices. -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/collectd.md /docs/collecting-metrics/observability/collectd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/hitron_coda_cable_modem.md /docs/collecting-metrics/networking-stack-and-network-interfaces/hitron-coda-cable-modem -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/strongswan.md /docs/collecting-metrics/vpns/strongswan -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/discourse.md /docs/collecting-metrics/media-services/discourse -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cryptowatch.md /docs/collecting-metrics/blockchain-servers/cryptowatch -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gobetween.md /docs/collecting-metrics/web-servers-and-web-proxies/gobetween -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/storidge.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/storidge -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/dmarc.md /docs/collecting-metrics/mail-servers/dmarc -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/nrpe_daemon.md /docs/collecting-metrics/apm/nrpe-daemon -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/journald.md /docs/collecting-metrics/logs-servers/journald -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/gcp_gce.md /docs/collecting-metrics/cloud-provider-managed/gcp-gce -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ibm_spectrum.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/ibm-spectrum -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/jenkins.md /docs/collecting-metrics/cicd-platforms/jenkins -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ripe_atlas.md /docs/collecting-metrics/networking-stack-and-network-interfaces/ripe-atlas -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/google_stackdriver.md /docs/collecting-metrics/cloud-provider-managed/google-stackdriver -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/cloud_foundry.md /docs/collecting-metrics/provisioning-systems/cloud-foundry -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/ubiquiti_ufiber_olt.md /docs/collecting-metrics/networking-stack-and-network-interfaces/ubiquiti-ufiber-olt -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/starlink_spacex.md /docs/collecting-metrics/networking-stack-and-network-interfaces/starlink-spacex -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/prometheus/integrations/tesla_wall_connector.md /docs/collecting-metrics/iot-devices/tesla-wall-connector -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dnsmasq_dhcp/README.md /docs/collecting-metrics/dns-and-dhcp-servers/dnsmasq-dhcp -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dovecot/README.md /docs/collecting-metrics/mail-servers/dovecot -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/redis/README.md /docs/collecting-metrics/databases/redis -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/varnish/README.md /docs/collecting-metrics/web-servers-and-web-proxies/varnish -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/openvpn_status_log/README.md /docs/collecting-metrics/vpns/openvpn-status-log -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/ping/README.md /docs/collecting-metrics/synthetic-checks/ping -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/fluentd/README.md /docs/collecting-metrics/logs-servers/fluentd -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/cockroachdb/README.md /docs/collecting-metrics/databases/cockroachdb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/k8s_kubelet/README.md /docs/collecting-metrics/kubernetes/kubelet -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/squidlog/README.md /docs/collecting-metrics/web-servers-and-web-proxies/squid-log-files -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/pika/README.md /docs/collecting-metrics/databases/pika -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/yugabytedb/README.md /docs/collecting-metrics/databases/yugabytedb -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/collector/dmcache/README.md /docs/collecting-metrics/storage,-mount-points-and-filesystems/dmcache-devices -https://github.com/netdata/netdata/edit/master/src/go/plugin/go.d/docs/how-to-write-a-module.md /docs/developer-and-contributor-corner/external-plugins/go.d.plugin/how-to-write-a-netdata-collector-in-go -https://github.com/netdata/netdata/edit/master/src/ml/ml-configuration.md /docs/netdata-ai/anomaly-detection/ml-configuration -https://github.com/netdata/netdata/edit/master/src/crates/netdata-otel/otel-plugin/README.md /docs/collecting-metrics/opentelemetry/opentelemetry-metrics -https://github.com/netdata/netdata/edit/master/src/database/CONFIGURATION.md /docs/netdata-agent/configuration/database -https://github.com/netdata/netdata/edit/master/src/database/README.md /docs/netdata-agent/database -https://github.com/netdata/netdata/edit/master/src/database/engine/README.md /docs/developer-and-contributor-corner/database-engine -https://github.com/netdata/netdata/edit/master/src/claim/README.md /docs/netdata-cloud/connect-agent -https://github.com/netdata/netdata-grafana-datasource-plugin/edit/master/README.md /docs/dashboards-and-charts/grafana-plugin -https://github.com/netdata/.github/edit/main/CONTRIBUTING.md /docs/developer-and-contributor-corner/contributing -https://github.com/netdata/.github/edit/main/CODE_OF_CONDUCT.md /docs/developer-and-contributor-corner/community-code-of-conduct -https://github.com/netdata/.github/edit/main/SECURITY.md /docs/developer-and-contributor-corner/security-policy From adf09a5936f95893a9813b0195b0cee462466406 Mon Sep 17 00:00:00 2001 From: fotis Date: Tue, 3 Feb 2026 09:17:57 +0200 Subject: [PATCH 3/3] remove snippet --- ingest/ingest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingest/ingest.py b/ingest/ingest.py index 5802bb9eb8..4b2d6b4460 100644 --- a/ingest/ingest.py +++ b/ingest/ingest.py @@ -131,7 +131,7 @@ def load_map_yaml(map_path): sidebar = data.get("sidebar") if not isinstance(sidebar, list): - raise ValueError("map.yaml must contain a top-level 'sidebar' list. Regenerate map.yaml from map.csv using docs/.map/convertor.py.") + raise ValueError("map.yaml must contain a top-level 'sidebar' list.") rows = []