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.
Every collector has two primary jobs:
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.
For example, the Nginx collector searches
at http://127.0.0.1/stub_status
, which is the default endpoint for exposing Nginx metrics. The web log collector for
Nginx or Apache searches at
/var/log/nginx/access.log
and /var/log/apache2/access.log
, respectively, both of which are standard locations for
access log files on Linux systems.
The endpoint is user-configurable, as are many other specifics of what a given collector does.
To quickly find your answer, see our list of supported collectors.
Generally, Netdata's collectors can be grouped into three types:
/proc
, /sys
, and other Linux kernel sources.dockerd
or kubectl
,
along with the resource usage of containers and the applications they run.Collector is a catch-all term for any Netdata process that gathers metrics from an endpoint.
While we use collector most often in documentation, release notes, and educational content, you may encounter other terms related to collecting metrics.
go
.python
v2/v3.bash
v4+.node.js
./proc
, /sys
, and other Linux kernel sources. They are written in C
,
and run as threads within the Netdata daemon.Enable or configure a collector if the default settings are not compatible with your infrastructure.
See our collectors reference for detailed information on Netdata's collector architecture, troubleshooting a collector, developing a custom collector, and more.