How to disable or modify Thrift receiver in Jaeger v2 (Port 14268 active by default) ? #7324
Replies: 3 comments 2 replies
-
please share your config |
Beta Was this translation helpful? Give feedback.
-
Tried to change thrift_http protocol from the default 14268 to a different port (e.g. 14279). Our updated configuration looks like this:
However, after deploying this change, the pod logs still show the collector starting the HTTP server on port 14268:
We’ve verified the following:
|
Beta Was this translation helpful? Give feedback.
-
diff --git a/cmd/jaeger/config.yaml b/cmd/jaeger/config.yaml
index f94e9e26..c716191e 100644
--- a/cmd/jaeger/config.yaml
+++ b/cmd/jaeger/config.yaml
@@ -72,6 +72,7 @@ receivers:
thrift_binary:
thrift_compact:
thrift_http:
+ endpoint: 0.0.0.0:54321
zipkin:
Log: Looks to me it's your set up that is at fault. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello Maintainers 👋,
Thank you for your hard work on Jaeger and the recent v2 developments — it's exciting to see Jaeger align more closely with the OpenTelemetry ecosystem.
I’m working with Jaeger v2 and trying to disable or change the Thrift HTTP receiver port (default: 14268). Even after modifying the ConfigMap to change the port (or exclude the Thrift receiver entirely), the Jaeger Collector still appears to start and listen on port 14268, as seen in the pod logs.
I’ve confirmed the updated config is mounted correctly inside the container, and I’m passing it using the --config-file argument. Despite this, the Thrift HTTP receiver is still active on its default port.
Is there a way to disable or override the Thrift HTTP receiver in Jaeger v2?
Or is it currently hardcoded and always initialized regardless of configuration?
Any guidance on how to fully disable or control that receiver would be helpful, especially in a setup where we want to use only OTLP as the input and avoid exposing unused ports.
Thanks in advance for your support, and happy to test or contribute where possible!
Beta Was this translation helpful? Give feedback.
All reactions