Skip to content

Commit

Permalink
use http.url and http.method tags, instead of url and method
Browse files Browse the repository at this point in the history
  • Loading branch information
alekitto committed Apr 15, 2022
1 parent a951725 commit a012d3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tracing/HttpClient/AbstractTraceableHttpClient.php
Expand Up @@ -53,8 +53,8 @@ public function request(string $method, string $url, array $options = []): Respo
$context = new SpanContext();
$context->setOp('http.request');
$context->setTags([
'method' => $method,
'url' => $url,
'http.method' => $method,
'http.url' => $url,
]);

$span = $parent->startChild($context);
Expand Down

0 comments on commit a012d3e

Please sign in to comment.