summaryrefslogtreecommitdiffstats
path: root/fluent-bit/conf/out_flowcounter.conf
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/conf/out_flowcounter.conf')
-rw-r--r--fluent-bit/conf/out_flowcounter.conf39
1 files changed, 39 insertions, 0 deletions
diff --git a/fluent-bit/conf/out_flowcounter.conf b/fluent-bit/conf/out_flowcounter.conf
new file mode 100644
index 00000000..717688fb
--- /dev/null
+++ b/fluent-bit/conf/out_flowcounter.conf
@@ -0,0 +1,39 @@
+[SERVICE]
+ # Flush
+ # =====
+ # Set an interval of seconds before to flush records to a destination
+ Flush 1
+
+ # Log_Level
+ # =========
+ # Set the verbosity level of the service, values can be:
+ #
+ # - error
+ # - warning
+ # - info
+ # - debug
+ # - trace
+ #
+ # By default 'info' is set, that means it includes 'error' and 'warning'.
+ Log_Level info
+
+[INPUT]
+ Name random
+ Tag flowcounter_test
+
+# To count records.
+[OUTPUT]
+ Name flowcounter
+
+ # Unit
+ # ====
+ # Unit of measurement.
+ # second/minute/hour/day Default: minute
+ Unit second
+
+ Match flowcounter_test
+
+# To display records.
+[OUTPUT]
+ Name stdout
+ Match flowcounter_test