Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/fluent-bit] Added input.tail.exclude_path parameter (#22392)
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Kurnosov <zerkms@zerkms.com>
  • Loading branch information
zerkms committed Jul 10, 2020
1 parent 0a23538 commit c556d78
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion stable/fluent-bit/Chart.yaml
@@ -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:
Expand Down
1 change: 1 addition & 0 deletions stable/fluent-bit/README.md
Expand Up @@ -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` |
Expand Down
3 changes: 3 additions & 0 deletions stable/fluent-bit/templates/config.yaml
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions stable/fluent-bit/values.yaml
Expand Up @@ -250,6 +250,7 @@ input:
ignore_older: ""
dockerMode: false
dockerModeFlush: 4
exclude_path: ""
systemd:
enabled: false
filters:
Expand Down

0 comments on commit c556d78

Please sign in to comment.