Skip to content

Commit b015d2c

Browse files
committed
Changelog
Signed-off-by: alanprot <[email protected]>
1 parent ac0d25f commit b015d2c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* [ENHANCEMENT] Store Gateway: Log gRPC requests together with headers configured in `http_request_headers_to_log`. #5958
1717
* [ENHANCEMENT] Upgrade Alpine to 3.19. #6014
1818
* [ENHANCEMENT] Upgrade go to 1.21.11 #6014
19+
* [ENHANCEMENT] Ingester: Add a new experimental `-ingester.labels-string-interning-enabled` flag to enable string interning for metrics labels. #6057
1920
* [BUGFIX] Configsdb: Fix endline issue in db password. #5920
2021
* [BUGFIX] Ingester: Fix `user` and `type` labels for the `cortex_ingester_tsdb_head_samples_appended_total` TSDB metric. #5952
2122
* [BUGFIX] Querier: Enforce max query length check for `/api/v1/series` API even though `ignoreMaxQueryLength` is set to true. #6018

docs/configuration/config-file-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2973,7 +2973,7 @@ instance_limits:
29732973
[admin_limit_message: <string> | default = "please contact administrator to raise it"]
29742974
29752975
# Experimental: Enable string interning for metrics labels.
2976-
# CLI flag: -ingester.labels-string-interning
2976+
# CLI flag: -ingester.labels-string-interning-enabled
29772977
[labels_string_interning_enabled: <boolean> | default = false]
29782978
```
29792979

pkg/ingester/ingester.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func (cfg *Config) RegisterFlags(f *flag.FlagSet) {
160160

161161
f.StringVar(&cfg.AdminLimitMessage, "ingester.admin-limit-message", "please contact administrator to raise it", "Customize the message contained in limit errors")
162162

163-
f.BoolVar(&cfg.LabelsStringInterningEnabled, "ingester.labels-string-interning", false, "Experimental: Enable string interning for metrics labels.")
163+
f.BoolVar(&cfg.LabelsStringInterningEnabled, "ingester.labels-string-interning-enabled", false, "Experimental: Enable string interning for metrics labels.")
164164
}
165165

166166
func (cfg *Config) Validate() error {

0 commit comments

Comments
 (0)