Skip to content
Merged
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
30 changes: 30 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,23 @@ https://github.com/elastic/beats/compare/v8.16.0\...v8.16.1[View commits]
=== Beats version 8.16.0
https://github.com/elastic/beats/compare/v8.15.4\...v8.16.0[View commits]

==== Known issues

*Filebeat*

- The AWS S3 input polling mode is not working when the S3 bucket is not in the `us-east-1` default region. This also impacts all AWS integrations and any custom AWS log integration which uses the `aws-s3` input polling mode. When using Filebeat, please add a `default_region` configuration with the region of the S3 bucket. For example:
+
["source","yaml"]
----
filebeat.inputs:
- type: aws-s3
enabled: true
credential_profile_name: elastic-observability
default_region: us-east-2
number_of_workers: 5
bucket_arn: 'arn:aws:s3:::test1'
----

==== Breaking changes

*Affecting all Beats*
Expand Down Expand Up @@ -283,6 +300,19 @@ https://github.com/elastic/beats/compare/v8.14.3\...v8.15.0[View commits]
*Filebeat*

- The Azure EventHub input in Filebeat is not found when running on Windows. Please refrain from upgrading to 8.15. See {issue}40608[40608] for details.
- Memory usage is not correctly limited by the number of events actively in the memory queue, but rather the maximum size of the memory queue regardless of usage. {issue}41355[41355]
- The AWS S3 input polling mode is not working when the S3 bucket is not in the `us-east-1` default region. This also impacts all AWS integrations and any custom AWS log integration which uses the `aws-s3` input polling mode. When using Filebeat, please add a `default_region` configuration with the region of the S3 bucket. For example:
+
["source","yaml"]
----
filebeat.inputs:
- type: aws-s3
enabled: true
credential_profile_name: elastic-observability
default_region: us-east-2
number_of_workers: 5
bucket_arn: 'arn:aws:s3:::test1'
----

==== Breaking changes

Expand Down
Loading