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

[Oracle] Fixing default values for paths in config template #26276

Merged
merged 2 commits into from
Jun 14, 2021
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 @@ -275,6 +275,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Fix integer overflow in S3 offsets when collecting very large files. {pull}22523[22523]
- Fix CredentialsJSON unpacking for `gcp-pubsub` and `httpjson` inputs. {pull}23277[23277]
- Fix issue with m365_defender, when parsing incidents that has no alerts attached: {pull}25421[25421]
- Fix default config template values for paths on oracle module: {pull}26276[26276]

*Filebeat*

Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1759,7 +1759,7 @@ filebeat.modules:

# Set paths for the log files when file input is used.
# Should only be used together with file input
# var.paths: /home/user/oracleauditlogs/*.aud
#var.paths: ["/home/user/oracleauditlogs/*.aud"]

#------------------------------- Osquery Module -------------------------------
- module: osquery
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/module/oracle/_meta/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

# Set paths for the log files when file input is used.
# Should only be used together with file input
# var.paths: /home/user/oracleauditlogs/*.aud
#var.paths: ["/home/user/oracleauditlogs/*.aud"]
5 changes: 4 additions & 1 deletion x-pack/filebeat/module/oracle/database_audit/manifest.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
module_version: 1.0

var:
- name: paths
default:
- /home/user/oracleauditlogs/*.aud
- name: tags
default: [oracle-database-audit]
- name: input
default: file

ingest_pipeline:
- ingest/pipeline.yml
input: config/config.yml
input: config/config.yml
2 changes: 1 addition & 1 deletion x-pack/filebeat/modules.d/oracle.yml.disabled
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

# Set paths for the log files when file input is used.
# Should only be used together with file input
# var.paths: /home/user/oracleauditlogs/*.aud
#var.paths: ["/home/user/oracleauditlogs/*.aud"]