mirror of
https://github.com/grafana/tempo.git
synced 2025-03-14 03:06:42 +00:00
* Updated all examples to use 7.5 Signed-off-by: Joe Elliott <number101010@gmail.com> * with with => with Signed-off-by: Joe Elliott <number101010@gmail.com>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
version: "2"
|
|
services:
|
|
|
|
tempo:
|
|
image: grafana/tempo:latest
|
|
command: ["-config.file=/etc/tempo.yaml"]
|
|
volumes:
|
|
- ./etc/tempo-local.yaml:/etc/tempo.yaml
|
|
- ./example-data/tempo:/tmp/tempo
|
|
ports:
|
|
- "14268" # jaeger ingest
|
|
- "3100" # tempo
|
|
|
|
synthetic-load-generator:
|
|
image: omnition/synthetic-load-generator:1.0.25
|
|
volumes:
|
|
- ./etc/load-generator.json:/etc/load-generator.json
|
|
environment:
|
|
- TOPOLOGY_FILE=/etc/load-generator.json
|
|
- JAEGER_COLLECTOR_URL=http://tempo:14268
|
|
depends_on:
|
|
- tempo
|
|
|
|
prometheus:
|
|
image: prom/prometheus:latest
|
|
volumes:
|
|
- ./etc/prometheus.yaml:/etc/prometheus.yaml
|
|
entrypoint:
|
|
- /bin/prometheus
|
|
- --config.file=/etc/prometheus.yaml
|
|
ports:
|
|
- "9090:9090"
|
|
|
|
grafana:
|
|
image: grafana/grafana:7.5.1
|
|
volumes:
|
|
- ./example-data/datasources:/etc/grafana/provisioning/datasources
|
|
- ./example-data/dashboards-provisioning:/etc/grafana/provisioning/dashboards
|
|
- ../../operations/tempo-mixin/out:/var/lib/grafana/dashboards
|
|
environment:
|
|
- GF_AUTH_ANONYMOUS_ENABLED=true
|
|
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
|
|
- GF_AUTH_DISABLE_LOGIN_FORM=true
|
|
ports:
|
|
- "3000:3000" |