diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 93832b8a1876..09aceb3d12d3 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -123,6 +123,11 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix metrics hints builder to avoid wrong container metadata usage when port is not exposed {pull}18979[18979] - Server-side TLS config now validates certificate and key are both specified {pull}19584[19584] - Fix index template loading when the new index format is selected. {issue}22482[22482] {pull}22682[22682] +- Fix terminating pod autodiscover issue. {pull}20084[20084] +- Fix seccomp policy for calls to `chmod` and `chown`. {pull}20054[20054] +- Remove unnecessary restarts of metricsets while using Node autodiscover {pull}19974[19974] +- Output errors when Kibana index pattern setup fails. {pull}20121[20121] +- Log debug message if the Kibana dashboard can not be imported from the archive because of the invalid archive directory structure {issue}12211[12211], {pull}13387[13387] *Auditbeat* diff --git a/libbeat/dashboards/importer.go b/libbeat/dashboards/importer.go index 178a58372842..ab05736cc19e 100644 --- a/libbeat/dashboards/importer.go +++ b/libbeat/dashboards/importer.go @@ -241,6 +241,8 @@ func (imp Importer) ImportArchive() error { if err != nil { return err } + } else { + imp.loader.statusMsg("Skipping import of %s directory. Beat name: %s, base dir name: %s.", dir, imp.cfg.Beat, filepath.Base(dir)) } } return nil