Skip to content

Commit

Permalink
http.request -> http.client
Browse files Browse the repository at this point in the history
  • Loading branch information
alekitto committed May 2, 2022
1 parent 941f6d3 commit 452ca72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tracing/HttpClient/AbstractTraceableHttpClient.php
Expand Up @@ -51,7 +51,7 @@ public function request(string $method, string $url, array $options = []): Respo
$options['headers'] = $headers;

$context = new SpanContext();
$context->setOp('http.request');
$context->setOp('http.client');
$context->setTags([
'http.method' => $method,
'http.url' => $url,
Expand Down

0 comments on commit 452ca72

Please sign in to comment.