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: README.md
+12-5Lines changed: 12 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,8 @@ Forward is the protocol used by Fluentd to route message between peers.
22
22
23
23
| Property | Default value | Type | Description |
24
24
|---|---|---|---|
25
-
| endpoint || string |**MANDATORY** Target URL to send `Forward` log streams to |
25
+
| endpoint.tcp_addr || string |**MANDATORY** Target URL to send `Forward` log streams to |
26
+
| endpoint.validate_tcp_resolution | false | bool | Controls whether to validate the tcp address and fail at startup. |
26
27
| connection_timeout | 30s | time.Duration | Maximum amount of time a dial will wait for a connect to complete |
27
28
| tls.insecure | true | bool | If set to **true**, the connexion is not secured with TLS. |
28
29
| tls.insecure_skip_verify | false | bool | Controls whether the exporter verifies the server's certificate chain and host name. If **true**, any certificate is accepted and any host name. This mode is susceptible to man-in-the-middle attacks |
@@ -34,6 +35,8 @@ Forward is the protocol used by Fluentd to route message between peers.
34
35
| tag | "tag" | string | Fluentd tag is a string separated by '.'s (e.g. myapp.access), and is used as the directions for Fluentd's internal routing engine |
35
36
| compress_gzip | false | bool | Transparent data compression. You can use this feature to reduce the transferred payload size |
36
37
| default_labels_enabled | true | map[string]bool | If omitted then default labels will be added. If one of the labels is omitted then this label will be added |
38
+
| kubernetes_metadata.key || string | KubernetesMetadata includes kubernetes metadata as a nested object. It leverages resources attributes provided by k8sattributesprocessor |
39
+
| kubernetes_metadata.include_pod_labels || bool | Whether pod labels should be added to the nested object |
37
40
38
41
See the default values in the method `createDefaultConfig()` in [factory.go](factory.go) file.
39
42
@@ -42,7 +45,8 @@ Example, for `default_labels_enabled` that will add only the `time` attribute in
42
45
```yaml
43
46
exporters:
44
47
fluentforward:
45
-
endpoint: a.new.fluentforward.target:24224
48
+
endpoint:
49
+
tcp_addr: a.new.fluentforward.target:24224
46
50
connection_timeout: 10s
47
51
require_ack: true
48
52
tag: nginx
@@ -59,7 +63,8 @@ Example with TLS enabled and shared key:
59
63
```yaml
60
64
exporters:
61
65
fluentforward:
62
-
endpoint: a.new.fluentforward.target:24224
66
+
endpoint:
67
+
tcp_addr: a.new.fluentforward.target:24224
63
68
connection_timeout: 10s
64
69
tls:
65
70
insecure: false
@@ -71,7 +76,8 @@ Example with mutual TLS authentication (mTLS):
0 commit comments