diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 93f6610f2dc..9b403d381e6 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -94,6 +94,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d - Fix discovery of Nomad allocations with multiple events during startup. {pull}28700[28700] - Allows disable pod events enrichment with deployment name {pull}28521[28521] - Fix `fingerprint` processor to give it access to the `@timestamp` field. {issue}28683[28683] +- Allow `clone3` syscall in seccomp filters. {pull}28117[28117] - Fix the wrong beat name on monitoring and state endpoint {issue}27755[27755] - Skip configuration checks in autodiscover for configurations that are already running {pull}29048[29048] - Fix `decode_json_processor` to always respect `add_error_key` {pull}29107[29107] diff --git a/libbeat/common/seccomp/policy_linux_386.go b/libbeat/common/seccomp/policy_linux_386.go index 796b071a104..40b49113b73 100644 --- a/libbeat/common/seccomp/policy_linux_386.go +++ b/libbeat/common/seccomp/policy_linux_386.go @@ -35,6 +35,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "dup", "dup2", diff --git a/libbeat/common/seccomp/policy_linux_amd64.go b/libbeat/common/seccomp/policy_linux_amd64.go index 4246e6a1a51..6096b37bb32 100644 --- a/libbeat/common/seccomp/policy_linux_amd64.go +++ b/libbeat/common/seccomp/policy_linux_amd64.go @@ -38,6 +38,7 @@ func init() { "chown", "clock_gettime", "clone", + "clone3", "close", "connect", "dup",