mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-02-11 07:10:16 +00:00
* chore: update otel dependencies * refactor: combine tracing & metrics in observability package * chore: update example tracing compose file
25 lines
691 B
YAML
25 lines
691 B
YAML
version: "3"
|
|
services:
|
|
tempo:
|
|
image: docker.io/grafana/tempo:latest
|
|
command: [ "-config.file=/etc/tempo.yaml" ]
|
|
volumes:
|
|
- ./tempo.yaml:/etc/tempo.yaml:Z
|
|
ports:
|
|
- "3200:3200" # tempo
|
|
- "9095:9095" # tempo grpc
|
|
- "4317:4317" # otlp grpc
|
|
- "4318:4318" # otlp http
|
|
|
|
grafana:
|
|
image: docker.io/grafana/grafana:latest
|
|
volumes:
|
|
- ./grafana-datasources.yaml:/etc/grafana/provisioning/datasources/datasources.yaml:Z
|
|
environment:
|
|
- GF_AUTH_ANONYMOUS_ENABLED=true
|
|
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
|
|
- GF_AUTH_DISABLE_LOGIN_FORM=true
|
|
- GF_FEATURE_TOGGLES_ENABLE=traceqlEditor
|
|
ports:
|
|
- "3000:3000"
|