ansible-collection-prometheus/roles/snmp_exporter
Ben Kochie a09941b753
skip-release: Add workflow to auto-update versions (#48)
Add a script and workflow to automatically check for upstream releases
and create PRs to update the associated role.

Signed-off-by: SuperQ <superq@gmail.com>
2023-03-11 16:35:19 +01:00
..
defaults skip-release: Add workflow to auto-update versions (#48) 2023-03-11 16:35:19 +01:00
handlers fix(lint): warning lint errors 2022-11-25 15:39:18 +00:00
meta Disable line-length check in arguments_specs 2023-03-08 08:15:06 +01:00
molecule fix: future-import-boilerplate and metaclass-boilerplate 2023-01-11 19:50:51 +00:00
tasks refactor: support customizing snmp_exporter url/mirror 2023-03-02 12:49:34 +00:00
templates initial migration of roles from cloudalchemy 2022-09-23 13:29:55 +02:00
vars initial migration of roles from cloudalchemy 2022-09-23 13:29:55 +02:00
README.md refactor: support customizing snmp_exporter url/mirror 2023-03-02 12:49:34 +00:00

graph logo

Ansible Role: SNMP exporter

Description

Deploy and manage prometheus SNMP exporter using ansible.

Requirements

  • Ansible >= 2.7 (It might work on previous versions, but we cannot guarantee it)

Role Variables

All variables which can be overridden are stored in defaults/main.yml file as well as in table below.

Name Default Value Description
snmp_exporter_version 0.19.0 SNMP exporter package version
snmp_exporter_binary_url `https://github.com/prometheus/snmp_exporter/releases/download/v{{ snmp_exporter_version }}/snmp_exporter-{{ snmp_exporter_version }}.linux-{{ go_arch_map[ansible_architecture] default(ansible_architecture) }}.tar.gz`
snmp_exporter_checksums_url https://github.com/prometheus/snmp_exporter/releases/download/v{{ snmp_exporter_version }}/sha256sums.txt URL of the snmp exporter checksums file
snmp_exporter_web_listen_address "0.0.0.0:9116" Address on which SNMP exporter will be listening
snmp_exporter_config_file "" If this is empty, role will download snmp.yml file from https://github.com/prometheus/snmp_exporter. Otherwise this should contain path to file with custom snmp exporter configuration

Example

Demo site

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 and site is hosted on DigitalOcean.

Local Testing

The preferred way of locally testing the role is to use Docker and molecule (v3.x). You will have to install Docker on your system. See "Get started" for a Docker package suitable to for your system. Running your tests is as simple as executing molecule test.

Continuous Intergation

Combining molecule and circle CI allows us to test how new PRs will behave when used with multiple ansible versions and multiple operating systems. This also allows use to create test scenarios for different role configurations. As a result we have a quite large test matrix which can take more time than local testing, so please be patient.

Contributing

See contributor guideline.

Troubleshooting

See troubleshooting.

License

This project is licensed under MIT License. See LICENSE for more details.