From be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Fri, 19 Apr 2024 04:57:58 +0200 Subject: Adding upstream version 1.44.3. Signed-off-by: Daniel Baumann --- fluent-bit/conf/in_proc.conf | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 fluent-bit/conf/in_proc.conf (limited to 'fluent-bit/conf/in_proc.conf') diff --git a/fluent-bit/conf/in_proc.conf b/fluent-bit/conf/in_proc.conf new file mode 100644 index 00000000..f1d742d0 --- /dev/null +++ b/fluent-bit/conf/in_proc.conf @@ -0,0 +1,74 @@ +[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 + +# Head Input +# ========== +[INPUT] + Name proc + Tag process.fluent-bit + + # Proc_Name + # ==== + # Process Name. e.g. sshd + # + Proc_Name fluent-bit + + + # Alert + # ==== + # if true, flush records when process doesn't work + # Default : false + Alert false + + # Mem + # ==== + # if true, reports memory usage of the process. + # Default : true + Alert false + + # Total Interval + # = Interval Sec + ( Interval Nsec / 1000 / 1000 / 1000 ) + # + # Interval Sec + # ==== + # Read interval (sec) Default :1 + Interval_Sec 1 + + # Interval NSec + # ==== + # Read interval (nsec) Default :0 + Interval_NSec 0 + +[OUTPUT] + Name stdout + Match process.* -- cgit v1.2.3