File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,9 @@ endmacro()
245245# Custom Plugins
246246REGISTER_CUSTOM_PLUGIN("custom_calyptia" )
247247
248- REGISTER_IN_PLUGIN("in_blob" )
248+ if (FLB_SQLDB)
249+ REGISTER_IN_PLUGIN("in_blob" )
250+ endif ()
249251
250252# These plugins works only on Linux
251253if (${CMAKE_SYSTEM_NAME} MATCHES "Linux" )
@@ -351,7 +353,11 @@ REGISTER_PROCESSOR_PLUGIN("processor_sql")
351353# OUTPUTS
352354# =======
353355REGISTER_OUT_PLUGIN("out_azure" )
354- REGISTER_OUT_PLUGIN("out_azure_blob" )
356+
357+ if (FLB_SQLDB)
358+ REGISTER_OUT_PLUGIN("out_azure_blob" )
359+ endif ()
360+
355361REGISTER_OUT_PLUGIN("out_azure_logs_ingestion" )
356362REGISTER_OUT_PLUGIN("out_azure_kusto" )
357363REGISTER_OUT_PLUGIN("out_bigquery" )
@@ -415,7 +421,11 @@ endif()
415421# =======
416422REGISTER_FILTER_PLUGIN("filter_alter_size" )
417423REGISTER_FILTER_PLUGIN("filter_aws" )
418- REGISTER_FILTER_PLUGIN("filter_checklist" )
424+
425+ if (FLB_SQLDB)
426+ REGISTER_FILTER_PLUGIN("filter_checklist" )
427+ endif ()
428+
419429REGISTER_FILTER_PLUGIN("filter_ecs" )
420430REGISTER_FILTER_PLUGIN("filter_record_modifier" )
421431REGISTER_FILTER_PLUGIN("filter_sysinfo" )
You can’t perform that action at this time.
0 commit comments