From charlesreid1

(Created page with "Time series database backend Nice guide to setting up Prometheus to ingest data from Netdata: https://www.digitalocean.com/community/tutorials/how-to-set-up-real-time-perform...")
 
No edit summary
Line 1: Line 1:
=Notes=
Time series database backend
Time series database backend


Nice guide to setting up Prometheus to ingest data from Netdata: https://www.digitalocean.com/community/tutorials/how-to-set-up-real-time-performance-monitoring-with-netdata-on-ubuntu-16-04
Nice guide to setting up Prometheus to ingest data from Netdata: https://github.com/firehol/netdata/wiki/Netdata,-Prometheus,-and-Grafana-Stack
 
==Installing==
 
The following installation procedure will download the pre-built Linux binary and put it in /opt/prometheus:
 
<pre>
curl -L 'https://github.com/prometheus/prometheus/releases/download/v1.7.1/prometheus-1.7.1.linux-amd64.tar.gz' \
    -o /tmp/prometheus.tar.gz
 
mkdir /opt/prometheus
 
tar -xf /tmp/prometheus.tar.gz -C /opt/prometheus/ --strip-components 1
</pre>
 
[[Image:PrometheusFirstVisit.png|500px]]
 
 





Revision as of 15:46, 18 January 2018

Notes

Time series database backend

Nice guide to setting up Prometheus to ingest data from Netdata: https://github.com/firehol/netdata/wiki/Netdata,-Prometheus,-and-Grafana-Stack

Installing

The following installation procedure will download the pre-built Linux binary and put it in /opt/prometheus:

curl -L 'https://github.com/prometheus/prometheus/releases/download/v1.7.1/prometheus-1.7.1.linux-amd64.tar.gz' \
    -o /tmp/prometheus.tar.gz

mkdir /opt/prometheus

tar -xf /tmp/prometheus.tar.gz -C /opt/prometheus/ --strip-components 1

PrometheusFirstVisit.png






Flags