Flow counter
The Flow counter output plugin lets you count up records and their size.
Configuration parameters
The plugin supports the following configuration parameters:
Key
Description
Default
Unit
The unit of duration. Allowed values: second
, minute
, hour
, day
minute
Get started
You can run the plugin from the command line or through the configuration file.
Command line
From the command line you can let Fluent Bit count up data with the following options:
fluent-bit -i cpu -o flowcounter
Configuration file
In your main configuration file append the following:
pipeline:
inputs:
- name: cpu
tag: cpu
outputs:
- name: flowcounter
match: '*'
unit: second
Testing
When Fluent Bit is running, you will see the reports in the output interface similar to this:
...
[out_flowcounter] cpu.0:[1482458540, {"counts":60, "bytes":7560, "counts/minute":1, "bytes/minute":126 }]
...
Last updated
Was this helpful?