Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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 @@ -374,6 +374,7 @@ if(FLB_ALL)
# Output plugins
set(FLB_OUT_ES 1)
set(FLB_OUT_FORWARD 1)
set(FLB_OUT_GCS 1)
set(FLB_OUT_GELF 1)
set(FLB_OUT_HTTP 1)
set(FLB_OUT_NATS 1)
Expand Down
1 change: 1 addition & 0 deletions cmake/plugins_options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ DEFINE_OPTION(FLB_OUT_EXIT "Enable Exit output plugin"
DEFINE_OPTION(FLB_OUT_FILE "Enable file output plugin" ON)
DEFINE_OPTION(FLB_OUT_FLOWCOUNTER "Enable flowcount output plugin" ON)
DEFINE_OPTION(FLB_OUT_FORWARD "Enable Forward output plugin" ON)
DEFINE_OPTION(FLB_OUT_GCS "Enable GCS output plugin" ON)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Once ready let's trigger a full package build @cosmo0920

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Yeah, but ok-package-test does not cause any effect for now :(

DEFINE_OPTION(FLB_OUT_GELF "Enable GELF output plugin" ON)
DEFINE_OPTION(FLB_OUT_HTTP "Enable HTTP output plugin" ON)
DEFINE_OPTION(FLB_OUT_INFLUXDB "Enable InfluxDB output plugin" ON)
Expand Down
1 change: 1 addition & 0 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@ REGISTER_OUT_PLUGIN("out_udp")
REGISTER_OUT_PLUGIN("out_td")
REGISTER_OUT_PLUGIN("out_lib")
REGISTER_OUT_PLUGIN("out_flowcounter")
REGISTER_OUT_PLUGIN("out_gcs")
REGISTER_OUT_PLUGIN("out_gelf")
REGISTER_OUT_PLUGIN("out_websocket")
REGISTER_OUT_PLUGIN("out_cloudwatch_logs")
Expand Down
5 changes: 5 additions & 0 deletions plugins/out_gcs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
set(src
gcs.c
gcs_store.c)

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