From bfbdbe35b190b6ba77e4de1a57f2620463596fc4 Mon Sep 17 00:00:00 2001 From: davidlion Date: Thu, 4 Jul 2024 14:06:08 -0400 Subject: [PATCH] Add newline after and before heading in readme. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 5f94b75..344991c 100644 --- a/README.md +++ b/README.md @@ -30,17 +30,23 @@ flowchart LR ``` #### Fluent Bit Input + Fluent Bit can collect application logs from >40 different [sources][2]. Common sources include tailing log files and other Fluent Bit instances. + #### CLP Output Plugin + Output plugin recieves logs from Fluent Bit and parses them into [CLP IR][1]. CLP IR consists of a timestamp, a list of variable values, and the log type. IR is then compressed with [Zstd][3] in default mode without dictionaries. + #### Output + Compressed IR output is sent to plugin output (currently only AWS S3 is supported). CLP can directly ingest compressed IR output and convert into archives for efficient storage and search. ### Usage + Each plugin has its own README to help get started. Currently, we only have a [AWS S3 plugin](plugins/out_clp_s3/README.md), but please submit an issue if you need to send IR to another output.