Skip to content

Commit

Permalink
Enable Salesforce Filebeat Input for Windows and AIX (elastic#41664)
Browse files Browse the repository at this point in the history
  • Loading branch information
shmsr authored Nov 18, 2024
1 parent 821697d commit 65a0c47
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ https://github.com/elastic/beats/compare/v8.8.1\...main[Check the HEAD diff]
- Journald input now can read events from all boots {issue}41083[41083] {pull}41244[41244]
- Fix double encoding of client_secret in the Entity Analytics input's Azure Active Directory provider {pull}41393[41393]
- Fix aws region in aws-s3 input s3 polling mode. {pull}41572[41572]
- Fix the "No such input type exist: 'salesforce'" error on the Windows/AIX platform. {pull}41664[41664]

*Heartbeat*

Expand Down
2 changes: 2 additions & 0 deletions x-pack/filebeat/input/default-inputs/inputs_aix.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"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/o365audit"
"github.com/elastic/beats/v7/x-pack/filebeat/input/salesforce"
"github.com/elastic/elastic-agent-libs/logp"
)

Expand All @@ -25,5 +26,6 @@ func xpackInputs(info beat.Info, log *logp.Logger, store beater.StateStore) []v2
o365audit.Plugin(log, store),
awss3.Plugin(store),
lumberjack.Plugin(),
salesforce.Plugin(log, store),
}
}
2 changes: 2 additions & 0 deletions x-pack/filebeat/input/default-inputs/inputs_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ import (
"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/salesforce"
"github.com/elastic/elastic-agent-libs/logp"
)

Expand All @@ -44,6 +45,7 @@ func xpackInputs(info beat.Info, log *logp.Logger, store beater.StateStore) []v2
lumberjack.Plugin(),
etw.Plugin(),
netflow.Plugin(log),
salesforce.Plugin(log, store),
benchmark.Plugin(),
}
}

0 comments on commit 65a0c47

Please sign in to comment.