Skip to content

Commit 38bd241

Browse files
josephwoodwardmmatczuk
authored andcommitted
fix: docs
1 parent 982e55d commit 38bd241

24 files changed

+243
-102
lines changed

docs/modules/components/pages/caches/aws_dynamodb.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,6 @@ aws_dynamodb:
4141
table: "" # No default (required)
4242
hash_key: "" # No default (required)
4343
data_key: "" # No default (required)
44-
tcp:
45-
keep_alive:
46-
idle: 15s
47-
interval: 15s
48-
count: 9
49-
tcp_user_timeout: 0s
5044
```
5145
5246
--
@@ -71,6 +65,7 @@ aws_dynamodb:
7165
region: "" # No default (optional)
7266
endpoint: "" # No default (optional)
7367
tcp:
68+
connect_timeout: 0s
7469
keep_alive:
7570
idle: 15s
7671
interval: 15s
@@ -228,6 +223,15 @@ TCP socket configuration.
228223
*Type*: `object`
229224
230225
226+
=== `tcp.connect_timeout`
227+
228+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
229+
230+
231+
*Type*: `string`
232+
233+
*Default*: `"0s"`
234+
231235
=== `tcp.keep_alive`
232236
233237
TCP keep-alive probe configuration.

docs/modules/components/pages/caches/aws_s3.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ label: ""
3939
aws_s3:
4040
bucket: "" # No default (required)
4141
content_type: application/octet-stream
42-
tcp:
43-
keep_alive:
44-
idle: 15s
45-
interval: 15s
46-
count: 9
47-
tcp_user_timeout: 0s
4842
```
4943
5044
--
@@ -66,6 +60,7 @@ aws_s3:
6660
region: "" # No default (optional)
6761
endpoint: "" # No default (optional)
6862
tcp:
63+
connect_timeout: 0s
6964
keep_alive:
7065
idle: 15s
7166
interval: 15s
@@ -197,6 +192,15 @@ TCP socket configuration.
197192
*Type*: `object`
198193
199194
195+
=== `tcp.connect_timeout`
196+
197+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
198+
199+
200+
*Type*: `string`
201+
202+
*Default*: `"0s"`
203+
200204
=== `tcp.keep_alive`
201205
202206
TCP keep-alive probe configuration.

docs/modules/components/pages/caches/redpanda.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,15 @@ TCP socket configuration.
394394
*Type*: `object`
395395
396396
397+
=== `sasl[].aws.tcp.connect_timeout`
398+
399+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
400+
401+
402+
*Type*: `string`
403+
404+
*Default*: `"0s"`
405+
397406
=== `sasl[].aws.tcp.keep_alive`
398407
399408
TCP keep-alive probe configuration.

docs/modules/components/pages/inputs/aws_kinesis.adoc

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,23 +43,11 @@ input:
4343
dynamodb:
4444
table: ""
4545
create: false
46-
tcp:
47-
keep_alive:
48-
idle: 15s
49-
interval: 15s
50-
count: 9
51-
tcp_user_timeout: 0s
5246
checkpoint_limit: 1024
5347
auto_replay_nacks: true
5448
commit_period: 5s
5549
steal_grace_period: 2s
5650
start_from_oldest: true
57-
tcp:
58-
keep_alive:
59-
idle: 15s
60-
interval: 15s
61-
count: 9
62-
tcp_user_timeout: 0s
6351
batching:
6452
count: 0
6553
byte_size: 0
@@ -87,6 +75,7 @@ input:
8775
region: "" # No default (optional)
8876
endpoint: "" # No default (optional)
8977
tcp:
78+
connect_timeout: 0s
9079
keep_alive:
9180
idle: 15s
9281
interval: 15s
@@ -110,6 +99,7 @@ input:
11099
region: "" # No default (optional)
111100
endpoint: "" # No default (optional)
112101
tcp:
102+
connect_timeout: 0s
113103
keep_alive:
114104
idle: 15s
115105
interval: 15s
@@ -251,6 +241,15 @@ TCP socket configuration.
251241
*Type*: `object`
252242
253243
244+
=== `dynamodb.tcp.connect_timeout`
245+
246+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
247+
248+
249+
*Type*: `string`
250+
251+
*Default*: `"0s"`
252+
254253
=== `dynamodb.tcp.keep_alive`
255254
256255
TCP keep-alive probe configuration.
@@ -452,6 +451,15 @@ TCP socket configuration.
452451
*Type*: `object`
453452
454453
454+
=== `tcp.connect_timeout`
455+
456+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
457+
458+
459+
*Type*: `string`
460+
461+
*Default*: `"0s"`
462+
455463
=== `tcp.keep_alive`
456464
457465
TCP keep-alive probe configuration.

