forked from Deuxfleurs/garage
Fix span name for api server requests
This commit is contained in:
parent
af2b2f26b4
commit
1778e4b318
1 changed files with 5 additions and 1 deletions
|
@ -174,7 +174,11 @@ impl<A: ApiHandler> ApiServer<A> {
|
||||||
|
|
||||||
let current_context = Context::current();
|
let current_context = Context::current();
|
||||||
let current_span = current_context.span();
|
let current_span = current_context.span();
|
||||||
current_span.update_name::<String>(format!("S3 API {}", endpoint.name()));
|
current_span.update_name::<String>(format!(
|
||||||
|
"{} API {}",
|
||||||
|
A::API_NAME_DISPLAY,
|
||||||
|
endpoint.name()
|
||||||
|
));
|
||||||
current_span.set_attribute(KeyValue::new("endpoint", endpoint.name()));
|
current_span.set_attribute(KeyValue::new("endpoint", endpoint.name()));
|
||||||
endpoint.add_span_attributes(current_span);
|
endpoint.add_span_attributes(current_span);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue