Skip to content

Commit

Permalink
set debug metrics to default for interval processor (#2227)
Browse files Browse the repository at this point in the history
  • Loading branch information
wildum authored Dec 6, 2024
1 parent 9b2e3c8 commit a93f950
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ Main (unreleased)

- Fixed an issue in the `prometheus.operator.servicemonitors`, `prometheus.operator.podmonitors` and `prometheus.operator.probes` to support capitalized actions. (@QuentinBisson)

- Fixed an issue where the `otelcol.processor.interval` could not be used because the debug metrics were not set to default. (@wildum)

### Other changes

- Change the stability of the `livedebugging` feature from "experimental" to "generally available". (@wildum)
Expand Down
1 change: 1 addition & 0 deletions internal/component/otelcol/processor/interval/interval.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ var DefaultArguments = Arguments{
// SetToDefault implements syntax.Defaulter.
func (args *Arguments) SetToDefault() {
*args = DefaultArguments
args.DebugMetrics.SetToDefault()
}

// Validate implements syntax.Validator.
Expand Down

0 comments on commit a93f950

Please sign in to comment.