Nest repository to illustrate a bug with otel context propagation: Querying an endpoint won't propagate the traceID to the next endpoint, or in the response.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# app listens on 3002
open http://localhost:3002/hello
The app is composed of 3 GET endpoints:
- GET
/
: return a simple string - GET
/hello
: calls the/world
endpoint and return a combinaison of results - GET
/world
: return a simple string.