fix: tracing span hierarchy in querier (#7469)

The span for the individual chunk creations should be under
"create individual chunks".
pull/24376/head
Marco Neumann 2023-04-06 12:01:39 +02:00 committed by GitHub
parent 30b1878171
commit c03a5c7c14
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ impl ChunkAdapter {
}
{
let _span_recorder = span_recorder.child("create individual chunks");
let span_recorder = span_recorder.child("create individual chunks");
futures::stream::iter(parquet_files)
.map(|cached_parquet_file| {