17 lines
379 B
YAML
17 lines
379 B
YAML
networks:
|
|
default:
|
|
name: eigen-monitoring
|
|
external: true
|
|
|
|
services:
|
|
pyroscope:
|
|
image: grafana/pyroscope:latest
|
|
environment:
|
|
JAEGER_AGENT_HOST: distributor
|
|
JAEGER_SAMPLER_TYPE: const
|
|
JAEGER_SAMPLER_PARAM: 1
|
|
command: ["-config.file=/etc/pyroscope.yml"]
|
|
ports:
|
|
- "4040:4040"
|
|
volumes:
|
|
- ./pyroscope.yml:/etc/pyroscope.yml |