[ x] This only affects the JavaScript OpenTelemetry library
Currently, if enabled - the traceparent header is added to all requests.
is there a way to specify which urls should be added?
for example i have 50 requests, but only want to add the traceparent to 5 of them.
i dont want to use the ignoreUrls, since i still need to monitor all.
Datadog has allowedTracingUrls which is a list of allowed urls, that would add the traceparent
Currently, if enabled - the traceparent header is added to all requests. is there a way to specify which urls should be added? for example i have 50 requests, but only want to add the traceparent to 5 of them. i dont want to use the ignoreUrls, since i still need to monitor all.
Datadog has
allowedTracingUrls
which is a list of allowed urls, that would add the traceparentThanks for helping