Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ if(FLB_ALL)
set(FLB_OUT_LIB 1)
set(FLB_OUT_FLOWCOUNTER 1)
set(FLB_OUT_WEBSOCKET 1)
set(FLB_OUT_ARVANCLOUD_CLOUDLOGS 1)
endif()

if(FLB_DEV)
Expand Down
1 change: 1 addition & 0 deletions cmake/plugins_options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,4 @@ DEFINE_OPTION(FLB_OUT_TCP "Enable TCP output plugin"
DEFINE_OPTION(FLB_OUT_UDP "Enable UDP output plugin" ON)
DEFINE_OPTION(FLB_OUT_VIVO_EXPORTER "Enable Vivo exporter output plugin" ON)
DEFINE_OPTION(FLB_OUT_WEBSOCKET "Enable Websocket output plugin" ON)
DEFINE_OPTION(FLB_OUT_ARVANCLOUD_CLOUDLOGS "Enable ArvanCloud CloudLogs output plugin" ON)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will this build for all Linux, macOS and Windows targets with no extra dependencies required?

If it will not build for Windows or macOS then configure the defaults under the cmake/ directory for those targets.

If it needs more build or runtime dependencies then please update the container definitions for both the OSS images under dockerfiles/ and also the package builds under packaging/distros/

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, This plugin will build for all Linux, macOS, and Windows targets with no extra dependencies required.

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_arvancloud_cloudlogs")

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

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