27 lines
639 B
YAML
27 lines
639 B
YAML
networks:
|
|
default:
|
|
name: eigen-monitoring
|
|
external: true
|
|
|
|
services:
|
|
alloy:
|
|
image: grafana/alloy:latest
|
|
restart: on-failure
|
|
volumes:
|
|
- ./config.alloy:/etc/alloy/config.alloy
|
|
environment:
|
|
REMOTE_WRITE_HOST: thanos-receiver:10908
|
|
LOKI_HOST: loki:3100
|
|
TEMPO_HOST: tempo:4317
|
|
PYROSCOPE_HOST: pyroscope:4040
|
|
command:
|
|
- run
|
|
- /etc/alloy/config.alloy
|
|
- --storage.path=/var/lib/alloy/data
|
|
- --server.http.listen-addr=0.0.0.0:12345
|
|
- --stability.level=experimental
|
|
ports:
|
|
- "12345:12345"
|
|
- "4319:4319"
|
|
- "4017:4017"
|
|
- "4018:4018" |