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
If Upstream Servers configuration uses YAML format, then it can be placed in the same file as main configuration (e.g. in fluent-bit.yaml), like:
225
+
226
+
```yaml
227
+
pipeline:
228
+
inputs:
229
+
- name: dummy
230
+
dummy: "{ \"message\" : \"this is dummy data\" }"
231
+
outputs:
232
+
- name: es
233
+
match: *
234
+
index: fluent-bit
235
+
type: my_type
236
+
upstream: ./fluent-bit.yaml
237
+
upstream_servers:
238
+
- name: es-balancing
239
+
nodes:
240
+
- name: node-1
241
+
host: localhost
242
+
port: 9201
243
+
- name: node-2
244
+
host: localhost
245
+
port: 9202
246
+
- name: node-3
247
+
host: localhost
248
+
port: 9203
249
+
```
250
+
201
251
## Elasticsearch field names
202
252
203
253
Some input plugins can generate messages where the field names contains dots (`.`). For Elasticsearch 2.0, this isn't allowed. The current `es` plugin replaces a dot with an underscore (`_`):
0 commit comments