From 5da14042f70711ea5cf66e034699730335462f66 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 14:08:03 +0200 Subject: Merging upstream version 1.45.3+dfsg. Signed-off-by: Daniel Baumann --- src/fluent-bit/conf/out_td.conf | 65 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/fluent-bit/conf/out_td.conf (limited to 'src/fluent-bit/conf/out_td.conf') diff --git a/src/fluent-bit/conf/out_td.conf b/src/fluent-bit/conf/out_td.conf new file mode 100644 index 000000000..ab7bdfa6d --- /dev/null +++ b/src/fluent-bit/conf/out_td.conf @@ -0,0 +1,65 @@ +[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 cpu + Tag cpu + +# TreasureData Output +# =================== +# This configuration file specify the information to be used +# when flushing information to TreasureData.com service. All +# key fields in the 'TD' section are mandatory. +[OUTPUT] + Name td + Match * + + # API + # === + # The TreasureData API key. To obtain this please log into your + # TreasureData Console: + # + # 1. Go to https://console.treasuredata.com/ + # 2. API Keys box: copy the API key hash + API 5a00/e75beccae41e9f83dfa1wa35ddfbb0dcd8a8d980 + + # Database + # ======== + # Specify the name of your database, it must exists. + Database fluentbit + + # Table + # ===== + # Specify the database table name where the records will be stored + Table cpu_samples -- cgit v1.2.3