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 cmake/plugins_options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ DEFINE_OPTION(FLB_FILTER_GEOIP2 "Enable geoip2 filter"
DEFINE_OPTION(FLB_FILTER_GREP "Enable grep filter" ON)
DEFINE_OPTION(FLB_FILTER_KUBERNETES "Enable kubernetes filter" ON)
DEFINE_OPTION(FLB_FILTER_LOG_TO_METRICS "Enable log-derived metrics filter" ON)
DEFINE_OPTION(FLB_FILTER_LOOKUP "Enable lookup filter" ON)
DEFINE_OPTION(FLB_FILTER_LUA "Enable Lua scripting filter" ON)
DEFINE_OPTION(FLB_FILTER_MODIFY "Enable modify filter" ON)
DEFINE_OPTION(FLB_FILTER_MULTILINE "Enable multiline filter" ON)
Expand Down
1 change: 1 addition & 0 deletions plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,7 @@ REGISTER_FILTER_PLUGIN("filter_alter_size")
REGISTER_FILTER_PLUGIN("filter_aws")
REGISTER_FILTER_PLUGIN("filter_checklist")
REGISTER_FILTER_PLUGIN("filter_ecs")
REGISTER_FILTER_PLUGIN("filter_lookup")
REGISTER_FILTER_PLUGIN("filter_record_modifier")
REGISTER_FILTER_PLUGIN("filter_sysinfo")
REGISTER_FILTER_PLUGIN("filter_throttle")
Expand Down
4 changes: 4 additions & 0 deletions plugins/filter_lookup/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
set(src
lookup.c)

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