January 2019
Intermediate to advanced
484 pages
11h 48m
English
The steps for implementing the monitoring layers discussed previously in Prometheus are now quite clear:
The host layer monitoring in Prometheus is done by the node exporter (https://github.com/prometheus/node_exporter). Its Kubernetes template can be found under the examples for this chapter, and it contains one DaemonSet with a scrape annotation. Install it as follows:
$ kubectl apply -f exporters/prom-node-exporter.yml
Its corresponding target in Prometheus will be discovered and created by the pod discovery role if using the example configuration.
The container layer collector should be kubelet. Consequently, ...
Read now
Unlock full access