mirror of
https://github.com/mother-of-all-self-hosting/mash-playbook
synced 2024-11-10 06:14:17 +00:00
2.5 KiB
2.5 KiB
Prometheus Node Exporter
This playbook can configure Prometheus Node Exporter.
Configuration
To enable this service, add the following configuration to your vars.yml
file and re-run the installation process:
########################################################################
# #
# prometheus-node-exporter #
# #
########################################################################
prometheus_node_exporter_enabled: true
# To expose the metrics publicly, enable and configure the lines below:
# prometheus_node_exporter_hostname: mash.example.com
# prometheus_node_exporter_path_prefix: /metrics/mash-prometheus-node-exporter
# To protect the metrics with HTTP Basic Auth, enable and configure the lines below.
# See: https://doc.traefik.io/traefik/middlewares/http/basicauth/#users
# prometheus_node_exporter_container_labels_metrics_middleware_basic_auth_enabled: true
# prometheus_node_exporter_container_labels_metrics_middleware_basic_auth_users: ''
########################################################################
# #
# /prometheus-node-exporter #
# #
########################################################################
Unless you're scraping the Prometheus Node Exporter metrics from a local Prometheus instance, as described in Integrating with Prometheus Node Exporter, you will probably wish to expose the metrics publicly so that a remote Prometheus instance can fetch them.
Usage
After you installed the node exporter, your node stats will be available on mash.example.com/metrics/mash-prometheus-node-exporter
with the basic auth credentials you configured.
To integrate Prometheus Node Exporter with a Prometheus instance, see the Integrating with Prometheus Node Exporter section of the documentation.
Recommended other services
- Promtail - an agent which ships the contents of local logs to a private Grafana Loki instance