docs/modules/components/pages/inputs/aws_s3.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ input:
3939
aws_s3:
4040
bucket: ""
4141
prefix: ""
42-
tcp:
43-
keep_alive:
44-
idle: 15s
45-
interval: 15s
46-
count: 9
47-
tcp_user_timeout: 0s
4842
scanner:
4943
to_the_end: {}
5044
sqs:
@@ -69,6 +63,7 @@ input:
6963
region: "" # No default (optional)
7064
endpoint: "" # No default (optional)
7165
tcp:
66+
connect_timeout: 0s
7267
keep_alive:
7368
idle: 15s
7469
interval: 15s
@@ -177,6 +172,15 @@ TCP socket configuration.
177172
*Type*: `object`
178173
179174
175+
=== `tcp.connect_timeout`
176+
177+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
178+
179+
180+
*Type*: `string`
181+
182+
*Default*: `"0s"`
183+
180184
=== `tcp.keep_alive`
181185
182186
TCP keep-alive probe configuration.

docs/modules/components/pages/inputs/aws_sqs.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,6 @@ input:
3939
aws_sqs:
4040
url: "" # No default (required)
4141
max_outstanding_messages: 1000
42-
tcp:
43-
keep_alive:
44-
idle: 15s
45-
interval: 15s
46-
count: 9
47-
tcp_user_timeout: 0s
4842
```
4943
5044
--
@@ -67,6 +61,7 @@ input:
6761
region: "" # No default (optional)
6862
endpoint: "" # No default (optional)
6963
tcp:
64+
connect_timeout: 0s
7065
keep_alive:
7166
idle: 15s
7267
interval: 15s
@@ -193,6 +188,15 @@ TCP socket configuration.
193188
*Type*: `object`
194189
195190
191+
=== `tcp.connect_timeout`
192+
193+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
194+
195+
196+
*Type*: `string`
197+
198+
*Default*: `"0s"`
199+
196200
=== `tcp.keep_alive`
197201
198202
TCP keep-alive probe configuration.

docs/modules/components/pages/inputs/redpanda.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,15 @@ TCP socket configuration.
473473
*Type*: `object`
474474
475475
476+
=== `sasl[].aws.tcp.connect_timeout`
477+
478+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
479+
480+
481+
*Type*: `string`
482+
483+
*Default*: `"0s"`
484+
476485
=== `sasl[].aws.tcp.keep_alive`
477486
478487
TCP keep-alive probe configuration.

docs/modules/components/pages/inputs/redpanda_migrator.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,15 @@ TCP socket configuration.
458458
*Type*: `object`
459459
460460
461+
=== `sasl[].aws.tcp.connect_timeout`
462+
463+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
464+
465+
466+
*Type*: `string`
467+
468+
*Default*: `"0s"`
469+
461470
=== `sasl[].aws.tcp.keep_alive`
462471
463472
TCP keep-alive probe configuration.

docs/modules/components/pages/metrics/aws_cloudwatch.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,6 @@ Common::
3838
metrics:
3939
aws_cloudwatch:
4040
namespace: Benthos
41-
tcp:
42-
keep_alive:
43-
idle: 15s
44-
interval: 15s
45-
count: 9
46-
tcp_user_timeout: 0s
4741
mapping: ""
4842
```
4943
@@ -61,6 +55,7 @@ metrics:
6155
region: "" # No default (optional)
6256
endpoint: "" # No default (optional)
6357
tcp:
58+
connect_timeout: 0s
6459
keep_alive:
6560
idle: 15s
6661
interval: 15s
@@ -144,6 +139,15 @@ TCP socket configuration.
144139
*Type*: `object`
145140
146141
142+
=== `tcp.connect_timeout`
143+
144+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
145+
146+
147+
*Type*: `string`
148+
149+
*Default*: `"0s"`
150+
147151
=== `tcp.keep_alive`
148152
149153
TCP keep-alive probe configuration.

docs/modules/components/pages/outputs/aws_dynamodb.adoc

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,6 @@ output:
4848
byte_size: 0
4949
period: ""
5050
check: ""
51-
tcp:
52-
keep_alive:
53-
idle: 15s
54-
interval: 15s
55-
count: 9
56-
tcp_user_timeout: 0s
5751
```
5852
5953
--
@@ -81,6 +75,7 @@ output:
8175
region: "" # No default (optional)
8276
endpoint: "" # No default (optional)
8377
tcp:
78+
connect_timeout: 0s
8479
keep_alive:
8580
idle: 15s
8681
interval: 15s
@@ -345,6 +340,15 @@ TCP socket configuration.
345340
*Type*: `object`
346341
347342
343+
=== `tcp.connect_timeout`
344+
345+
Maximum amount of time a dial will wait for a connect to complete. Zero disables.
346+
347+
348+
*Type*: `string`
349+
350+
*Default*: `"0s"`
351+
348352
=== `tcp.keep_alive`
349353
350354
TCP keep-alive probe configuration.

0 commit comments

Comments
 (0)