diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index e09440c6f6c2..033ae02040d8 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -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* @@ -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