src.nth.io/

summaryrefslogtreecommitdiff
path: root/prometheus/client/tasks/main.yaml
blob: a5a6707ea541c7f80b7de09a1cfd2834507a9bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---

- name: install prometheus node exporter
  become: yes
  apt: name="{{prometheus_client_apt_packages}}"

- name: add prometheus user to video group for GPU stats
  become: yes
  user: name="prometheus" groups="video" append="yes"

- name: install prometheus rpi exporter
  unarchive:
    src: "https://github.com/lukasmalkmus/rpi_exporter/releases/download/v{{prometheus_client_rpi_exporter_version}}/rpi_exporter-{{prometheus_client_rpi_exporter_version}}.linux-{{prometheus_client_arch}}.tar.gz"
    remote_src: yes
    dest: "/tmp/"

- name: install systemd service for rpi exporter
  become: yes
  copy:
    src: "/tmp/{{prometheus_client_rpi_dest}}/rpi_exporter.service"
    remote_src: yes
    dest: "/lib/systemd/system/rpi_exporter.service"

- name: install rpi exporter binary
  become: yes
  copy:
    src: "/tmp/{{prometheus_client_rpi_dest}}/rpi_exporter"
    remote_src: yes
    dest: "/usr/local/bin/rpi_exporter"
    mode: "0755"

- name: ensure systemd services are started
  become: yes
  systemd: name="rpi_exporter.service" enabled="yes" state="started"