mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

Adds base/frameworks/telemetry with wrappers around telemetry.bif and updates telemetry/Manager to support collecting metrics from script land. Add policy/frameworks/telemetry/log for logging of metrics data into a new telemetry.log and telemetry_histogram.log and add into local.zeek by default.
15 lines
312 B
CMake
15 lines
312 B
CMake
include(ZeekSubdir)
|
|
|
|
include_directories(BEFORE
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
set(telemetry_SRCS
|
|
Manager.cc
|
|
)
|
|
|
|
bif_target(telemetry.bif)
|
|
|
|
bro_add_subdir_library(telemetry ${telemetry_SRCS})
|
|
add_dependencies(bro_telemetry generate_outputs)
|