Skip to content

Commit

Permalink
out_chronicle: Implement Google Chronicle output plugin (fluent#7232)
Browse files Browse the repository at this point in the history
For the first revision, we'll provide log_key and one-by-one line JSON version
like as out_loki plugin.

---------

Signed-off-by: Hiroshi Hatake <[email protected]>
  • Loading branch information
cosmo0920 authored Jul 12, 2023
1 parent 0b3294c commit 52969be
Show file tree
Hide file tree
Showing 8 changed files with 1,517 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,7 @@ option(FLB_OUT_PROMETHEUS_REMOTE_WRITE "Enable Prometheus remote write plugin"
option(FLB_OUT_S3 "Enable AWS S3 output plugin" Yes)
option(FLB_OUT_VIVO_EXPORTER "Enabel Vivo exporter output plugin" Yes)
option(FLB_OUT_WEBSOCKET "Enable Websocket output plugin" Yes)
option(FLB_OUT_CHRONICLE "Enable Google Chronicle output plugin" Yes)
option(FLB_FILTER_ALTER_SIZE "Enable alter_size filter" Yes)
option(FLB_FILTER_AWS "Enable aws filter" Yes)
option(FLB_FILTER_ECS "Enable AWS ECS filter" Yes)
Expand Down
1 change: 1 addition & 0 deletions cmake/windows-setup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ if(FLB_WINDOWS_DEFAULTS)
set(FLB_OUT_AZURE_KUSTO Yes)
set(FLB_OUT_BIGQUERY No)
set(FLB_OUT_COUNTER Yes)
set(FLB_OUT_CHRONICLE Yes)
set(FLB_OUT_DATADOG Yes)
set(FLB_OUT_ES Yes)
set(FLB_OUT_EXIT No)
Expand Down
1 change: 1 addition & 0 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ REGISTER_OUT_PLUGIN("out_prometheus_exporter")
REGISTER_OUT_PLUGIN("out_prometheus_remote_write")
REGISTER_OUT_PLUGIN("out_s3")
REGISTER_OUT_PLUGIN("out_vivo_exporter")
REGISTER_OUT_PLUGIN("out_chronicle")

# FILTERS
# =======
Expand Down
6 changes: 6 additions & 0 deletions plugins/out_chronicle/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(src
chronicle_conf.c
chronicle.c
)

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

0 comments on commit 52969be

Please sign in to comment.