mirror of
https://github.com/grafana/tempo.git
synced 2025-03-14 03:06:42 +00:00
add dedicated column logging (#4832)
* add dedicated column logging * add changelog * typo
This commit is contained in:
@ -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] 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] 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] 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)
|
* [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.
|
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)
|
* [BUGFIX] Fix performance bottleneck and file cleanup in block builder [#4550](https://github.com/grafana/tempo/pull/4550) (@mdisibio)
|
||||||
|
@ -265,6 +265,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
|
|||||||
"bloomShardCount", block.meta.BloomShardCount,
|
"bloomShardCount", block.meta.BloomShardCount,
|
||||||
"footerSize", block.meta.FooterSize,
|
"footerSize", block.meta.FooterSize,
|
||||||
"replicationFactor", block.meta.ReplicationFactor,
|
"replicationFactor", block.meta.ReplicationFactor,
|
||||||
|
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
|
||||||
)
|
)
|
||||||
|
|
||||||
compactionLevel := int(block.meta.CompactionLevel) - 1
|
compactionLevel := int(block.meta.CompactionLevel) - 1
|
||||||
|
@ -273,6 +273,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
|
|||||||
"bloomShardCount", block.meta.BloomShardCount,
|
"bloomShardCount", block.meta.BloomShardCount,
|
||||||
"footerSize", block.meta.FooterSize,
|
"footerSize", block.meta.FooterSize,
|
||||||
"replicationFactor", block.meta.ReplicationFactor,
|
"replicationFactor", block.meta.ReplicationFactor,
|
||||||
|
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
|
||||||
)
|
)
|
||||||
|
|
||||||
compactionLevel := int(block.meta.CompactionLevel) - 1
|
compactionLevel := int(block.meta.CompactionLevel) - 1
|
||||||
|
@ -277,6 +277,7 @@ func (c *Compactor) finishBlock(ctx context.Context, block *streamingBlock, l lo
|
|||||||
"bloomShardCount", block.meta.BloomShardCount,
|
"bloomShardCount", block.meta.BloomShardCount,
|
||||||
"footerSize", block.meta.FooterSize,
|
"footerSize", block.meta.FooterSize,
|
||||||
"replicationFactor", block.meta.ReplicationFactor,
|
"replicationFactor", block.meta.ReplicationFactor,
|
||||||
|
"dedicatedColumns", fmt.Sprintf("%+v", block.meta.DedicatedColumns),
|
||||||
)
|
)
|
||||||
|
|
||||||
span.AddEvent("wrote compacted block")
|
span.AddEvent("wrote compacted block")
|
||||||
|
Reference in New Issue
Block a user