Skip to content

Commit 61e832c

Browse files
authored
aws: firewall_logs - add max_number_of_messages config (#2790)
Add configuration for max_number_of_messages to the aws.firewall_logs S3 input.
1 parent 99ce3f1 commit 61e832c

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

packages/aws/changelog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# newer versions go on top
2-
- version: "1.13.2"
2+
- version: "1.14.0"
33
changes:
4-
- description: Fix timestamp parsing in waf data stream.
5-
type: bugfix
6-
link: https://github.com/elastic/integrations/pull/2856
4+
- description: Add configuration for max_number_of_messages to the aws.firewall_logs S3 input.
5+
type: enhancement
6+
link: https://github.com/elastic/integrations/pull/
77
- version: "1.13.1"
88
changes:
99
- description: Fix metricbeat- reference in dashboard

packages/aws/data_stream/firewall_logs/agent/stream/aws-s3.yml.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ visibility_timeout: {{visibility_timeout}}
1111
{{#if api_timeout}}
1212
api_timeout: {{api_timeout}}
1313
{{/if}}
14+
{{#if max_number_of_messages}}
15+
max_number_of_messages: {{max_number_of_messages}}
16+
{{/if}}
1417
{{#if endpoint}}
1518
endpoint: {{endpoint}}
1619
{{/if}}

packages/aws/data_stream/firewall_logs/manifest.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ streams:
6161
type: bool
6262
multi: false
6363
default: false
64+
- name: max_number_of_messages
65+
type: integer
66+
title: Maximum Concurrent SQS Messages
67+
description: The maximum number of SQS messages that can be inflight at any time.
68+
default: 5
69+
required: false
70+
show_user: false
6471
- input: aws-cloudwatch
6572
template_path: aws-cloudwatch.yml.hbs
6673
title: AWS ELB Logs via CloudWatch

packages/aws/manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
format_version: 1.0.0
22
name: aws
33
title: AWS
4-
version: 1.13.2
4+
version: 1.14.0
55
license: basic
66
description: Collect logs and metrics from Amazon Web Services with Elastic Agent.
77
type: integration

0 commit comments

Comments
 (0)