From 05a88cf09d8b670c1c58ef4466aa29dc839f001c Mon Sep 17 00:00:00 2001 From: Dan Kortschak <90160302+efd6@users.noreply.github.com> Date: Sat, 7 Oct 2023 08:39:18 +1030 Subject: [PATCH] filebeat/cmd: import cache processor (#36786) --- CHANGELOG.next.asciidoc | 1 + filebeat/cmd/root.go | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 611e25584d3..6932839c03f 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -233,6 +233,7 @@ is collected by it. - Added support for new features and removed partial save mechanism in the GCS input. {issue}35847[35847] {pull}36713[36713] - Re-use buffers to optimise memory allocation in fingerprint mode of filestream {pull}36736[36736] - Allow http_endpoint input to receive PUT and PATCH requests. {pull}36734[36734] +- Add cache processor. {pull}36786[36786] *Auditbeat* diff --git a/filebeat/cmd/root.go b/filebeat/cmd/root.go index 2831a10bd64..20e76e748f5 100644 --- a/filebeat/cmd/root.go +++ b/filebeat/cmd/root.go @@ -28,6 +28,7 @@ import ( "github.com/elastic/beats/v7/libbeat/cmd/instance" // Import processors. + _ "github.com/elastic/beats/v7/libbeat/processors/cache" _ "github.com/elastic/beats/v7/libbeat/processors/timestamp" )