Using Netdata with Prometheus
IMPORTANT: the format Netdata sends metrics to prometheus has changed since Netdata v1.7. The new prometheus backend for Netdata supports a lot more features and is aligned to the development of the rest of the Netdata backends.
Prometheus is a distributed monitoring system which offers a very simple setup along with a robust data model. Recently Netdata added support for Prometheus. I'm going to quickly show you how to install both Netdata and prometheus on the same server. We can then use grafana pointed at Prometheus to obtain long term metrics Netdata offers. I'm assuming we are starting at a fresh ubuntu shell (whether you'd like to follow along in a VM or a cloud instance is up to you).
#
Installing Netdata and prometheus#
Installing NetdataThere are number of ways to install Netdata according to Installation. The suggested way of installing the latest Netdata and keep it upgrade automatically. Using one line installation:
At this point we should have Netdata listening on port 19999. Attempt to take your browser here:
(replace your.netdata.ip
with the IP or hostname of the server running Netdata)
#
Installing PrometheusIn order to install prometheus we are going to introduce our own systemd startup script along with an example of prometheus.yaml configuration. Prometheus needs to be pointed to your server at a specific target url for it to scrape Netdata's api. Prometheus is always a pull model meaning Netdata is the passive client within this architecture. Prometheus always initiates the connection with Netdata.
#
Download Prometheus#
Create prometheus system user#
Create prometheus directory#
Untar prometheus directory#
Install prometheus.ymlWe will use the following prometheus.yml
file. Save it at /opt/prometheus/prometheus.yml
.
Make sure to replace your.netdata.ip
with the IP or hostname of the host running Netdata.
#
Install nodes.ymlThe following is completely optional, it will enable Prometheus to generate alerts from some Netdata sources. Tweak the
values to your own needs. We will use the following nodes.yml
file below. Save it at /opt/prometheus/nodes.yml
, and
add a - "nodes.yml" entry under the rule_files: section in the example prometheus.yml file above.
#
Install prometheus.serviceSave this service file as /etc/systemd/system/prometheus.service
:
#
Start PrometheusPrometheus should now start and listen on port 9090. Attempt to head there with your browser.
If everything is working correctly when you fetch http://your.prometheus.ip:9090
you will see a 'Status' tab. Click
this and click on 'targets' We should see the Netdata host as a scraped target.
#
Netdata support for prometheusIMPORTANT: the format Netdata sends metrics to prometheus has changed since Netdata v1.6. The new format allows easier queries for metrics and supports both
as collected
and normalized metrics.
Before explaining the changes, we have to understand the key differences between Netdata and prometheus.
#
understanding Netdata metrics#
chartsEach chart in Netdata has several properties (common to all its metrics):
chart_id
- uniquely identifies a chart.chart_name
- a more human friendly name forchart_id
, also unique.context
- this is the template of the chart. All disk I/O charts have the same context, all mysql requests charts have the same context, etc. This is used for alarm templates to match all the charts they should be attached to.family
groups a set of charts together. It is used as the submenu of the dashboard.units
is the units for all the metrics attached to the chart.
#
dimensionsThen each Netdata chart contains metrics called dimensions
. All the dimensions of a chart have the same units of
measurement, and are contextually in the same category (ie. the metrics for disk bandwidth are read
and write
and
they are both in the same chart).
#
Netdata data sourceNetdata can send metrics to prometheus from 3 data sources:
as collected
orraw
- this data source sends the metrics to prometheus as they are collected. No conversion is done by Netdata. The latest value for each metric is just given to prometheus. This is the most preferred method by prometheus, but it is also the harder to work with. To work with this data source, you will need to understand how to get meaningful values out of them.The format of the metrics is:
CONTEXT{chart="CHART",family="FAMILY",dimension="DIMENSION"}
.If the metric is a counter (
incremental
in Netdata lingo),_total
is appended the context.Unlike prometheus, Netdata allows each dimension of a chart to have a different algorithm and conversion constants (
multiplier
anddivisor
). In this case, that the dimensions of a charts are heterogeneous, Netdata will use this format:CONTEXT_DIMENSION{chart="CHART",family="FAMILY"}
average
- this data source uses the Netdata database to send the metrics to prometheus as they are presented on the Netdata dashboard. So, all the metrics are sent as gauges, at the units they are presented in the Netdata dashboard charts. This is the easiest to work with.The format of the metrics is:
CONTEXT_UNITS_average{chart="CHART",family="FAMILY",dimension="DIMENSION"}
.When this source is used, Netdata keeps track of the last access time for each prometheus server fetching the metrics. This last access time is used at the subsequent queries of the same prometheus server to identify the time-frame the
average
will be calculated.So, no matter how frequently prometheus scrapes Netdata, it will get all the database data. To identify each prometheus server, Netdata uses by default the IP of the client fetching the metrics.
If there are multiple prometheus servers fetching data from the same Netdata, using the same IP, each prometheus server can append
server=NAME
to the URL. Netdata will use thisNAME
to uniquely identify the prometheus server.sum
orvolume
, is likeaverage
but instead of averaging the values, it sums them.The format of the metrics is:
CONTEXT_UNITS_sum{chart="CHART",family="FAMILY",dimension="DIMENSION"}
. All the other operations are the same withaverage
.To change the data source to
sum
oras-collected
you need to provide thesource
parameter in the request URL. e.g.:http://your.netdata.ip:19999/api/v1/allmetrics?format=prometheus&help=yes&source=as-collected
Keep in mind that early versions of Netdata were sending the metrics as:
CHART_DIMENSION{}
.
#
Querying MetricsFetch with your web browser this URL:
http://your.netdata.ip:19999/api/v1/allmetrics?format=prometheus&help=yes
(replace your.netdata.ip
with the ip or hostname of your Netdata server)
Netdata will respond with all the metrics it sends to prometheus.
If you search that page for "system.cpu"
you will find all the metrics Netdata is exporting to prometheus for this
chart. system.cpu
is the chart name on the Netdata dashboard (on the Netdata dashboard all charts have a text heading
such as : Total CPU utilization (system.cpu)
. What we are interested here in the chart name: system.cpu
).
Searching for "system.cpu"
reveals:
(Netdata response for system.cpu
with source=average
)
In average
or sum
data sources, all values are normalized and are reported to prometheus as gauges. Now, use the
'expression' text form in prometheus. Begin to type the metrics we are looking for: netdata_system_cpu
. You should see
that the text form begins to auto-fill as prometheus knows about this metric.
If the data source was as collected
, the response would be:
(Netdata response for system.cpu
with source=as-collected
)
For more information check prometheus documentation.
#
Streaming data from upstream hostsThe format=prometheus
parameter only exports the host's Netdata metrics. If you are using the parent-child
functionality of Netdata this ignores any upstream hosts - so you should consider using the below in your
prometheus.yml:
This will report all upstream host data, and honor_labels
will make Prometheus take note of the instance names
provided.
#
TimestampsTo pass the metrics through prometheus pushgateway, Netdata supports the option ×tamps=no
to send the metrics
without timestamps.
#
Netdata host variablesNetdata collects various system configuration metrics, like the max number of TCP sockets supported, the max number of files allowed system-wide, various IPC sizes, etc. These metrics are not exposed to prometheus by default.
To expose them, append variables=yes
to the Netdata URL.
#
TYPE and HELPTo save bandwidth, and because prometheus does not use them anyway, # TYPE
and # HELP
lines are suppressed. If
wanted they can be re-enabled via types=yes
and help=yes
, e.g.
/api/v1/allmetrics?format=prometheus&types=yes&help=yes
Note that if enabled, the # TYPE
and # HELP
lines are repeated for every occurrence of a metric, which goes against the Prometheus documentation's specification for these lines.
#
Names and IDsNetdata supports names and IDs for charts and dimensions. Usually IDs are unique identifiers as read by the system and names are human friendly labels (also unique).
Most charts and metrics have the same ID and name, but in several cases they are different: disks with device-mapper, interrupts, QoS classes, statsd synthetic charts, etc.
The default is controlled in netdata.conf
:
You can overwrite it from prometheus, by appending to the URL:
&names=no
to get IDs (the old behaviour)&names=yes
to get names
#
Filtering metrics sent to prometheusNetdata can filter the metrics it sends to prometheus with this setting:
This settings accepts a space separated list of patterns to match the charts to be sent to prometheus. Each pattern
can use *
as wildcard, any number of times (e.g *a*b*c*
is valid). Patterns starting with !
give a negative match
(e.g !*.bad users.* groups.*
will send all the users and groups except bad
user and bad
group). The order is
important: the first match (positive or negative) left to right, is used.
#
Changing the prefix of Netdata metricsNetdata sends all metrics prefixed with netdata_
. You can change this in netdata.conf
, like this:
It can also be changed from the URL, by appending &prefix=netdata
.
#
Metric UnitsThe default source average
adds the unit of measurement to the name of each metric (e.g. _KiB_persec
). To hide the
units and get the same metric names as with the other sources, append to the URL &hideunits=yes
.
The units were standardized in v1.12, with the effect of changing the metric names. To get the metric names as they were
before v1.12, append to the URL &oldunits=yes
average
and sum
data sources#
Accuracy of When the data source is set to average
or sum
, Netdata remembers the last access of each client accessing prometheus
metrics and uses this last access time to respond with the average
or sum
of all the entries in the database since
that. This means that prometheus servers are not losing data when they access Netdata with data source = average
or
sum
.
To uniquely identify each prometheus server, Netdata uses the IP of the client accessing the metrics. If however the IP
is not good enough for identifying a single prometheus server (e.g. when prometheus servers are accessing Netdata
through a web proxy, or when multiple prometheus servers are NATed to a single IP), each prometheus may append
&server=NAME
to the URL. This NAME
is used by Netdata to uniquely identify each prometheus server and keep track of
its last access time.