From 17bcaa33947af3ad996686c0282b5a83728ff010 Mon Sep 17 00:00:00 2001 From: lecaros Date: Thu, 17 Mar 2022 17:24:54 -0300 Subject: [PATCH] administration: configuration: change inputs, outputs and filters format Signed-off-by: lecaros --- .../configuring-fluent-bit/yaml/configuration-file.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/administration/configuring-fluent-bit/yaml/configuration-file.md b/administration/configuring-fluent-bit/yaml/configuration-file.md index 25d6a3596..2d9d78385 100644 --- a/administration/configuring-fluent-bit/yaml/configuration-file.md +++ b/administration/configuring-fluent-bit/yaml/configuration-file.md @@ -96,7 +96,7 @@ The following is an example of an _input_ section for the _cpu_ plugin. ```yaml pipeline: inputs: - cpu: + - cpu: tag: my_cpu ``` @@ -119,7 +119,7 @@ The following is an example of a _filter_ section for the grep plugin: ```yaml pipeline: filters: - grep: + - grep: match: * regex: log aa ``` @@ -141,7 +141,7 @@ The following is an example of an _output_ section: ```yaml pipeline: outputs: - stdout: + - stdout: match: my*cpu ``` @@ -157,9 +157,9 @@ service: pipeline: inputs: - cpu: + - cpu: tag: my_cpu outputs: - stdout: + - stdout: match: my*cpu ```