From 1c8060ee496c7f98cecc7f91b25f20f2567f85c2 Mon Sep 17 00:00:00 2001 From: suyiiyii Date: Wed, 22 Jan 2025 12:54:16 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=90=AF=E7=94=A8=20Jaeger=20Collector?= =?UTF-8?q?=20=E7=9A=84=20OTLP=20=E6=94=AF=E6=8C=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 Jaeger 部署配置中添加环境变量 COLLECTOR_OTLP_ENABLED 并设置为 true - 此修改增加了对 OpenTelemetry Protocol (OTLP) 的支持,提高了监控和追踪能力 --- templates/jaeger-deployment.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/jaeger-deployment.yaml b/templates/jaeger-deployment.yaml index 8860961..2f6b079 100644 --- a/templates/jaeger-deployment.yaml +++ b/templates/jaeger-deployment.yaml @@ -24,4 +24,7 @@ spec: protocol: TCP - containerPort: 4318 protocol: TCP + env: + - name: COLLECTOR_OTLP_ENABLED + value: "true" restartPolicy: Always