How does jaeger authentication work in auto instrumentation . #2050
Unanswered
vinitaaher
asked this question in
Q&A
Replies: 1 comment 3 replies
-
Hi @vinitaaher - we currently don't support custom authentication of exporters in OpenTelemetry. This is an important feature so I've opened up an issue in the general specification for guidance on how to enable this. Sorry for the trouble |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All,
I did auto instrumentation in java for my app and export the traces to jaeger. Following is the parameters I am passing to jvm and it is working.
java -javaagent:tracinglib/opentelemetry-javaagent-all.jar
-Dotel.exporter=jaeger
-Dotel.exporter.jaeger.service.name=adService
-Dotel.exporter.jaeger.endpoint=localhost:14250
-jar build/libs/hipstershop-0.1.0-SNAPSHOT-fat.jar
But now I want do Jaeger authentication using either bearer token or username and password.
Please suggest how to do this.I have bearer token as well username and password also but I don't understand how to pass it with above JVM parameters.
Beta Was this translation helpful? Give feedback.
All reactions