Skip to content

Commit

Permalink
Run make docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffail committed Oct 25, 2024
1 parent 1af86da commit abb649d
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/modules/components/pages/inputs/http_client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ input:
retry_period: 1s
max_retry_backoff: 300s
retries: 3
follow_redirects: true
backoff_on:
- 429
drop_on: []
Expand Down Expand Up @@ -777,6 +778,15 @@ The maximum number of retry attempts to make.
*Default*: `3`
=== `follow_redirects`
Whether or not to transparently follow redirects, i.e. responses with 300-399 status codes. If disabled, the response message will contain the body, status, and headers from the redirect response and the processor will not make a request to the URL set in the Location header of the response.
*Type*: `bool`
*Default*: `true`
=== `backoff_on`
A list of status codes whereby the request should be considered to have failed and retries should be attempted, but the period between them should be increased gradually.
Expand Down
10 changes: 10 additions & 0 deletions docs/modules/components/pages/outputs/http_client.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ output:
retry_period: 1s
max_retry_backoff: 300s
retries: 3
follow_redirects: true
backoff_on:
- 429
drop_on: []
Expand Down Expand Up @@ -749,6 +750,15 @@ The maximum number of retry attempts to make.
*Default*: `3`
=== `follow_redirects`
Whether or not to transparently follow redirects, i.e. responses with 300-399 status codes. If disabled, the response message will contain the body, status, and headers from the redirect response and the processor will not make a request to the URL set in the Location header of the response.
*Type*: `bool`
*Default*: `true`
=== `backoff_on`
A list of status codes whereby the request should be considered to have failed and retries should be attempted, but the period between them should be increased gradually.
Expand Down
10 changes: 10 additions & 0 deletions docs/modules/components/pages/processors/http.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ http:
retry_period: 1s
max_retry_backoff: 300s
retries: 3
follow_redirects: true
backoff_on:
- 429
drop_on: []
Expand Down Expand Up @@ -769,6 +770,15 @@ The maximum number of retry attempts to make.
*Default*: `3`
=== `follow_redirects`
Whether or not to transparently follow redirects, i.e. responses with 300-399 status codes. If disabled, the response message will contain the body, status, and headers from the redirect response and the processor will not make a request to the URL set in the Location header of the response.
*Type*: `bool`
*Default*: `true`
=== `backoff_on`
A list of status codes whereby the request should be considered to have failed and retries should be attempted, but the period between them should be increased gradually.
Expand Down

0 comments on commit abb649d

Please sign in to comment.