2018-07-26 17:02:22 +02:00
# Netdata
1. [Overview ](#overview )
2. [Role Variables ](#role-variables )
3. [Example Playbook ](#example-playbook )
4. [Configuration ](#configuration )
5. [Development ](#development )
6. [License ](#license )
7. [Author Information ](#author-information )
## Overview
A role to manage Netdata installation and configuration.
## Role Variables
* **netdata__base_packages** : List of base packages in order to provide Netdata [default : `netdata` ].
* **netdata__install_recommends** : If recommends packages should be install [default : `True` ].
* **netdata__deploy_state** : The desired state this role should achieve. [default : `present` ].
2018-07-26 17:46:10 +02:00
* **netdata__etc_src** : Directory used as source to templating /etc/netdata configuration content [default : `../templates/etc/netdata` ].
2018-07-26 17:02:22 +02:00
## Example Playbook
* Use defaults vars :
``` yaml
2018-07-26 17:46:10 +02:00
- hosts: mynode.DOMAIN
2018-07-26 17:02:22 +02:00
roles:
- role: ipr-cnrs.netdata
tags: ['role::netdata', 'ipr']
```
2018-07-26 17:46:10 +02:00
* Use your own Netdata's configuration as source :
``` yml
- hosts: mynode.DOMAIN
roles:
- role: ipr-cnrs.netdata
netdata__etc_src: '{{ inventory_dir + "/../resources/host/mynode.DOMAIN/etc/netdata/" }}'
```
* Ensure your directory contains only templates or sub-directories, such as :
``` sh
mynode.DOMAIN
└── etc
└── netdata
├── fping.conf.j2
├── health_alarm_notify.conf.j2
├── netdata.conf.j2
└── node.d
├── named.conf.md.j2
├── README.md.j2
├── sma_webbox.conf.md.j2
└── snmp.conf.md.j2
```
2018-07-26 17:02:22 +02:00
## Configuration
This role will :
* Install needed packages to provide `netdata` service.
2018-07-26 17:46:10 +02:00
* Manage Netdata configuration (/etc/netdata).
2018-07-26 17:02:22 +02:00
## Development
This source code comes from our [Gogs instance][netdata source] and the [Github repo][netdata github] exist just to be able to send the role to Ansible Galaxy…
But feel free to send issue/PR here :)
Thanks to this [hook][gogs to github hook], Github automatically got updates from our [Gogs instance][netdata source] :)
## License
[WTFPL][wtfpl website]
## Author Information
Jérémy Gardais
* Source : [on IPR's Gogs][netdata source]
* [IPR][ipr website] (Institut de Physique de Rennes)
[gogs to github hook]: https://stackoverflow.com/a/21998477
[netdata source]: https://git.ipr.univ-rennes1.fr/cellinfo/ansible.netdata
[netdata github]: https://github.com/ipr-cnrs/netdata
[wtfpl website]: http://www.wtfpl.net/about/
[ipr website]: https://ipr.univ-rennes1.fr/