Ilya Mashchenko 068ae1cfac cgroups: add option to use Kubelet for pods metadata (#14891) 1 year ago
..
apps.plugin 00fd201803 Address Learn feedback from users (#14802) 1 year ago
cgroups.plugin 068ae1cfac cgroups: add option to use Kubelet for pods metadata (#14891) 1 year ago
charts.d.plugin 00fd201803 Address Learn feedback from users (#14802) 1 year ago
checks.plugin 0541c97e53 Introduce the new Structure of the documentation (#13915) 2 years ago
cups.plugin e9af618081 Make the title metadata H1 in all markdown files (#14625) 2 years ago
diskspace.plugin c867772955 diskspace: don't collect inodes on msdosfs (#14809) 1 year ago
ebpf.plugin 299502b6da Disable threads that update with high frequency (#14897) 1 year ago
freebsd.plugin 36932b5bf7 fix simple_pattern_create on freebsd (#14656) 2 years ago
freeipmi.plugin d2a44e118e Move collectors under Integrations/Monitoring (#14509) 2 years ago
idlejitter.plugin d2a44e118e Move collectors under Integrations/Monitoring (#14509) 2 years ago
ioping.plugin 6016c3b5cf Docs, shorten too long titles, and add a description below (#14820) 1 year ago
macos.plugin d2a44e118e Move collectors under Integrations/Monitoring (#14509) 2 years ago
nfacct.plugin e9af618081 Make the title metadata H1 in all markdown files (#14625) 2 years ago
perf.plugin e9af618081 Make the title metadata H1 in all markdown files (#14625) 2 years ago
plugins.d c328653bae Fix capitalization on readme (#14793) 2 years ago
proc.plugin 52f2df7ef5 Collect additional BTRFS metrics (#14636) 1 year ago
python.d.plugin 1c46b32bbe Add example configuration to w1sensor collector (#14886) 1 year ago
slabinfo.plugin d2daa19bf5 JSON internal API, IEEE754 base64/hex streaming, weights endpoint optimization (#14493) 2 years ago
statsd.plugin 9385b062f6 Replace hardcoded links pointing to "learn.netdata.cloud" with github absolute links (#14779) 2 years ago
tc.plugin d2daa19bf5 JSON internal API, IEEE754 base64/hex streaming, weights endpoint optimization (#14493) 2 years ago
timex.plugin d2a44e118e Move collectors under Integrations/Monitoring (#14509) 2 years ago
xenstat.plugin d2a44e118e Move collectors under Integrations/Monitoring (#14509) 2 years ago
COLLECTORS.md 2614786427 add some third party collectors (#14830) 1 year ago
Makefile.am 4322b1973d remove deprecated fping.plugin in accordance with v1.37.0 deprecation notice (#14073) 2 years ago
README.md ab944a349f Update README.md (#14647) 2 years ago
REFERENCE.md 1413b5bac3 Reorg learn 021723 (#14556) 2 years ago
all.h 52f2df7ef5 Collect additional BTRFS metrics (#14636) 1 year ago

README.md

Collectors

When Netdata starts, and with zero configuration, it auto-detects thousands of data sources and immediately collects per-second metrics.

Netdata can immediately collect metrics from these endpoints thanks to 300+ collectors, which all come pre-installed when you install Netdata.

All collectors are installed by default with every installation of Netdata. You do not need to install collectors manually to collect metrics from new sources. See how you can monitor anything with Netdata.

Upon startup, Netdata will auto-detect any application or service that has a collector, as long as both the collector and the app/service are configured correctly. If you don't see charts for your application, see our collectors' configuration reference.

How Netdata's metrics collectors work

Every collector has two primary jobs:

  • Look for exposed metrics at a pre- or user-defined endpoint.
  • Gather exposed metrics and use additional logic to build meaningful, interactive visualizations.

If the collector finds compatible metrics exposed on the configured endpoint, it begins a per-second collection job. The Netdata Agent gathers these metrics, sends them to the database engine for storage , and immediately visualizes them meaningfully on dashboards.

Each collector comes with a pre-defined configuration that matches the default setup for that application. This endpoint can be a URL and port, a socket, a file, a web page, and more. The endpoint is user-configurable, as are many other specifics of what a given collector does.

Collector architecture and terminology

  • Collectors are the processes/programs that actually gather metrics from various sources.

  • Plugins help manage all the independent data collection processes in a variety of programming languages, based on their purpose and performance requirements. There are three types of plugins:

    • Internal plugins organize collectors that gather metrics from /proc, /sys and other Linux kernel sources. They are written in C, and run as threads within the Netdata daemon.

    • External plugins organize collectors that gather metrics from external processes, such as a MySQL database or Nginx web server. They can be written in any language, and the netdata daemon spawns them as long-running independent processes. They communicate with the daemon via pipes. All external plugins are managed by plugins.d, which provides additional management options.

  • Orchestrators are external plugins that run and manage one or more modules. They run as independent processes. The Go orchestrator is in active development.

    • go.d.plugin: An orchestrator for data collection modules written in go.

    • python.d.plugin: An orchestrator for data collection modules written in python v2/v3.

    • charts.d.plugin: An orchestrator for data collection modules written inbash v4+.

  • Modules are the individual programs controlled by an orchestrator to collect data from a specific application, or type of endpoint.