Add server software for populating Grafana with metrics.

This commit is contained in:
Hyperling 2021-03-16 19:41:10 -05:00
parent 7c86903476
commit e3464dbfda
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
---
# Application that populates InfluxDB with metric data.
- shell: "{{ item }}"
args:
chdir: "{{ ansible_env.HOME }}/Downloads/"
loop:
- wget https://dl.influxdata.com/influxdb/releases/influxdb2-2.0.4-amd64.deb
- sudo dpkg -i influxdb2-2.0.4-amd64.deb

View File

@ -0,0 +1,9 @@
---
# Application that populates InfluxDB with metric data.
- shell: "{{ item }}"
args:
chdir: "{{ ansible_env.HOME }}/Downloads/"
loop:
- wget https://dl.influxdata.com/telegraf/releases/telegraf_1.17.3-1_amd64.deb
- sudo dpkg -i telegraf_1.17.3-1_amd64.deb