mirror of
https://github.com/openappsec/openappsec.git
synced 2025-06-28 16:41:02 +03:00
* fix IPv6 masking * Prometheus support (#316) * Add prometheus support * Add prometheus support * Add prometheus support * Add prometheus support * Add prometheus support --------- Co-authored-by: avigailo <avigailo@checkpoint.com> * Fix Watchdog restarts (#319) * don't exit * fix restarting agent * fix watchdog restarts * Waf tag (#317) * add waf-tag to openappsec * fix waf tag to openappsec --------- Co-authored-by: wiaamm <wiaamm@checkpoint.com> --------- Co-authored-by: Wills Ward <wward@warddevelopment.com> Co-authored-by: orianelou <126462046+orianelou@users.noreply.github.com> Co-authored-by: avigailo <avigailo@checkpoint.com> Co-authored-by: wiaam96 <142393189+wiaam96@users.noreply.github.com> Co-authored-by: wiaamm <wiaamm@checkpoint.com>
31 lines
639 B
CMake
Executable File
31 lines
639 B
CMake
Executable File
add_subdirectory(package)
|
|
|
|
add_executable(prometheus main.cc)
|
|
|
|
target_link_libraries(prometheus
|
|
-Wl,--start-group
|
|
${COMMON_LIBRARIES}
|
|
|
|
generic_rulebase
|
|
generic_rulebase_evaluators
|
|
ip_utilities
|
|
version
|
|
signal_handler
|
|
|
|
prometheus_comp
|
|
http_transaction_data
|
|
-Wl,--end-group
|
|
)
|
|
|
|
add_dependencies(prometheus ngen_core)
|
|
|
|
install(TARGETS prometheus DESTINATION bin)
|
|
install(TARGETS prometheus DESTINATION prometheus_service/bin)
|
|
|
|
gen_package(
|
|
install-cp-nano-service-prometheus.sh
|
|
prometheus_service
|
|
./install-cp-nano-prometheus.sh
|
|
Check Point Prometheus Agent Version ${PACKAGE_VERSION} Install Package
|
|
)
|