feat: 启用 Jaeger Collector 的 OTLP 支持

- 在 Jaeger 部署配置中添加环境变量 COLLECTOR_OTLP_ENABLED 并设置为 true
- 此修改增加了对 OpenTelemetry Protocol (OTLP) 的支持,提高了监控和追踪能力
This commit is contained in:
suyiiyii 2025-01-22 12:54:16 +08:00
parent 009b945808
commit 1c8060ee49
Signed by: suyiiyii
GPG Key ID: 044704CB29B8AD85

View File

@ -24,4 +24,7 @@ spec:
protocol: TCP
- containerPort: 4318
protocol: TCP
env:
- name: COLLECTOR_OTLP_ENABLED
value: "true"
restartPolicy: Always