forked from Deuxfleurs/garage
Merge pull request 'Fix span name for api server requests' (#392) from fix-span-name into main
Reviewed-on: Deuxfleurs/garage#392
This commit is contained in:
commit
ea7a571d88
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