Skip to content

Commit 4515f3a

Browse files
update changelog
1 parent 3a0d4d2 commit 4515f3a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## main / unreleased
22

3-
* [CHANGE] Expose metrics_generator.trace_id_label_name to user-configurable overrides API [#5958](https://github.com/grafana/tempo/pull/5958) (@carles-grafana)
3+
* [CHANGE] Expose metrics_generator.trace_id_label_name to user-configurable overrides API [#5972](https://github.com/grafana/tempo/pull/5972) (@carles-grafana)
44
* [CHANGE] Remove remaining aws-sdk-go references and migrate tests to MinIO [#5856](https://github.com/grafana/tempo/pull/5856) (@anglerfishlyy)
55
* [CHANGE] **BREAKING CHANGE** Validate tenant ID in frontend and distributor [#5786](https://github.com/grafana/tempo/pull/5786) (@carles-grafana)
66
* [CHANGE] Remove busybox from Tempo image to make it more minimal and prevent future vulnerabilities [#5717](https://github.com/grafana/tempo/pull/5717) (@carles-grafana)

cmd/tempo/app/overrides_validation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ func (v *overridesValidator) Validate(limits *client.Limits) error {
9292
}
9393

9494
if traceIDLabelName, ok := limits.GetMetricsGenerator().GetTraceIDLabelName(); ok {
95-
if err := validation.ValidateDimensions([]string{traceIDLabelName}, validation.SupportedIntrinsicDimensions, nil, validation.SanitizeLabelName); err != nil {
95+
if err := validation.ValidateTraceIDLabelName(traceIDLabelName); err != nil {
9696
return err
9797
}
9898
}

0 commit comments

Comments
 (0)