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:
230
+
231
+
```yaml
232
+
pipeline:
233
+
inputs:
234
+
- name: dummy
235
+
dummy: "{ \"message\" : \"this is dummy data\" }"
236
+
outputs:
237
+
- name: es
238
+
match: *
239
+
index: fluent-bit
240
+
type: my_type
241
+
upstream: ./fluent-bit.yaml
242
+
upstream_servers:
243
+
- name: es-balancing
244
+
nodes:
245
+
- name: node-1
246
+
host: localhost
247
+
port: 9201
248
+
- name: node-2
249
+
host: localhost
250
+
port: 9202
251
+
- name: node-3
252
+
host: localhost
253
+
port: 9203
254
+
```
255
+
206
256
## Elasticsearch field names
207
257
208
258
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