more
This commit is contained in:
parent
c404d08b89
commit
84cf62ab14
7 changed files with 69 additions and 71 deletions
|
|
@ -0,0 +1,16 @@
|
|||
[Container]
|
||||
ContainerName=prometheus-ts
|
||||
Image=docker.io/tailscale/tailscale:latest
|
||||
HostName=prometheus
|
||||
Environment=TS_AUTH_KEY={{ podman_prometheus_ts_auth_key }}
|
||||
Environment=TS_STATE_DIR=/var/lib/tailscale
|
||||
Environment=TS_USERSPACE=true
|
||||
Environment=TS_EXTRA_ARGS="--login-server https://hs.sr2.uk/"
|
||||
Network=monitor.network
|
||||
|
||||
[Service]
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
|
|
@ -13,26 +13,21 @@ scrape_configs:
|
|||
- targets: ['alertmanager:9093']
|
||||
- job_name: 'node'
|
||||
scrape_interval: 5s
|
||||
scheme: https
|
||||
basic_auth:
|
||||
username: metrics
|
||||
password: "{{ node_exporter_password }}"
|
||||
tls_config:
|
||||
insecure_skip_verify: true
|
||||
scheme: http
|
||||
static_configs:
|
||||
- targets:
|
||||
- 'host.containers.internal:9100'
|
||||
{% for host in groups['ipaservers'] %}
|
||||
- '{{ host }}:9100'
|
||||
- "{{ hostvars[host]['node_exporter_tailscale_ipv4'].stdout }}:9100"
|
||||
{% endfor %}
|
||||
{% for host in groups['keycloak'] %}
|
||||
- '{{ host }}:9100'
|
||||
- "{{ hostvars[host]['node_exporter_tailscale_ipv4'].stdout }}:9100"
|
||||
{% endfor %}
|
||||
{% for host in groups['radius'] %}
|
||||
- '{{ host }}:9100'
|
||||
- "{{ hostvars[host]['node_exporter_tailscale_ipv4'].stdout }}:9100"
|
||||
{% endfor %}
|
||||
{% for host in groups['generic'] %}
|
||||
- '{{ host }}:9100'
|
||||
- "{{ hostvars[host]['node_exporter_tailscale_ipv4'].stdout }}:9100"
|
||||
{% endfor %}
|
||||
file_sd_configs:
|
||||
- files:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue