All checks were successful
Build docker and publish / build (20.15.1) (push) Successful in 5m15s
fix(trace): 移除服务中的trace初始化代码并优化agent日志 feat(docker): 添加docker-compose.yaml配置文件 refactor(trace): 为agent添加超时设置和启动日志 chore: 添加nginx配置文件示例
23 lines
502 B
YAML
23 lines
502 B
YAML
version: '3'
|
|
|
|
services:
|
|
jaeger:
|
|
image: jaegertracing/all-in-one:latest
|
|
container_name: jaeger
|
|
ports:
|
|
- "16686:16686"
|
|
- "4317:4317"
|
|
- "4318:4318"
|
|
environment:
|
|
# - SPAN_STORAGE_TYPE=elasticsearch
|
|
# - ES_SERVER_URLS=http://elasticsearch:9200
|
|
- LOG_LEVEL=debug
|
|
- COLLECTOR_OTLP_ENABLED=true
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
cpus: '0.8'
|
|
memory: 500M
|
|
reservations:
|
|
cpus: '0.05'
|
|
memory: 200M |