forked from CCCHH/ansible-infra
17 lines
423 B
YAML
17 lines
423 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
vars:
|
|
alloy_version: "1.4.2"
|
|
alloy_config: |
|
|
prometheus.scrape "default" {
|
|
targets = [{"__address__" = "127.0.0.1:12345"}]
|
|
forward_to = [prometheus.remote_write.prom.receiver]
|
|
}
|
|
prometheus.remote_write "prom" {
|
|
endpoint {
|
|
url = "http://mimir:9009/api/v1/push"
|
|
}
|
|
}
|
|
roles:
|
|
- role: grafana.grafana.alloy
|