diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:57:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 02:57:58 +0000 |
commit | be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch) | |
tree | 9754ff1ca740f6346cf8483ec915d4054bc5da2d /fluent-bit/conf/in_forward.conf | |
parent | Initial commit. (diff) | |
download | netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.tar.xz netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.zip |
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fluent-bit/conf/in_forward.conf')
-rw-r--r-- | fluent-bit/conf/in_forward.conf | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/fluent-bit/conf/in_forward.conf b/fluent-bit/conf/in_forward.conf new file mode 100644 index 00000000..2b40f256 --- /dev/null +++ b/fluent-bit/conf/in_forward.conf @@ -0,0 +1,51 @@ +[SERVICE] + # Flush + # ===== + # Set an interval of seconds before to flush records to a destination + Flush 5 + + # Daemon + # ====== + # Instruct Fluent Bit to run in foreground or background mode. + Daemon Off + + # 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 + + # HTTP Monitoring Server + # ====================== + # + # HTTP_Monitor: enable/disable the HTTP Server to monitor + # Fluent Bit internals. + # HTTP_Port : specify the TCP port of the HTTP Server + HTTP_Monitor Off + HTTP_Port 2020 + +[INPUT] + Name forward + + # The Listen interface, by default we listen on all of them + Listen 0.0.0.0 + + # Default TCP listener port + Port 24224 + + # Buffer (Kilobytes) + # ------------------ + # Specify the size of the receiver buffer. Incoming records + # must be inside this limit. By default 512KB. + Buffer 512000 + +[OUTPUT] + Name stdout + Match ** |