-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.yml
56 lines (49 loc) · 1.06 KB
/
server.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
- name: Set up VM for Data ingestion and Dashboard
hosts: dashboard
vars_files:
- 'vars/vault.yml'
vars:
- influx_ip_address: 127.0.0.1
roles:
- role: influxdb
- role: telegraf
- role: grafana
## Hosts to deploy telegraf agent to
- name: Deploy zfs and host monitoring
hosts: cyborgman
vars_files:
- 'vars/vault.yml'
vars:
- monitor_zfs: true
- monitor_sanoid_snapshots: true
- monitor_sanoid_health: true
roles:
- role: telegraf
- name: Deploy zfs and host monitoring
hosts: falcon
vars_files:
- 'vars/vault.yml'
vars:
- monitor_zfs: true
- monitor_systemd: true
- monitor_sanoid_snapshots: true
- monitor_sanoid_health: true
- monitor_docker: true
roles:
- role: telegraf
- name: Deploy host monitoring + ufw
hosts: caddyproxy
vars_files:
- 'vars/vault.yml'
vars:
- monitor_ufw: true
- process_geoip: true
roles:
- role: telegraf
- role: geoip
- name: Deploy host monitoring only
hosts: arr
vars_files:
- 'vars/vault.yml'
roles:
- role: telegraf