You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/config.md
+41Lines changed: 41 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -531,6 +531,47 @@ nav_order: 2
531
531
|default|The default event transport for new subscriptions|`string`|`<nil>`
532
532
|enabled|Which event interface plugins are enabled|`boolean`|`<nil>`
533
533
534
+
## events.webhooks
535
+
536
+
|Key|Description|Type|Default Value|
537
+
|---|-----------|----|-------------|
538
+
|connectionTimeout|The maximum amount of time that a connection is allowed to remain with no data transmitted|[`time.Duration`](https://pkg.go.dev/time#Duration)|`30s`
539
+
|expectContinueTimeout|See [ExpectContinueTimeout in the Go docs](https://pkg.go.dev/net/http#Transport)|[`time.Duration`](https://pkg.go.dev/time#Duration)|`1s`
540
+
|headers|Adds custom headers to HTTP requests|`map[string]string`|`<nil>`
541
+
|idleTimeout|The max duration to hold a HTTP keepalive connection between calls|[`time.Duration`](https://pkg.go.dev/time#Duration)|`475ms`
542
+
|maxIdleConns|The max number of idle connections to hold pooled|`int`|`100`
543
+
|requestTimeout|The maximum amount of time that a request is allowed to remain open|[`time.Duration`](https://pkg.go.dev/time#Duration)|`30s`
544
+
|tlsHandshakeTimeout|The maximum amount of time to wait for a successful TLS handshake|[`time.Duration`](https://pkg.go.dev/time#Duration)|`10s`
545
+
546
+
## events.webhooks.auth
547
+
548
+
|Key|Description|Type|Default Value|
549
+
|---|-----------|----|-------------|
550
+
|password|Password|`string`|`<nil>`
551
+
|username|Username|`string`|`<nil>`
552
+
553
+
## events.webhooks.proxy
554
+
555
+
|Key|Description|Type|Default Value|
556
+
|---|-----------|----|-------------|
557
+
|url|Optional HTTP proxy server to connect through|`string`|`<nil>`
558
+
559
+
## events.webhooks.retry
560
+
561
+
|Key|Description|Type|Default Value|
562
+
|---|-----------|----|-------------|
563
+
|count|The maximum number of times to retry|`int`|`5`
0 commit comments