mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[stable/fluent-bit] Added input.tail.exclude_path parameter (#22392)
Signed-off-by: Ivan Kurnosov <zerkms@zerkms.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
apiVersion: v1
|
||||
name: fluent-bit
|
||||
version: 2.8.17
|
||||
version: 2.9.0
|
||||
appVersion: 1.3.7
|
||||
description: Fast and Lightweight Log/Data Forwarder for Linux, BSD and OSX
|
||||
keywords:
|
||||
|
||||
@@ -137,6 +137,7 @@ The following table lists the configurable parameters of the Fluent-Bit chart an
|
||||
| `input.tail.ignore_older` | Ignores files that have been last modified before this time in seconds. Supports m,h,d (minutes, hours,days) syntax. | `` |
|
||||
| `input.tail.dockerMode` | Recombine split Docker log lines before passing them to the parser. | `false` |
|
||||
| `input.tail.dockerModeFlush` | Wait period time in seconds to flush queued unfinished split lines in docker mode. | `4` |
|
||||
| `input.tail.exclude_path` | Exclude paths from tail input (`Exclude_Path` configuration parameter). | `` |
|
||||
| `input.systemd.enabled` | [Enable systemd input](https://docs.fluentbit.io/manual/input/systemd) | `false` |
|
||||
| `input.systemd.filters.systemdUnit` | Please see https://docs.fluentbit.io/manual/input/systemd | `[docker.service, kubelet.service`, `node-problem-detector.service]` |
|
||||
| `input.systemd.maxEntries` | Please see https://docs.fluentbit.io/manual/input/systemd | `1000` |
|
||||
|
||||
@@ -45,6 +45,9 @@ data:
|
||||
Docker_Mode On
|
||||
Docker_Mode_Flush {{ .Values.input.tail.dockerModeFlush }}
|
||||
{{- end }}
|
||||
{{- if .Values.input.tail.exclude_path }}
|
||||
Exclude_Path {{ .Values.input.tail.exclude_path }}
|
||||
{{- end }}
|
||||
{{- if .Values.input.systemd.enabled }}
|
||||
[INPUT]
|
||||
Name systemd
|
||||
|
||||
@@ -250,6 +250,7 @@ input:
|
||||
ignore_older: ""
|
||||
dockerMode: false
|
||||
dockerModeFlush: 4
|
||||
exclude_path: ""
|
||||
systemd:
|
||||
enabled: false
|
||||
filters:
|
||||
|
||||
Reference in New Issue
Block a user