Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,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*

Expand Down
2 changes: 0 additions & 2 deletions x-pack/filebeat/docs/inputs/input-etw.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<titleabbrev>ETW</titleabbrev>
++++

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
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/input/etw/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
Expand Down