From 35fbdaab7063b23ee8771b231397bc0866e39739 Mon Sep 17 00:00:00 2001 From: Marc Guasch Date: Wed, 23 Oct 2024 00:09:04 -0700 Subject: [PATCH] Make ETW input GA --- CHANGELOG.next.asciidoc | 1 + x-pack/filebeat/docs/inputs/input-etw.asciidoc | 2 -- x-pack/filebeat/input/etw/input.go | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index 9dd77328747e..f8c15f9ec39b 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -322,6 +322,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff] - System module now supports reading from jounrald. {pull}41061[41061] - Add support to include AWS cloudwatch linked accounts when using log_group_name_prefix to define log group names. {pull}41206[41206] - Improved Azure Blob Storage input documentation. {pull}41252[41252] +- Make ETW input GA. {pull}41389[41389] *Auditbeat* diff --git a/x-pack/filebeat/docs/inputs/input-etw.asciidoc b/x-pack/filebeat/docs/inputs/input-etw.asciidoc index c072542cf5a6..dcfd4732c26d 100644 --- a/x-pack/filebeat/docs/inputs/input-etw.asciidoc +++ b/x-pack/filebeat/docs/inputs/input-etw.asciidoc @@ -9,8 +9,6 @@ ETW ++++ -beta[] - https://learn.microsoft.com/en-us/windows/win32/etw/event-tracing-portal[Event Tracing for Windows] is a powerful logging and tracing mechanism built into the Windows operating system. It provides a detailed view of application and system diff --git a/x-pack/filebeat/input/etw/input.go b/x-pack/filebeat/input/etw/input.go index f030ada04e06..b41e7347a3eb 100644 --- a/x-pack/filebeat/input/etw/input.go +++ b/x-pack/filebeat/input/etw/input.go @@ -79,7 +79,7 @@ type etwInput struct { func Plugin() input.Plugin { return input.Plugin{ Name: inputName, - Stability: feature.Beta, + Stability: feature.Stable, Info: "Collect ETW logs.", Manager: stateless.NewInputManager(configure), }