Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[filebeat][etw] Make ETW input GA #41389

Merged
merged 2 commits into from
Oct 24, 2024
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 @@ -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*

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
Loading