We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I call an Elysia app from a another app that forwards a traceparent, elysia does not pick it up.
https://opentelemetry.io/docs/languages/js/propagation/#manual-context-propagation
Add support for incoming request propagation
No response
The text was updated successfully, but these errors were encountered:
I believe to make this work this part of the code:
opentelemetry/src/index.ts
Lines 271 to 277 in c9f771c
something like this:
import { propagation } from '@opentelemetry/api'; [...] .wrap((fn, find_a_way_to_pass_headers_of_request) => tracer.startActiveSpan('request', (rootSpan) => otelContext.bind( trace.setSpan(propagation.extract(otelContext.active(), headers_of_request), rootSpan), fn ) ) )
Sorry, something went wrong.
No branches or pull requests
What is the problem this feature would solve?
If I call an Elysia app from a another app that forwards a traceparent, elysia does not pick it up.
https://opentelemetry.io/docs/languages/js/propagation/#manual-context-propagation
What is the feature you are proposing to solve the problem?
Add support for incoming request propagation
What alternatives have you considered?
No response
The text was updated successfully, but these errors were encountered: