Skip to content

Commit

Permalink
[netflow] Restore netflow input on Windows (#39024)
Browse files Browse the repository at this point in the history
- In 8.13, the netflow was accidentally removed from the list of inputs
for Windows. This restores netflow as an input under Windows.

(cherry picked from commit 5e16f25)
  • Loading branch information
taylor-swanson authored and mergify[bot] committed Apr 22, 2024
1 parent a96d26b commit d32cb6d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.next.asciidoc
Expand Up @@ -135,6 +135,8 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- entity-analytics input: Improve structured logging. {pull}38990[38990]
- Fix config validation for CEL and HTTPJSON inputs when using password grant authentication and `client.id` or `client.secret` are not present. {pull}38962[38962]
- Updated Websocket input title to align with existing inputs {pull}39006[39006]
- Restore netflow input on Windows {pull}39024[39024]
- Upgrade azure-event-hubs-go and azure-storage-blob-go dependencies. {pull}38861[38861]

*Heartbeat*

Expand Down
2 changes: 2 additions & 0 deletions x-pack/filebeat/input/default-inputs/inputs_windows.go
Expand Up @@ -21,6 +21,7 @@ import (
"github.com/elastic/beats/v7/x-pack/filebeat/input/http_endpoint"
"github.com/elastic/beats/v7/x-pack/filebeat/input/httpjson"
"github.com/elastic/beats/v7/x-pack/filebeat/input/lumberjack"
"github.com/elastic/beats/v7/x-pack/filebeat/input/netflow"
"github.com/elastic/beats/v7/x-pack/filebeat/input/o365audit"
"github.com/elastic/beats/v7/x-pack/filebeat/input/shipper"
"github.com/elastic/elastic-agent-libs/logp"
Expand All @@ -41,5 +42,6 @@ func xpackInputs(info beat.Info, log *logp.Logger, store beater.StateStore) []v2
lumberjack.Plugin(),
shipper.Plugin(log, store),
etw.Plugin(),
netflow.Plugin(log),
}
}

0 comments on commit d32cb6d

Please sign in to comment.