Skip to content

Commit

Permalink
[libbeat] Add script processor to all beats (#29752)
Browse files Browse the repository at this point in the history
Co-authored-by: Noémi Ványi <[email protected]>
  • Loading branch information
legoguy1000 and kvch authored Jan 28, 2022
1 parent 457b0bb commit 0444537
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Add FIPS configuration option for all AWS API calls. {pull}28899[28899]
- Add `default_region` config to AWS common module. {pull}29415[29415]
- Add support for latest k8s versions v1.23 and v1.22 {pull}29575[29575]
- Add `script` processor to all beats {issue}29269[29269] {pull}29752[29752]
- Only connect to Elasticsearch instances with the same version or newer. {pull}29683[29683]
- Move umask from code to service files. {pull}29708[29708]

Expand Down
1 change: 0 additions & 1 deletion filebeat/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ import (
"github.com/elastic/beats/v7/libbeat/cmd/instance"

// Import processors.
_ "github.com/elastic/beats/v7/libbeat/processors/script"
_ "github.com/elastic/beats/v7/libbeat/processors/timestamp"
)

Expand Down
1 change: 0 additions & 1 deletion heartbeat/beater/heartbeat.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import (
"github.com/elastic/beats/v7/libbeat/management"

_ "github.com/elastic/beats/v7/heartbeat/security"
_ "github.com/elastic/beats/v7/libbeat/processors/script"
)

// Heartbeat represents the root datastructure of this beat.
Expand Down
1 change: 1 addition & 0 deletions libbeat/cmd/instance/imports_common.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ import (
_ "github.com/elastic/beats/v7/libbeat/processors/fingerprint"
_ "github.com/elastic/beats/v7/libbeat/processors/ratelimit"
_ "github.com/elastic/beats/v7/libbeat/processors/registered_domain"
_ "github.com/elastic/beats/v7/libbeat/processors/script"
_ "github.com/elastic/beats/v7/libbeat/processors/translate_sid"
_ "github.com/elastic/beats/v7/libbeat/processors/urldecode"
_ "github.com/elastic/beats/v7/libbeat/publisher/includes" // Register publisher pipeline modules
Expand Down
3 changes: 0 additions & 3 deletions metricbeat/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ import (
// import modules
_ "github.com/elastic/beats/v7/metricbeat/include"
_ "github.com/elastic/beats/v7/metricbeat/include/fields"

// Import processors.
_ "github.com/elastic/beats/v7/libbeat/processors/script"
)

const (
Expand Down
1 change: 0 additions & 1 deletion winlogbeat/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
_ "github.com/elastic/beats/v7/winlogbeat/include"

// Import processors and supporting modules.
_ "github.com/elastic/beats/v7/libbeat/processors/script"
_ "github.com/elastic/beats/v7/libbeat/processors/timestamp"
)

Expand Down

0 comments on commit 0444537

Please sign in to comment.