Skip to content

Commit c0b5500

Browse files
authored
Unhide tsdb.enable-native-histograms flag in receive (#8202)
Signed-off-by: Aaron Walker <[email protected]>
1 parent ce2b51f commit c0b5500

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ We use *breaking :warning:* to mark changes that are not backward compatible (re
1010

1111
## Unreleased
1212
- [#8190](https://github.com/thanos-io/thanos/pull/8190) Fix markdown formatting in CHANGELOG.
13+
- [#8202](https://github.com/thanos-io/thanos/pull/8202) Receive: Unhide `--tsdb.enable-native-histograms` flag
1314

1415
### Added
1516

cmd/thanos/receive.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ func (rc *receiveConfig) registerFlag(cmd extkingpin.FlagClause) {
10451045

10461046
cmd.Flag("tsdb.enable-native-histograms",
10471047
"[EXPERIMENTAL] Enables the ingestion of native histograms.").
1048-
Default("false").Hidden().BoolVar(&rc.tsdbEnableNativeHistograms)
1048+
Default("false").BoolVar(&rc.tsdbEnableNativeHistograms)
10491049

10501050
cmd.Flag("writer.intern",
10511051
"[EXPERIMENTAL] Enables string interning in receive writer, for more optimized memory usage.").

docs/components/receive.md

+3
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,9 @@ Flags:
568568
--tsdb.block.expanded-postings-cache-size=0
569569
[EXPERIMENTAL] If non-zero, enables expanded
570570
postings cache for compacted blocks.
571+
--tsdb.enable-native-histograms
572+
[EXPERIMENTAL] Enables the ingestion of native
573+
histograms.
571574
--tsdb.head.expanded-postings-cache-size=0
572575
[EXPERIMENTAL] If non-zero, enables expanded
573576
postings cache for the head block.

0 commit comments

Comments
 (0)