mirror of
https://github.com/gomods/athens
synced 2026-02-03 08:40:31 +00:00
* Initial chanages for observability * Fix some panics to start testing * Export tracing properly * First example of child spans using opencensus * Add spans to download protocol * Add url to traces * Remove opentracing * Remove gopkg.* files * Start deprecating opentracing * Resolve stupid build errors * Use observability package * Fix test errors * Convert buffalo spans to observercontext * change package name * defer flush to the end of the app execution * Change op names to the correct package * Rename pkg/observability to pkg/observ * Show traces for the package * Keep tracing in the earlier way * Add info from request headers * Remove whitespace * Move exporter url to env var * Add to env file for documentation * Remove opentracing stuff * Use stdlib * Shorten service name * Add a service name to olympus as well * Add test to test if there is a recursion or not * Add Ops Suite * Move around code * Make sure the service is not instantiated if the exporter is not found
32 lines
649 B
YAML
32 lines
649 B
YAML
version: '3'
|
|
services:
|
|
redis:
|
|
image: redis:alpine
|
|
command: ["redis-server", "--appendonly", "yes"]
|
|
ports:
|
|
- "6379:6379"
|
|
mongo:
|
|
image: mongo:3.7.9-jessie
|
|
ports:
|
|
- 27017:27017
|
|
minio:
|
|
image: minio/minio:latest
|
|
command: server /data
|
|
ports:
|
|
- "9000:9000"
|
|
environment:
|
|
MINIO_ACCESS_KEY: minio
|
|
MINIO_SECRET_KEY: minio123
|
|
jaeger:
|
|
environment:
|
|
- COLLECTOR_ZIPKIN_HTTP_PORT=9441
|
|
image: jaegertracing/all-in-one:latest
|
|
ports:
|
|
- 14268:14268
|
|
- 9411:9411
|
|
- 5775:5775/udp
|
|
- 6831:6831/udp
|
|
- 6832:6832/udp
|
|
- 5778:5778
|
|
- 16686:16686
|