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

Add timeout option to reference configuration #13351

Merged
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 @@ -340,6 +340,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- New options to configure roles and VPC. {pull}11779[11779]
- Export automation templates used to create functions. {pull}11923[11923]
- Configurable Amazon endpoint. {pull}12369[12369]
- Add timeout option to reference configuration. {pull}13351[13351]

*Winlogbeat*

Expand Down
9 changes: 9 additions & 0 deletions x-pack/functionbeat/_meta/beat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down Expand Up @@ -81,6 +84,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down Expand Up @@ -131,6 +137,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down
9 changes: 9 additions & 0 deletions x-pack/functionbeat/functionbeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down Expand Up @@ -81,6 +84,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down Expand Up @@ -131,6 +137,9 @@ functionbeat.provider.aws.functions:
# There is a hard limit of 3008MiB for each function. Default is 128MiB.
#memory_size: 128MiB

# The amount of time the function is allowed to run.
#timeout: 3s

# Execution role of the function.
#role: arn:aws:iam::123456789012:role/MyFunction

Expand Down