I have an angular app from which I want to send traces along with tags while making api calls to spring boot backend is this possible?
const span = opentracing.globalTracer().startSpan("operation");
span.setTag("tag","tagname") // this tagname I need to extract in spring boot backend when made get/post call