Skip to content

This playbook installs the node exporter service for publishing metrics that can be scraped by Prometheus. It can also update the configuration of an existing Prometheus host.

License

Notifications You must be signed in to change notification settings

lpwoodhouse/install_node_exporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Install Node-Exporter on Linux Nodes

Linux Prometheus playbook GitHub last commit GitHub repo file count GitHub top language GitHub

Purpose

This playbook installs the node exporter service for publishing metrics that can be scraped by Prometheus. It can also update the configuration of an existing Prometheus host.
After installation the node-exporter service will be enabled and started. To view its status (or disable/stop):

systemctl status node-exporter.service

The metrics by default are published to port 9100 and can be viewed using:

curl http://localhost:9100/metrics

Requirements

collections:
  - community.general
  - community.docker

Role Variables

Variables for each role are listed below, along with default values (see defaults/main.yml)

# install_node_exporter role
download_url: https://github.com/prometheus/node_exporter/releases/download/v1.4.0/node_exporter-1.4.0.linux-amd64.tar.gz
install_path: /opt/node-exporter # default directory where node exporter binary will be installed
web_port: 9100 # default web.listen-address port can be changed when theres a conflict

# prometheus_config role
prometheus_host: 192.168.0.1
prometheus_config_dir: /etc/prometheus # default location of prometheus.yml 
prometheus_job_name: Example Job # enter your desired job name
prometheus_scrape_interval: 10s # prometheus global default is usually 15s

Dependencies

None

Example Playbook

---
- name: install node_exporter
  hosts: all
  become: true
  gather_facts: true  
  vars:
    inc_prometheus_config: true # prometheus will be configured if true    
  tasks:
    - name: install node exporter
      include_role:
        name: install_node_exporter    
    - name: configure prometheus
      include_role:
        name: prometheus_config
      when: inc_prometheus_config|bool

Author Information

This role was created in 2022 by Lee Woodhouse

About

This playbook installs the node exporter service for publishing metrics that can be scraped by Prometheus. It can also update the configuration of an existing Prometheus host.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published