Replace operation name with static value

This commit is contained in:
Johan Vandeweerd 2019-05-15 09:57:39 +02:00 committed by Tyler Benson
parent 35b924b397
commit ac11bba616
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class TracingClientResponseMono extends Mono<ClientResponse> {
final Span span =
tracer
.buildSpan(clientRequest.method().toString())
.buildSpan("webflux.request")
.asChildOf(parentSpan)
.withTag(Tags.SPAN_KIND.getKey(), Tags.SPAN_KIND_CLIENT)
.start();