-
I trying to migrate my In my With import { FORMAT_HTTP_HEADERS } from 'opentracing';
// app is expressjs app
app.get('/home', req => {
const rootSpan = tracer.startSpan('response', {
childOf: tracer.extract(FORMAT_HTTP_HEADERS, req.headers),
});
// ...make child spans of rootSpan
}); I want to connect my root span of response with spans from other application, that performs request to my How can i make it? Is it possible to create child spans manually, without auto instrumentations? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I get answer here: https://stackoverflow.com/a/71909958/13166471 |
Beta Was this translation helpful? Give feedback.
I get answer here: https://stackoverflow.com/a/71909958/13166471