Skip to content

Pipeline: filters: standard output: style #1698

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions pipeline/filters/standard-output.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# Standard Output
# Standard output

The stdout filter plugin allows printing to the standard output the data flowed through the filter plugin, which can be very useful while debugging.
The standard output filter allows printing the data flowing through the filter plugin to `stdout`, which can be used while debugging.

The plugin has no configuration parameters, is very simple to use.
The plugin has no configuration parameters.

## Command Line
## Command line

```text
$ fluent-bit -i cpu -F stdout -m '*' -o null
Use the following command from the command line:

```shell
fluent-bit -i cpu -F stdout -m '*' -o null
```

We have specified to gather [CPU](../inputs/cpu-metrics.md) usage metrics and print them out in a human-readable way when they flow through the stdout plugin.
Fluent Bit specifies gathering [CPU](../inputs/cpu-metrics.md) usage metrics and prints them out in a human-readable way when they flow through the stdout plugin.

```text
Fluent Bit v1.x.x
Expand All @@ -33,4 +35,3 @@ Fluent Bit v1.x.x
[2021/06/04 14:54:04] [ warn] [engine] service will stop in 5 seconds
[2021/06/04 14:54:08] [ info] [engine] service stopped
```