Counter

Counter is a very simple plugin that counts how many records it’s getting upon flush time. Plugin output is as follows:

  1. [TIMESTAMP, NUMBER_OF_RECORDS_NOW] (total = RECORDS_SINCE_IT_STARTED)

Getting 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 a data with the following options:

  1. $ fluent-bit -i cpu -o counter

Configuration File

In your main configuration file append the following Input & Output sections:

  1. [INPUT]
  2. Name cpu
  3. Tag cpu
  4. [OUTPUT]
  5. Name counter
  6. Match *

Testing

Once Fluent Bit is running, you will see the reports in the output interface similar to this:

  1. $ bin/fluent-bit -i cpu -o counter -f 1
  2. Fluent Bit v1.x.x
  3. * Copyright (C) 2019-2020 The Fluent Bit Authors
  4. * Copyright (C) 2015-2018 Treasure Data
  5. * Fluent Bit is a CNCF sub-project under the umbrella of Fluentd
  6. * https://fluentbit.io
  7. [2017/07/19 11:19:02] [ info] [engine] started
  8. 1500484743,1 (total = 1)
  9. 1500484744,1 (total = 2)
  10. 1500484745,1 (total = 3)
  11. 1500484746,1 (total = 4)
  12. 1500484747,1 (total = 5)