Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/robertdebock/ansible-role-collectd

Install and configure collectd on your system.
https://github.com/robertdebock/ansible-role-collectd

ansible collectd molecule playbook security tox

Last synced: 8 days ago
JSON representation

Install and configure collectd on your system.

Awesome Lists containing this project

README

        

# [Ansible role collectd](#collectd)

Install and configure collectd on your system.

|GitHub|GitLab|Downloads|Version|
|------|------|---------|-------|
|[![github](https://github.com/robertdebock/ansible-role-collectd/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-collectd/actions)|[![gitlab](https://gitlab.com/robertdebock-iac/ansible-role-collectd/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-collectd)|[![downloads](https://img.shields.io/ansible/role/d/robertdebock/collectd)](https://galaxy.ansible.com/robertdebock/collectd)|[![Version](https://img.shields.io/github/release/robertdebock/ansible-role-collectd.svg)](https://github.com/robertdebock/ansible-role-collectd/releases/)|

## [Example Playbook](#example-playbook)

This example is taken from [`molecule/default/converge.yml`](https://github.com/robertdebock/ansible-role-collectd/blob/master/molecule/default/converge.yml) and is tested on each push, pull request and release.

```yaml
---
- name: Converge
hosts: all
become: true
gather_facts: true
vars:
collectd_plugin_logging: logfile
collectd_basic_plugins:
- cpu
- interface
- load
- memory
collectd_plugins:
- name: write_http
config: |

URL "127.0.0.1:8080/test.collectd"
Format "JSON"
StoreRates true

- name: postgresql
config: |

Statement "SELECT count(t.id) AS count FROM tickets t WHERE t.closed is null;"

Type gauge
InstancePrefix "tickets"
ValuesFrom "count"



Host "psql-database.hostname.com"
Port "5432"
User "my_psqladminuser"
Password "my_passwd"
SSLMode "prefer"
Query tickets

roles:
- role: robertdebock.collectd
```

The machine needs to be prepared. In CI this is done using [`molecule/default/prepare.yml`](https://github.com/robertdebock/ansible-role-collectd/blob/master/molecule/default/prepare.yml):

```yaml
---
- name: Prepare
hosts: all
become: true
gather_facts: false

roles:
- role: robertdebock.bootstrap
- role: robertdebock.epel
```

Also see a [full explanation and example](https://robertdebock.nl/how-to-use-these-roles.html) on how to use these roles.

## [Role Variables](#role-variables)

The default values for the variables are set in [`defaults/main.yml`](https://github.com/robertdebock/ansible-role-collectd/blob/master/defaults/main.yml):

```yaml
---
# defaults file for collectd

collectd_conf_hostname: "{{ ansible_hostname }}"
collectd_conf_fqdnlookup: "false"
collectd_conf_basedir: /var/lib/collectd
collectd_conf_pidfile: /var/run/collectd.pid
collectd_conf_typesdb: /usr/share/collectd/types.db

collectd_conf_autoloadplugin: "false"
collectd_conf_collectinternalstats: "false"

collectd_conf_interval: 10
collectd_conf_maxreadinterval: 86400
collectd_conf_timeout: 2
collectd_conf_readthreads: 5
collectd_conf_writethreads: 5

collectd_conf_include_dir: /etc/collectd.d
collectd_conf_fnmatch_filters:
- "*.conf"

#### Logging Configuration

collectd_plugin_logging: syslog

collectd_plugin_logging_directory: "/var/log/collectd"

collectd_plugin_logfile_loglevel: "info"
collectd_plugin_logfile_file: "{{ collectd_plugin_logging_directory }}/collectd.log"
collectd_plugin_logfile_timestamp: "true"
collectd_plugin_logfile_printseverity: "false"

collectd_plugin_logstash_loglevel: "info"
collectd_plugin_logstash_file: "{{ collectd_plugin_logging_directory }}/collectd.json.log"

collectd_plugin_syslog_loglevel: "info"
# collectd_plugin_syslog_notifylevel: ""

# Use 'collectd_basic_plugins' to enable plugins not requiring additional
# configuration.
collectd_basic_plugins:
- cpu
- interface
- load
- memory
# - aggregation
# - amqp
# - apache
# - apcups
# - apple_sensors
# - aquaero
# - ascent
# - barometer
# - battery
# - bind
# - ceph
# - cgroups
# - chrony
# - conntrack
# - contextswitch
# - cpu
# - cpufreq
# - cpusleep
# - csv
# - curl
# - curl_json
# - curl_xml
# - dbi
# - df
# - disk
# - dns
# - dpdkevents
# - dpdkstat
# - drbd
# - email
# - entropy
# - ethstat
# - exec
# - fhcount
# - filecount
# - fscache
# - gmond
# - gps
# - grpc
# - hddtemp
# - hugepages
# - intel_pmu
# - intel_rdt
# - interface
# - ipc
# - ipmi
# - iptables
# - ipvs
# - irq
# - java
# - load
# - lpar
# - lua
# - lvm
# - madwifi
# - mbmon
# - mcelog
# - md
# - memcachec
# - memcached
# - memory
# - mic
# - modbus
# - mqtt
# - multimeter
# - mysql
# - netapp
# - netlink
# - network
# - nfs
# - nginx
# - notify_desktop
# - notify_email
# - notify_nagios
# - ntpd
# - numa
# - nut
# - olsrd
# - onewire
# - openldap
# - openvpn
# - oracle
# - ovs_events
# - ovs_stats
# - perl
# - pinba
# - ping
# - postgresql
# - powerdns
# - processes
# - protocols
# - python
# - redis
# - routeros
# - rrdcached
# - rrdtool
# - sensors
# - serial
# - sigrok
# - smart
# - snmp
# - snmp_agent
# - statsd
# - swap
# - table
# - tail
# - tail_csv
# - tape
# - tcpconns
# - teamspeak2
# - ted
# - thermal
# - tokyotyrant
# - turbostat
# - unixsock
# - uptime
# - users
# - uuid
# - varnish
# - virt
# - vmem
# - vserver
# - wireless
# - write_graphite
# - write_http
# - write_kafka
# - write_log
# - write_mongodb
# - write_prometheus
# - write_redis
# - write_riemann
# - write_sensu
# - write_tsdb
# - xencpu
# - xmms
# - zfs_arc
# - zone
# - zookeeper

# Use 'collectd_plugins' to enable plugins requiring additional configuration.
collectd_plugins: []
# examples:
# - name: example
# interval: 120 #seconds
# flush_interval: 600 #seconds
# flush_timeout:
# config: |4
# Something: true
#
# NestedKey: "value"
#
# - name: write_http
# config: |4
#
# URL "127.0.0.1:26000/oms.collectd"
# Format "JSON"
# StoreRates yes
#
# - name: postgresql
# config: |4
#
# Statement "SELECT count(t.id) AS count FROM tickets t WHERE t.closed is null;"
#
# Type gauge
# InstancePrefix "tickets"
# ValuesFrom "count"
#
#
#
# Host "psql-database.hostname.com"
# Port "5432"
# User "my_psqladminuser"
# Password "my_passwd"
# SSLMode "prefer"
# Query tickets
#
```

## [Requirements](#requirements)

- pip packages listed in [requirements.txt](https://github.com/robertdebock/ansible-role-collectd/blob/master/requirements.txt).

## [State of used roles](#state-of-used-roles)

The following roles are used to prepare a system. You can prepare your system in another way.

| Requirement | GitHub | GitLab |
|-------------|--------|--------|
|[robertdebock.bootstrap](https://galaxy.ansible.com/robertdebock/bootstrap)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-bootstrap/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-bootstrap/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-bootstrap/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-bootstrap)|
|[robertdebock.epel](https://galaxy.ansible.com/robertdebock/epel)|[![Build Status GitHub](https://github.com/robertdebock/ansible-role-epel/workflows/Ansible%20Molecule/badge.svg)](https://github.com/robertdebock/ansible-role-epel/actions)|[![Build Status GitLab](https://gitlab.com/robertdebock-iac/ansible-role-epel/badges/master/pipeline.svg)](https://gitlab.com/robertdebock-iac/ansible-role-epel)|

## [Context](#context)

This role is a part of many compatible roles. Have a look at [the documentation of these roles](https://robertdebock.nl/) for further information.

Here is an overview of related roles:
![dependencies](https://raw.githubusercontent.com/robertdebock/ansible-role-collectd/png/requirements.png "Dependencies")

## [Compatibility](#compatibility)

This role has been tested on these [container images](https://hub.docker.com/u/robertdebock):

|container|tags|
|---------|----|
|[Alpine](https://hub.docker.com/r/robertdebock/alpine)|all|
|[Amazon](https://hub.docker.com/r/robertdebock/amazonlinux)|Candidate|
|[EL](https://hub.docker.com/r/robertdebock/enterpriselinux)|9|
|[Debian](https://hub.docker.com/r/robertdebock/debian)|bullseye|
|[Fedora](https://hub.docker.com/r/robertdebock/fedora)|all|
|[Ubuntu](https://hub.docker.com/r/robertdebock/ubuntu)|focal|

The minimum version of Ansible required is 2.12, tests have been done to:

- The previous version.
- The current version.
- The development version.

If you find issues, please register them in [GitHub](https://github.com/robertdebock/ansible-role-collectd/issues).

## [License](#license)

[Apache-2.0](https://github.com/robertdebock/ansible-role-collectd/blob/master/LICENSE).

## [Author Information](#author-information)

[robertdebock](https://robertdebock.nl/)

Please consider [sponsoring me](https://github.com/sponsors/robertdebock).