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: pipeline/outputs/opentelemetry.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,20 @@ Only HTTP endpoints are supported.
56
56
|`match`| Set a tag pattern to match the records that this output should process. Supports exact matches or wildcards (for example '*'). |`default`|
57
57
|`match_regex`| Set a regular expression to match tags for output routing. This allows more flexible matching compared to simple wildcards. |`default`|
58
58
|`metrics_uri`| Specify an optional HTTP URI for the target web server listening for metrics. For example, `/v1/metrics`. |`/`|
59
+
|`net.connect_timeout`| Set maximum time allowed to establish a connection, this time includes the TLS handshake. |`10s`|
60
+
|`net.connect_timeout_log_error`| On connection timeout, specify if it should log an error. When disabled, the timeout is logged as a debug message. |`true`|
61
+
|`net.keepalive_max_recycle`| Set maximum number of times a keepalive connection can be used before it is retried. |`2000`|
59
62
|`net.dns.mode`| Select the primary DNS connection type (TCP or UDP). |_none_|
63
+
|`net.dns.prefer_ipv4`| Select the primary DNS resolver type (LEGACY or ASYNC). |_none_|
64
+
|`net.dns.prefer_ipv6`| Prioritize IPv6 DNS results when trying to establish a connection. |_none_|
65
+
|`net.io_timeout`| Set maximum time a connection can stay idle while assigned. |`0s`|
66
+
|`net.max_worker_connections`| Set the maximum number of active TCP connections that can be used per worker thread. |`0`|
67
+
|`net.proxy_env_ignore`| Ignore the environment variables `HTTP_PROXY`, `HTTPS_PROXY` and `NO_PROXY` when set. |`false`|
68
+
|`net.source_address`| Specify network address to bind for data traffic. |_none_|
69
+
|`net.tcp_keepalive`| Enable or disable Keepalive support. |`off`|
70
+
|`net.tcp_keepalive_time`| Interval between the last data packet sent and the first TCP keepalive probe. |`-1`|
71
+
|`net.tcp_keepalive_interval`| Interval between TCP keepalive probes when no response is received on a keepidle probe. |`-1`|
72
+
|`net.tcp_keepalive_probes`| Number of unacknowledged probes to consider a connection dead. |`-1`|
60
73
|`port`| TCP port of the target HTTP server. |`80`|
61
74
|`profiles_uri`| Specify an optional HTTP URI for the profiles OTel endpoint. |`/v1development/profiles`|
62
75
|`proxy`| Specify an HTTP Proxy. The expected format value is `http://HOST:PORT`. HTTPS isn't supported. It's recommended to configure the [HTTP proxy environment variables](https://docs.fluentbit.io/manual/administration/http-proxy) instead as they support both HTTP and HTTPS. |_none_|
0 commit comments