File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 18
18
emitterType : {{ .Values.fluentbit.filter.multiline.emitterType }}
19
19
flushMs : {{ .Values.fluentbit.filter.multiline.flushMs }}
20
20
parser : " {{- join " ," .Values.fluentbit.filter.multiline.parsers -}}"
21
+ {{- if .Values.fluentbit.filter.multiline.mode }}
22
+ mode : {{ .Values.fluentbit.filter.multiline.mode }}
23
+ {{- end }}
24
+ {{- if .Values.fluentbit.filter.multiline.emitterName }}
25
+ emitterName : {{ .Values.fluentbit.filter.multiline.emitterName }}
26
+ {{- end }}
21
27
{{- end }}
22
28
{{- end }}
23
29
{{- end }}
Original file line number Diff line number Diff line change @@ -388,6 +388,10 @@ fluentbit:
388
388
emitterMemBufLimit : 120
389
389
emitterType : memory
390
390
flushMs : 2000
391
+ # Optional: mode can be either "parser" or "partial_message"
392
+ # mode: parser
393
+ # Optional: Name for the emitter input instance which re-emits the completed records at the beginning of the pipeline.
394
+ # emitterName: my-emitter
391
395
parsers :
392
396
- go
393
397
- python
You can’t perform that action at this time.
0 commit comments