add dedicated column logging (#4832)

* add dedicated column logging

* add changelog

* typo
This commit is contained in:
Edgar K
2025-03-11 14:33:32 +02:00
committed by GitHub
parent 259b765971
commit a8e4330287
4 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,7 @@ configurable via the throughput_bytes_slo field, and it will populate op="traces
* [ENHANCEMENT] rhythm: fair partition consumption in blockbuilders[#4655](https://github.com/grafana/tempo/pull/4655) (@javiermolinar)
* [ENHANCEMENT] TraceQL: add support for querying by parent span id [#4692](https://github.com/grafana/tempo/pull/4692) (@ie-pham)
* [ENHANCEMENT] metrics-generator: allow skipping localblocks and consuming from a different source of data [#4686](https://github.com/grafana/tempo/pull/4686) (@flxbk)
* [ENHANCEMENT] compactor: restore dedicated columns logging for completed blocks
* [BUGFIX] Choose a default step for a gRPC streaming query range request if none is provided. [#4546](https://github.com/grafana/tempo/pull/4576) (@joe-elliott)
Correctly copy exemplars for metrics like `| rate()` when gRPC streaming.
* [BUGFIX] Fix performance bottleneck and file cleanup in block builder [#4550](https://github.com/grafana/tempo/pull/4550) (@mdisibio)

View File

@ -265,6 +265,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
"bloomShardCount", block.meta.BloomShardCount,
"footerSize", block.meta.FooterSize,
"replicationFactor", block.meta.ReplicationFactor,
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
)
compactionLevel := int(block.meta.CompactionLevel) - 1

View File

@ -273,6 +273,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
"bloomShardCount", block.meta.BloomShardCount,
"footerSize", block.meta.FooterSize,
"replicationFactor", block.meta.ReplicationFactor,
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
)
compactionLevel := int(block.meta.CompactionLevel) - 1

View File

@ -277,6 +277,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
"bloomShardCount", block.meta.BloomShardCount,
"footerSize", block.meta.FooterSize,
"replicationFactor", block.meta.ReplicationFactor,
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
)
span.AddEvent("wrote compacted block")