Skip to content
Open
Show file tree
Hide file tree
Changes from 31 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
4106485
feat: add doris out plugin
joker-star-l Oct 22, 2024
ee44b6d
feat: add unit test
joker-star-l Oct 22, 2024
b272f12
feat: support http redirect
joker-star-l Oct 23, 2024
988e277
feat: add doris build config
joker-star-l Oct 23, 2024
7f975f0
feat: add more doris config
joker-star-l Oct 30, 2024
25803ab
add label config
joker-star-l Oct 30, 2024
a47fcf4
fix: unit test
joker-star-l Oct 30, 2024
4cde159
fix: mem leak
joker-star-l Oct 30, 2024
6ba9192
fix: typo
joker-star-l Oct 30, 2024
78a3dd0
fix: only calculate speed when interval > 0
joker-star-l Oct 31, 2024
f28355b
fix: windows atomic
joker-star-l Nov 2, 2024
4b0a19f
refactor: atomic add
joker-star-l Nov 6, 2024
9188197
fix: max host length
joker-star-l Mar 26, 2025
e99f72a
add: support json lines
yunsur Oct 23, 2025
72afb62
default format json_lines (#2)
yunsur Oct 30, 2025
8832f64
refactor: default json line
joker-star-l Oct 30, 2025
d1491d8
refactor: label
joker-star-l Oct 30, 2025
67e850a
fix: typo
joker-star-l Oct 30, 2025
d0516b3
fix: parse response
joker-star-l Oct 31, 2025
ada01de
feat: add config endpoint_type
joker-star-l Oct 31, 2025
b1b0635
fix: reporter
joker-star-l Nov 3, 2025
600e596
refactor: test
joker-star-l Nov 3, 2025
2ff7c87
feat: doris be connection pool
joker-star-l Nov 3, 2025
2cc15ae
chore
joker-star-l Nov 3, 2025
a4871c7
chore
joker-star-l Nov 3, 2025
94b88be
fix: volatile to atomic
joker-star-l Nov 3, 2025
73a291c
fix: volatile
joker-star-l Nov 3, 2025
6bb142f
fix: visibility
joker-star-l Nov 3, 2025
7246ce5
refactor
joker-star-l Nov 3, 2025
257dee0
fix: http_put
joker-star-l Nov 3, 2025
7b2d9ef
refactor: global be pool -> tls be pool
joker-star-l Nov 4, 2025
9ff1399
fix: FLB_TLS_INIT(doris_be_pool)
joker-star-l Nov 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cmake/plugins_options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ DEFINE_OPTION(FLB_OUT_CHRONICLE "Enable Google Chronicle output pl
DEFINE_OPTION(FLB_OUT_CLOUDWATCH_LOGS "Enable AWS CloudWatch output plugin" ON)
DEFINE_OPTION(FLB_OUT_COUNTER "Enable Counter output plugin" ON)
DEFINE_OPTION(FLB_OUT_DATADOG "Enable DataDog output plugin" ON)
DEFINE_OPTION(FLB_OUT_DORIS "Enable Apache Doris output plugin" ON)
DEFINE_OPTION(FLB_OUT_ES "Enable Elasticsearch output plugin" ON)
DEFINE_OPTION(FLB_OUT_EXIT "Enable Exit output plugin" ON)
DEFINE_OPTION(FLB_OUT_FILE "Enable file output plugin" ON)
Expand Down
1 change: 1 addition & 0 deletions cmake/windows-setup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ if(FLB_WINDOWS_DEFAULTS)
set(FLB_OUT_COUNTER Yes)
set(FLB_OUT_CHRONICLE Yes)
set(FLB_OUT_DATADOG Yes)
set(FLB_OUT_DORIS Yes)
set(FLB_OUT_ES Yes)
set(FLB_OUT_EXIT No)
set(FLB_OUT_FORWARD Yes)
Expand Down
1 change: 1 addition & 0 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ REGISTER_OUT_PLUGIN("out_prometheus_remote_write")
REGISTER_OUT_PLUGIN("out_s3")
REGISTER_OUT_PLUGIN("out_vivo_exporter")
REGISTER_OUT_PLUGIN("out_chronicle")
REGISTER_OUT_PLUGIN("out_doris")

if(FLB_ZIG)
REGISTER_OUT_PLUGIN("out_zig_demo" "zig")
Expand Down
6 changes: 6 additions & 0 deletions plugins/out_doris/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(src
doris.c
doris_conf.c
)

FLB_PLUGIN(out_doris "${src}" "")
Loading
Loading