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][azure-blob-storage] - Cleaned up documentation errors & fixed a minor bug. #36714

Merged
merged 2 commits into from
Oct 2, 2023
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-developer.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ The list below covers the major changes between 7.0.0-rc2 and main only.
- Fixed some race conditions in tests {pull}36185[36185]
- Re-enable HTTPJSON fixed flakey test. {issue}34929[34929] {pull}36525[36525]
- Make winlogbeat/sys/wineventlog follow the unsafe.Pointer rules. {pull}36650[36650]
- Cleaned up documentation errors & fixed a minor bug in Filebeat Azure blob storage input. {pull}36714[36714]

==== Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ filebeat.inputs:
containers:
- name: container_1
file_selectors:
- regex: '/CloudTrail/'
- regex: '/Monitoring/'
- regex: 'docs/'
- regex: '/Security-Logs/'
----
Expand Down
1 change: 1 addition & 0 deletions x-pack/filebeat/input/azureblobstorage/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ func (j *job) readJsonAndPublish(ctx context.Context, r io.Reader, id string) er
if err := j.splitEventList(j.src.ExpandEventListFromField, item, offset, j.hash, id); err != nil {
return err
}
continue
bhapas marked this conversation as resolved.
Show resolved Hide resolved
}

data, err := item.MarshalJSON()
Expand Down
Loading