From 3d7a679b58a04ab75e433fe718e585814861ab70 Mon Sep 17 00:00:00 2001 From: Archimedes Trajano Date: Sat, 12 Feb 2022 00:16:21 -0500 Subject: [PATCH] Update README.md Corrected example --- instrumentation/http/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instrumentation/http/README.md b/instrumentation/http/README.md index e58e1ff84f..5dcff90281 100644 --- a/instrumentation/http/README.md +++ b/instrumentation/http/README.md @@ -29,7 +29,7 @@ For example, to add a non-default tag for HTTP clients, you can do this: ```java httpTracing = httpTracing.toBuilder() .clientRequestParser((req, context, span) -> { - HttpClientRequestParser.DEFAULT.parse(req, context, span); + HttpRequestParser.DEFAULT.parse(req, context, span); HttpTags.URL.tag(req, context, span); // add the url in addition to defaults }) .build();