diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 6aff5931495..85ad451b015 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -126,6 +126,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - Prevent panic if libbeat processors are loaded more than once. {issue}41475[41475] {pull}41857[51857] - Allow network condition to handle field values that are arrays of IP addresses. {pull}41918[41918] - Fix a bug where log files are rotated on startup when interval is configured and rotateonstartup is disabled {issue}41894[41894] {pull}41895[41895] +- Fix setting unique registry for non beat receivers {issue}42288[42288] {pull}42292[42292] *Auditbeat* diff --git a/libbeat/cmd/instance/beat.go b/libbeat/cmd/instance/beat.go index 6941c571216..1d135ce5652 100644 --- a/libbeat/cmd/instance/beat.go +++ b/libbeat/cmd/instance/beat.go @@ -1142,6 +1142,8 @@ func (b *Beat) configure(settings Settings) error { debug.SetGCPercent(gcPercent) } + b.Info.Monitoring.Namespace = monitoring.GetNamespace("dataset") + b.Beat.BeatConfig, err = b.BeatConfig() if err != nil { return err