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