Skip to content
Snippets Groups Projects
README.md 6.22 KiB
Newer Older
  • Learn to ignore specific revisions
  • <p><img src="https://www.circonus.com/wp-content/uploads/2015/03/sol-icon-itOps.png" alt="graph logo" title="graph" align="right" height="60" /></p>
    
    # Ansible Role: node exporter
    
    [![Build Status](https://travis-ci.org/cloudalchemy/ansible-node-exporter.svg?branch=master)](https://travis-ci.org/cloudalchemy/ansible-node-exporter)
    [![License](https://img.shields.io/badge/license-MIT%20License-brightgreen.svg)](https://opensource.org/licenses/MIT)
    
    Paweł Krupa's avatar
    Paweł Krupa committed
    [![Ansible Role](https://img.shields.io/badge/ansible%20role-cloudalchemy.node_exporter-blue.svg)](https://galaxy.ansible.com/cloudalchemy/node_exporter/)
    
    [![GitHub tag](https://img.shields.io/github/tag/cloudalchemy/ansible-node-exporter.svg)](https://github.com/cloudalchemy/ansible-node-exporter/tags)
    
    Paweł Krupa's avatar
    Paweł Krupa committed
    ## Warning
    
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    Due to limitations of galaxy.ansible.com we had to move the role to https://galaxy.ansible.com/cloudalchemy/node_exporter and use `_` instead of `-` in role name. This is a breaking change and unfortunately, it affects all versions of node_exporter role as ansible galaxy doesn't offer any form of redirection. We are sorry for the inconvenience.
    
    Paweł Krupa's avatar
    Paweł Krupa committed
    
    
    Deploy prometheus [node exporter](https://github.com/prometheus/node_exporter) using ansible.
    
    paulfantom's avatar
    paulfantom committed
    - Ansible >= 2.9 (It might work on previous versions, but we cannot guarantee it)
    
    Paweł Krupa's avatar
    Paweł Krupa committed
    - gnu-tar on Mac deployer host (`brew install gnu-tar`)
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    - Passlib is required when using the basic authentication feature (`pip install passlib[bcrypt]`)
    
    All variables which can be overridden are stored in [defaults/main.yml](defaults/main.yml) and are listed in the table below.
    
    
    | Name           | Default Value | Description                        |
    | -------------- | ------------- | -----------------------------------|
    
    | `node_exporter_version` | 1.1.1 | Node exporter package version. Also accepts latest as parameter. |
    
    Noel Varghese's avatar
    Noel Varghese committed
    | `node_exporter_binary_local_dir` | "" | Allows to use local packages instead of ones distributed on github. As parameter it takes a directory where `node_exporter` binary is stored on host on which ansible is ran. This overrides `node_exporter_version` parameter |
    
    | `node_exporter_web_listen_address` | "0.0.0.0:9100" | Address on which node exporter will listen |
    
    | `node_exporter_web_telemetry_path` | "/metrics" | Path under which to expose metrics |
    
    | `node_exporter_enabled_collectors` | ```["systemd",{textfile: {directory: "{{node_exporter_textfile_dir}}"}}]``` | List of dicts defining additionally enabled collectors and their configuration. It adds collectors to [those enabled by default](https://github.com/prometheus/node_exporter#enabled-by-default). |
    
    | `node_exporter_disabled_collectors` | [] | List of disabled collectors. By default node_exporter disables collectors listed [here](https://github.com/prometheus/node_exporter#disabled-by-default). |
    
    | `node_exporter_textfile_dir` | "/var/lib/node_exporter" | Directory used by the [Textfile Collector](https://github.com/prometheus/node_exporter#textfile-collector). To get permissions to write metrics in this directory, users must be in `node-exp` system group. __Note__: More information in TROUBLESHOOTING.md guide.
    
    | `node_exporter_tls_server_config` | {} | Configuration for TLS authentication. Keys and values are the same as in [node_exporter docs](https://github.com/prometheus/node_exporter/blob/master/https/README.md#sample-config). |
    | `node_exporter_http_server_config` | {} | Config for HTTP/2 support. Keys and values are the same as in [node_exporter docs](https://github.com/prometheus/node_exporter/blob/master/https/README.md#sample-config). |
    | `node_exporter_basic_auth_users` | {} | Dictionary of users and password for basic authentication. Passwords are automatically hashed with bcrypt. |
    
    Use it in a playbook as follows:
    ```yaml
    - hosts: all
      roles:
    
    Paweł Krupa's avatar
    Paweł Krupa committed
        - cloudalchemy.node_exporter
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    Before running node_exporter role, the user needs to provision their own certificate and key.
    
    ```yaml
    - hosts: all
      pre_tasks:
        - name: Create node_exporter cert dir
          file:
            path: "/etc/node_exporter"
            state: directory
            owner: root
            group: root
    
        - name: Create cert and key
          openssl_certificate:
            path: /etc/node_exporter/tls.cert
            csr_path: /etc/node_exporter/tls.csr
            privatekey_path: /etc/node_exporter/tls.key
            provider: selfsigned
      roles:
    
    Paweł Krupa's avatar
    Paweł Krupa committed
        - cloudalchemy.node_exporter
    
      vars:
        node_exporter_tls_server_config:
          cert_file: /etc/node_exporter/tls.cert
          key_file: /etc/node_exporter/tls.key
        node_exporter_basic_auth_users:
          randomuser: examplepassword 
    ```
    
    
    
    Paweł Krupa's avatar
    Paweł Krupa committed
    We provide demo site for full monitoring solution based on prometheus and grafana. Repository with code and links to running instances is [available on github](https://github.com/cloudalchemy/demo-site) and site is hosted on [DigitalOcean](https://digitalocean.com).
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    The preferred way of locally testing the role is to use Docker and [molecule](https://github.com/metacloud/molecule) (v2.x). You will have to install Docker on your system. See "Get started" for a Docker package suitable for your system.
    We are using tox to simplify the process of testing on multiple ansible versions. To install tox execute:
    
    To run tests on all ansible versions (WARNING: this can take some time)
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    To run a custom molecule command on a custom environment with only default test scenario:
    
    tox -e py35-ansible28 -- molecule test -s default
    
    For more information about molecule go to their [docs](http://molecule.readthedocs.io/en/latest/).
    
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    If you would like to run tests on a remote docker host just specify `DOCKER_HOST` variable before running tox tests.
    
    ## Travis CI
    
    
    Ilias Trichopoulos's avatar
    Ilias Trichopoulos committed
    Combining molecule and travis CI allows us to test how new PRs will behave when used with multiple ansible versions and multiple operating systems. This also allows creating test scenarios for different role configurations. As a result, we have a quite large test matrix which will take more time than local testing, so please be patient.
    
    
    ## Contributing
    
    See [contributor guideline](CONTRIBUTING.md).
    
    
    till's avatar
    till committed
    ## Troubleshooting
    
    See [troubleshooting](TROUBLESHOOTING.md).
    
    
    ## License
    
    This project is licensed under MIT License. See [LICENSE](/LICENSE) for more details.