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/netflow]: set event normalisation to true #38780

Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Expand Up @@ -99,6 +99,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Add missing provider registration and fix published entity for Active Directory entityanalytics provider. {pull}38645[38645]
- Fix handling of un-parsed JSON in O365 module. {issue}37800[37800] {pull}38709[38709]
- Fix filestream's registry GC: registry entries are now removed from the in-memory and disk store when they're older than the set TTL {issue}36761[36761] {pull}38488[38488]
- Fix indexing failures by re-enabling event normalisation in netflow input. {issue}38703[38703] {pull}38780[38780]

*Heartbeat*

Expand Down
70 changes: 70 additions & 0 deletions filebeat/docs/fields.asciidoc
Expand Up @@ -111136,6 +111136,13 @@ type: keyword

--

*`o365.audit.Activity`*::
+
--
type: keyword

--

*`o365.audit.Actor`*::
+
--
Expand Down Expand Up @@ -111360,6 +111367,13 @@ type: object

--

*`o365.audit.Experience`*::
+
--
type: keyword

--

*`o365.audit.ExtendedProperties.*`*::
+
--
Expand Down Expand Up @@ -111605,13 +111619,41 @@ type: keyword

--

*`o365.audit.ObjectDisplayName`*::
+
--
type: keyword

--

*`o365.audit.ObjectType`*::
+
--
type: keyword

--

*`o365.audit.Operation`*::
+
--
type: keyword

--

*`o365.audit.OperationId`*::
+
--
type: keyword

--

*`o365.audit.OperationProperties`*::
+
--
type: object

--

*`o365.audit.OrganizationId`*::
+
--
Expand Down Expand Up @@ -111661,6 +111703,13 @@ type: keyword

--

*`o365.audit.RequestId`*::
+
--
type: keyword

--

*`o365.audit.ResultStatus`*::
+
--
Expand Down Expand Up @@ -111801,6 +111850,13 @@ type: keyword

--

*`o365.audit.Timestamp`*::
+
--
type: keyword

--

*`o365.audit.UniqueSharingId`*::
+
--
Expand Down Expand Up @@ -111857,6 +111913,20 @@ type: keyword

--

*`o365.audit.WorkspaceId`*::
+
--
type: keyword

--

*`o365.audit.WorkspaceName`*::
+
--
type: keyword

--

*`o365.audit.YammerNetworkId`*::
+
--
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/input/netflow/input.go
Expand Up @@ -118,7 +118,7 @@ func (n *netflowInput) Run(ctx v2.Context, connector beat.PipelineConnector) err
Processing: beat.ProcessingConfig{
// This input only produces events with basic types so normalization
// is not required.
pkoutsovasilis marked this conversation as resolved.
Show resolved Hide resolved
EventNormalization: boolPtr(false),
EventNormalization: boolPtr(true),
},
CloseRef: ctx.Cancelation,
EventListener: nil,
Expand Down