diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:15:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-26 08:15:35 +0000 |
commit | f09848204fa5283d21ea43e262ee41aa578e1808 (patch) | |
tree | c62385d7adf209fa6a798635954d887f718fb3fb /CMakeLists.txt | |
parent | Releasing debian version 1.46.3-2. (diff) | |
download | netdata-f09848204fa5283d21ea43e262ee41aa578e1808.tar.xz netdata-f09848204fa5283d21ea43e262ee41aa578e1808.zip |
Merging upstream version 1.47.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 462 |
1 files changed, 217 insertions, 245 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e8b7c4a37..3b13664e1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ # SPDX-License-Identifier: GPL-3.0-or-later -cmake_minimum_required(VERSION 3.13.0...3.28) +cmake_minimum_required(VERSION 3.16.0...3.30) list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/packaging/cmake/Modules") @@ -90,27 +90,34 @@ set(OS_FREEBSD False) set(OS_LINUX False) set(OS_MACOS False) set(OS_WINDOWS False) -set(ALLOW_PLATFORM_SENSITIVE_OPTIONS True) + +set(NETDATA_RUNTIME_PREFIX "${CMAKE_INSTALL_PREFIX}") +set(BINDIR usr/sbin) if("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin") set(OS_MACOS True) find_library(IOKIT IOKit) find_library(FOUNDATION Foundation) - message(INFO " Compiling for MacOS... ") + message(STATUS " Compiling for MacOS... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "FreeBSD") set(OS_FREEBSD True) - message(INFO " Compiling for FreeBSD... ") + message(STATUS " Compiling for FreeBSD... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "Linux") set(OS_LINUX True) add_definitions(-D_GNU_SOURCE) - message(INFO " Compiling for Linux... ") - include(NetdataUtil) - netdata_identify_libc(LIBC_IMPLEMENTATION) - if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND LIBC_IMPLEMENTATION STREQUAL "musl") - set(ALLOW_PLATFORM_SENSITIVE_OPTIONS False) - endif() + message(STATUS " Compiling for Linux... ") elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "CYGWIN" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "MSYS" OR "${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") set(OS_WINDOWS True) + + if(NOT "${CMAKE_INSTALL_PREFIX}" STREQUAL "/opt/netdata") + message(FATAL_ERROR "CMAKE_INSTALL_PREFIX must be set to /opt/netdata, but it is set to ${CMAKE_INSTALL_PREFIX}") + endif() + + if(BUILD_FOR_PACKAGING) + set(NETDATA_RUNTIME_PREFIX "/") + endif() + + set(BINDIR usr/bin) add_definitions(-D_GNU_SOURCE) if($ENV{CLION_IDE}) @@ -127,13 +134,15 @@ elseif("${CMAKE_SYSTEM_NAME}" STREQUAL "CYGWIN" OR "${CMAKE_SYSTEM_NAME}" STREQU endif() endif() - message(INFO " Compiling for Windows (${CMAKE_SYSTEM_NAME}, MSYSTEM=$ENV{MSYSTEM})... ") + message(STATUS " Compiling for Windows (${CMAKE_SYSTEM_NAME}, MSYSTEM=$ENV{MSYSTEM})... ") else() message(FATAL_ERROR "Unknown/unsupported platform: ${CMAKE_SYSTEM_NAME} (Supported platforms: FreeBSD, Linux, macOS, Windows)") endif() # This is intended to make life easier for developers who are working on one # specific feature. +# +# NOTE: DO NOT USE THIS OPTION FOR PRODUCTION BUILDS. option(DEFAULT_FEATURE_STATE "Specify the default state for most optional features" True) mark_as_advanced(DEFAULT_FEATURE_STATE) @@ -144,10 +153,10 @@ option(ENABLE_ML "Enable machine learning features" ${DEFAULT_FEATURE_STATE}) option(ENABLE_DBENGINE "Enable dbengine metrics storage" True) # Data collection plugins -option(ENABLE_PLUGIN_APPS "Enable per-process resource usage monitoring" ${DEFAULT_FEATURE_STATE}) option(ENABLE_PLUGIN_GO "Enable metric collectors written in Go" ${DEFAULT_FEATURE_STATE}) -cmake_dependent_option(ENABLE_PLUGIN_CUPS "Enable CUPS monitoring" ${DEFAULT_FEATURE_STATE} "OS_LINUX OR OS_FREEBSD OR OS_MACOS" False) +cmake_dependent_option(ENABLE_PLUGIN_APPS "Enable per-process resource usage monitoring" ${DEFAULT_FEATURE_STATE} "NOT OS_WINDOWS" False) +cmake_dependent_option(ENABLE_PLUGIN_CUPS "Enable CUPS monitoring" ${DEFAULT_FEATURE_STATE} "NOT OS_WINDOWS" False) cmake_dependent_option(ENABLE_PLUGIN_FREEIPMI "Enable IPMI monitoring" ${DEFAULT_FEATURE_STATE} "OS_LINUX OR OS_FREEBSD" False) @@ -157,7 +166,6 @@ cmake_dependent_option(ENABLE_PLUGIN_EBPF "Enable Linux eBPF metric collection" cmake_dependent_option(ENABLE_LEGACY_EBPF_PROGRAMS "Enable eBPF programs for kernels without BTF support" True "ENABLE_PLUGIN_EBPF" False) mark_as_advanced(ENABLE_LEGACY_EBPF_PROGRAMS) cmake_dependent_option(ENABLE_PLUGIN_LOCAL_LISTENERS "Enable local listening socket tracking (including service auto-discovery support)" ${DEFAULT_FEATURE_STATE} "OS_LINUX" False) -cmake_dependent_option(ENABLE_PLUGIN_LOGS_MANAGEMENT "Enable log collection and monitoring based on Fluent Bit" False "OS_LINUX AND ALLOW_PLATFORM_SENSITIVE_OPTIONS" False) cmake_dependent_option(ENABLE_PLUGIN_NETWORK_VIEWER "Enable network viewer functionality" ${DEFAULT_FEATURE_STATE} "OS_LINUX" False) cmake_dependent_option(ENABLE_PLUGIN_NFACCT "Enable Linux NFACCT metric collection" ${DEFAULT_FEATURE_STATE} "OS_LINUX" False) cmake_dependent_option(ENABLE_PLUGIN_PERF "Enable Linux performance counter monitoring" ${DEFAULT_FEATURE_STATE} "OS_LINUX" False) @@ -174,10 +182,6 @@ option(ENABLE_BUNDLED_JSONC "Force use of a vendored copy of JSON-C" False) option(ENABLE_BUNDLED_YAML "Force use of a vendored copy of libyaml" False) option(ENABLE_BUNDLED_PROTOBUF "Use a vendored copy of protobuf" False) -# Optional test code -cmake_dependent_option(ENABLE_LOGS_MANAGEMENT_TESTS "Enable test code for logs-management plugin." True "ENABLE_PLUGIN_LOGS_MANAGEMENT" False) -mark_as_advanced(ENABLE_LOGS_MANAGEMENT_TESTS) - # Experimental features option(ENABLE_WEBRTC "Enable WebRTC dashboard communications (experimental)" False) mark_as_advanced(ENABLE_WEBRTC) @@ -208,6 +212,12 @@ if(ENABLE_PLUGIN_GO) find_package(Go "${MIN_GO_VERSION}" REQUIRED) endif() +if(ENABLE_PLUGIN_GO) + set(NEED_NDSUDO TRUE) +else() + set(NEED_NDSUDO FALSE) +endif() + if(ENABLE_WEBRTC) include(FetchContent) include(NetdataFetchContentExtra) @@ -655,8 +665,6 @@ set(LIBNETDATA_FILES src/libnetdata/os/byteorder.h src/libnetdata/onewayalloc/onewayalloc.c src/libnetdata/onewayalloc/onewayalloc.h - src/libnetdata/popen/popen.c - src/libnetdata/popen/popen.h src/libnetdata/procfile/procfile.c src/libnetdata/procfile/procfile.h src/libnetdata/query_progress/progress.c @@ -707,8 +715,6 @@ set(LIBNETDATA_FILES src/libnetdata/linked-lists.h src/libnetdata/storage-point.h src/libnetdata/bitmap64.h - src/libnetdata/os/waitid.c - src/libnetdata/os/waitid.h src/libnetdata/os/gettid.c src/libnetdata/os/gettid.h src/libnetdata/os/adjtimex.c @@ -725,6 +731,8 @@ set(LIBNETDATA_FILES src/libnetdata/os/os-freebsd-wrappers.h src/libnetdata/os/os-macos-wrappers.c src/libnetdata/os/os-macos-wrappers.h + src/libnetdata/os/os-windows-wrappers.c + src/libnetdata/os/os-windows-wrappers.h src/libnetdata/os/get_system_cpus.c src/libnetdata/os/get_system_cpus.h src/libnetdata/os/tinysleep.c @@ -735,6 +743,14 @@ set(LIBNETDATA_FILES src/libnetdata/os/setenv.h src/libnetdata/os/strndup.c src/libnetdata/os/strndup.h + src/libnetdata/spawn_server/spawn_server.c + src/libnetdata/spawn_server/spawn_server.h + src/libnetdata/spawn_server/spawn_popen.c + src/libnetdata/spawn_server/spawn_popen.h + src/libnetdata/os/close_range.c + src/libnetdata/os/close_range.h + src/libnetdata/os/setproctitle.c + src/libnetdata/os/setproctitle.h ) if(ENABLE_PLUGIN_EBPF) @@ -841,6 +857,8 @@ set(DAEMON_FILES src/daemon/analytics.h src/daemon/main.c src/daemon/main.h + src/daemon/win_system-info.c + src/daemon/win_system-info.h src/daemon/signals.c src/daemon/signals.h src/daemon/service.c @@ -1013,6 +1031,7 @@ set(INTERNAL_COLLECTORS_FILES src/collectors/common-contexts/common-contexts.h src/collectors/common-contexts/disk.io.h src/collectors/common-contexts/system.io.h + src/collectors/common-contexts/system.interrupts.h src/collectors/common-contexts/system.processes.h src/collectors/common-contexts/system.ram.h src/collectors/common-contexts/mem.swap.h @@ -1160,6 +1179,7 @@ set(SYSTEMD_JOURNAL_PLUGIN_FILES src/collectors/systemd-journal.plugin/systemd-journal-dyncfg.c src/libnetdata/maps/system-users.h src/libnetdata/maps/system-groups.h + src/libnetdata/maps/system-services.h ) set(STREAMING_PLUGIN_FILES @@ -1198,13 +1218,6 @@ set(CLAIM_PLUGIN_FILES src/claim/claim.h ) -set(SPAWN_PLUGIN_FILES - src/spawn/spawn.c - src/spawn/spawn_server.c - src/spawn/spawn_client.c - src/spawn/spawn.h -) - set(ACLK_ALWAYS_BUILD src/aclk/aclk_rrdhost_state.h src/aclk/aclk_proxy.c @@ -1281,6 +1294,7 @@ set(WINDOWS_PLUGIN_FILES src/collectors/windows.plugin/perflib-dump.c src/collectors/windows.plugin/perflib-storage.c src/collectors/windows.plugin/perflib-processor.c + src/collectors/windows.plugin/perflib-objects.c src/collectors/windows.plugin/perflib-network.c src/collectors/windows.plugin/perflib-memory.c src/collectors/windows.plugin/perflib-processes.c @@ -1338,44 +1352,6 @@ set(TC_PLUGIN_FILES src/collectors/tc.plugin/plugin_tc.c ) -set(LOGS_MANAGEMENT_PLUGIN_FILES - src/logsmanagement/circular_buffer.c - src/logsmanagement/circular_buffer.h - src/logsmanagement/db_api.c - src/logsmanagement/db_api.h - src/logsmanagement/defaults.h - src/logsmanagement/file_info.h - src/logsmanagement/flb_plugin.c - src/logsmanagement/flb_plugin.h - src/logsmanagement/functions.c - src/logsmanagement/functions.h - src/logsmanagement/helper.h - src/logsmanagement/logsmanag_config.c - src/logsmanagement/logsmanag_config.h - src/logsmanagement/logsmanagement.c - src/logsmanagement/parser.c - src/logsmanagement/parser.h - src/logsmanagement/query.c - src/logsmanagement/query.h - src/logsmanagement/rrd_api/rrd_api_docker_ev.c - src/logsmanagement/rrd_api/rrd_api_docker_ev.h - src/logsmanagement/rrd_api/rrd_api_generic.c - src/logsmanagement/rrd_api/rrd_api_generic.h - src/logsmanagement/rrd_api/rrd_api_kernel.c - src/logsmanagement/rrd_api/rrd_api_kernel.h - src/logsmanagement/rrd_api/rrd_api_mqtt.c - src/logsmanagement/rrd_api/rrd_api_mqtt.h - src/logsmanagement/rrd_api/rrd_api_stats.c - src/logsmanagement/rrd_api/rrd_api_stats.h - src/logsmanagement/rrd_api/rrd_api_systemd.c - src/logsmanagement/rrd_api/rrd_api_systemd.h - src/logsmanagement/rrd_api/rrd_api_web_log.c - src/logsmanagement/rrd_api/rrd_api_web_log.h - src/logsmanagement/rrd_api/rrd_api.h - src/database/sqlite/sqlite3.c - src/database/sqlite/sqlite3.h -) - set(NETDATA_FILES src/collectors/all.h ${DAEMON_FILES} @@ -1391,7 +1367,6 @@ set(NETDATA_FILES ${STREAMING_PLUGIN_FILES} ${WEB_PLUGIN_FILES} ${CLAIM_PLUGIN_FILES} - ${SPAWN_PLUGIN_FILES} ${ACLK_ALWAYS_BUILD} ${PROFILE_PLUGIN_FILES} ) @@ -1429,6 +1404,7 @@ elseif(OS_FREEBSD) elseif(OS_WINDOWS) list(APPEND NETDATA_FILES src/daemon/static_threads_windows.c + src/daemon/winsvc.cc ${WINDOWS_PLUGIN_FILES} ${INTERNAL_COLLECTORS_FILES} ) @@ -1917,45 +1893,6 @@ if(ENABLE_PLUGIN_SLABINFO) endif() endif() -if(ENABLE_PLUGIN_LOGS_MANAGEMENT) - set(ENABLE_LOGSMANAGEMENT True) - - if(ENABLE_LOGS_MANAGEMENT_TESTS) - list(APPEND LOGS_MANAGEMENT_PLUGIN_FILES src/logsmanagement/unit_test/unit_test.c - src/logsmanagement/unit_test/unit_test.h) - set(ENABLE_LOGSMANAGEMENT_TESTS True) - endif() - - add_executable(logs-management.plugin ${LOGS_MANAGEMENT_PLUGIN_FILES}) - target_link_libraries(logs-management.plugin libnetdata) - - install(TARGETS logs-management.plugin - COMPONENT plugin-logs-management - DESTINATION usr/libexec/netdata/plugins.d) - - install(DIRECTORY src/logsmanagement/stock_conf/logsmanagement.d - COMPONENT plugin-logs-management - DESTINATION usr/lib/netdata/conf.d) - - install(DIRECTORY - COMPONENT plugin-logs-management - DESTINATION etc/netdata/logsmanagement.d) - - configure_file(src/logsmanagement/stock_conf/logsmanagement.d.conf.in - src/logsmanagement/stock_conf/logsmanagement.d.conf - @ONLY) - - install(FILES ${CMAKE_BINARY_DIR}/src/logsmanagement/stock_conf/logsmanagement.d.conf - COMPONENT plugin-logs-management - DESTINATION usr/lib/netdata/conf.d) - - if(BUILD_FOR_PACKAGING) - install(FILES - ${PKG_FILES_PATH}/copyright - COMPONENT plugin-logs-management - DESTINATION usr/share/doc/netdata-plugin-logs-management) - endif() -endif() if(ENABLE_PLUGIN_CUPS) pkg_check_modules(CUPS libcups) @@ -1997,13 +1934,15 @@ if(ENABLE_PLUGIN_CUPS) endif() endif() -set(NDSUDO_FILES src/collectors/plugins.d/ndsudo.c) +if(NEED_NDSUDO) + set(NDSUDO_FILES src/collectors/plugins.d/ndsudo.c) -add_executable(ndsudo ${NDSUDO_FILES}) + add_executable(ndsudo ${NDSUDO_FILES}) -install(TARGETS ndsudo - COMPONENT netdata - DESTINATION usr/libexec/netdata/plugins.d) + install(TARGETS ndsudo + COMPONENT netdata + DESTINATION usr/libexec/netdata/plugins.d) +endif() if(ENABLE_PLUGIN_CGROUP_NETWORK) set(CGROUP_NETWORK_FILES src/collectors/cgroups.plugin/cgroup-network.c) @@ -2274,7 +2213,7 @@ target_link_libraries(systemd-cat-native libnetdata) install(TARGETS systemd-cat-native COMPONENT netdata - DESTINATION usr/sbin) + DESTINATION "${BINDIR}") # # build log2journal @@ -2309,7 +2248,7 @@ if(PCRE2_FOUND) install(TARGETS log2journal COMPONENT netdata - DESTINATION usr/sbin) + DESTINATION "${BINDIR}") install(DIRECTORY src/collectors/log2journal/log2journal.d COMPONENT netdata @@ -2332,14 +2271,14 @@ target_link_libraries(netdatacli libnetdata) install(TARGETS netdatacli COMPONENT netdata - DESTINATION usr/sbin) + DESTINATION "${BINDIR}") # # Build go.d.plugin # if(ENABLE_PLUGIN_GO) - add_go_target(go-plugin go.d.plugin src/go/collectors/go.d.plugin cmd/godplugin) + add_go_target(go-plugin go.d.plugin src/go cmd/godplugin) install(PROGRAMS ${CMAKE_BINARY_DIR}/go.d.plugin COMPONENT plugin-go @@ -2349,17 +2288,16 @@ endif() # # Generate config file # - -if(NOT CMAKE_INSTALL_PREFIX STREQUAL "") - string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") +if(NOT NETDATA_RUNTIME_PREFIX STREQUAL "") + string(REGEX REPLACE "/$" "" NETDATA_RUNTIME_PREFIX "${NETDATA_RUNTIME_PREFIX}") endif() -set(CACHE_DIR "${CMAKE_INSTALL_PREFIX}/var/cache/netdata") -set(CONFIG_DIR "${CMAKE_INSTALL_PREFIX}/etc/netdata") -set(LIBCONFIG_DIR "${CMAKE_INSTALL_PREFIX}/usr/lib/netdata/conf.d") -set(LOG_DIR "${CMAKE_INSTALL_PREFIX}/var/log/netdata") -set(PLUGINS_DIR "${CMAKE_INSTALL_PREFIX}/usr/libexec/netdata/plugins.d") -set(VARLIB_DIR "${CMAKE_INSTALL_PREFIX}/var/lib/netdata") +set(CACHE_DIR "${NETDATA_RUNTIME_PREFIX}/var/cache/netdata") +set(CONFIG_DIR "${NETDATA_RUNTIME_PREFIX}/etc/netdata") +set(LIBCONFIG_DIR "${NETDATA_RUNTIME_PREFIX}/usr/lib/netdata/conf.d") +set(LOG_DIR "${NETDATA_RUNTIME_PREFIX}/var/log/netdata") +set(PLUGINS_DIR "${NETDATA_RUNTIME_PREFIX}/usr/libexec/netdata/plugins.d") +set(VARLIB_DIR "${NETDATA_RUNTIME_PREFIX}/var/lib/netdata") # A non-default value is only used when building Debian packages (/var/lib/netdata/www) if(NOT DEFINED WEB_DIR) @@ -2368,7 +2306,7 @@ else() string(REGEX REPLACE "^/" "" WEB_DIR "${WEB_DIR}") endif() set(WEB_DEST "${WEB_DIR}") -set(WEB_DIR "${CMAKE_INSTALL_PREFIX}/${WEB_DEST}") +set(WEB_DIR "${NETDATA_RUNTIME_PREFIX}/${WEB_DEST}") set(CONFIGURE_COMMAND "dummy-configure-command") @@ -2382,7 +2320,7 @@ configure_file(packaging/cmake/config.cmake.h.in config.h) # install # -install(TARGETS netdata COMPONENT netdata DESTINATION usr/sbin) +install(TARGETS netdata COMPONENT netdata DESTINATION "${BINDIR}") install(DIRECTORY COMPONENT netdata DESTINATION var/cache/netdata) install(DIRECTORY COMPONENT netdata DESTINATION var/log/netdata) @@ -2401,15 +2339,15 @@ install(DIRECTORY COMPONENT netdata DESTINATION usr/lib/netdata/conf.d/schema.d) install(DIRECTORY COMPONENT netdata DESTINATION usr/libexec/netdata/plugins.d) install(DIRECTORY COMPONENT netdata DESTINATION ${WEB_DEST}) -set(libsysdir_POST "${CMAKE_INSTALL_PREFIX}/usr/lib/netdata/system") -set(pkglibexecdir_POST "${CMAKE_INSTALL_PREFIX}/usr/libexec/netdata") -set(localstatedir_POST "${CMAKE_INSTALL_PREFIX}/var") -set(sbindir_POST "${CMAKE_INSTALL_PREFIX}/usr/sbin") -set(configdir_POST "${CMAKE_INSTALL_PREFIX}/etc/netdata") -set(libconfigdir_POST "${CMAKE_INSTALL_PREFIX}/usr/lib/netdata/conf.d") -set(cachedir_POST "${CMAKE_INSTALL_PREFIX}/var/cache/netdata") -set(registrydir_POST "${CMAKE_INSTALL_PREFIX}/var/lib/netdata/registry") -set(varlibdir_POST "${CMAKE_INSTALL_PREFIX}/var/lib/netdata") +set(libsysdir_POST "${NETDATA_RUNTIME_PREFIX}/usr/lib/netdata/system") +set(pkglibexecdir_POST "${NETDATA_RUNTIME_PREFIX}/usr/libexec/netdata") +set(localstatedir_POST "${NETDATA_RUNTIME_PREFIX}/var") +set(sbindir_POST "${NETDATA_RUNTIME_PREFIX}/${BINDIR}") +set(configdir_POST "${NETDATA_RUNTIME_PREFIX}/etc/netdata") +set(libconfigdir_POST "${NETDATA_RUNTIME_PREFIX}/usr/lib/netdata/conf.d") +set(cachedir_POST "${NETDATA_RUNTIME_PREFIX}/var/cache/netdata") +set(registrydir_POST "${NETDATA_RUNTIME_PREFIX}/var/lib/netdata/registry") +set(varlibdir_POST "${NETDATA_RUNTIME_PREFIX}/var/lib/netdata") set(netdata_user_POST "${NETDATA_USER}") # netdata-claim.sh @@ -2429,7 +2367,7 @@ configure_file(src/claim/netdata-claim.sh.in src/claim/netdata-claim.sh @ONLY) install(PROGRAMS ${CMAKE_BINARY_DIR}/src/claim/netdata-claim.sh COMPONENT netdata - DESTINATION usr/sbin) + DESTINATION "${BINDIR}") # # We don't check ENABLE_PLUGIN_CGROUP_NETWORK because rpm builds assume @@ -2502,12 +2440,6 @@ install(PROGRAMS COMPONENT netdata DESTINATION usr/libexec/netdata) -configure_file(system/cron/netdata-updater-daily.in system/cron/netdata-updater-daily @ONLY) -install(FILES - ${CMAKE_BINARY_DIR}/system/cron/netdata-updater-daily - COMPONENT netdata - DESTINATION usr/lib/netdata/system/cron) - configure_file(system/launchd/netdata.plist.in system/launchd/netdata.plist @ONLY) install(FILES ${CMAKE_BINARY_DIR}/system/launchd/netdata.plist @@ -2515,13 +2447,13 @@ install(FILES DESTINATION usr/lib/netdata/system/launchd) configure_file(system/freebsd/rc.d/netdata.in system/freebsd/rc.d/netdata @ONLY) -install(PROGRAMS +install(FILES ${CMAKE_BINARY_DIR}/system/freebsd/rc.d/netdata COMPONENT netdata DESTINATION usr/lib/netdata/system/freebsd/rc.d) configure_file(system/initd/init.d/netdata.in system/initd/init.d/netdata @ONLY) -install(PROGRAMS +install(FILES ${CMAKE_BINARY_DIR}/system/initd/init.d/netdata COMPONENT netdata DESTINATION usr/lib/netdata/system/initd/init.d) @@ -2537,7 +2469,7 @@ install(FILES DESTINATION etc/logrotate.d) configure_file(system/lsb/init.d/netdata.in system/lsb/init.d/netdata @ONLY) -install(PROGRAMS +install(FILES ${CMAKE_BINARY_DIR}/system/lsb/init.d/netdata COMPONENT netdata DESTINATION usr/lib/netdata/system/lsb/init.d) @@ -2549,13 +2481,13 @@ install(FILES DESTINATION usr/lib/netdata/system/openrc/conf.d) configure_file(system/openrc/init.d/netdata.in system/openrc/init.d/netdata @ONLY) -install(PROGRAMS +install(FILES ${CMAKE_BINARY_DIR}/system/openrc/init.d/netdata COMPONENT netdata DESTINATION usr/lib/netdata/system/openrc/init.d) configure_file(system/runit/run.in system/runit/run @ONLY) -install(PROGRAMS +install(FILES ${CMAKE_BINARY_DIR}/system/runit/run COMPONENT netdata DESTINATION usr/lib/netdata/system/runit) @@ -2583,30 +2515,12 @@ install(FILES COMPONENT netdata DESTINATION usr/lib/netdata/system/systemd) -configure_file(system/systemd/netdata-updater.service.in system/systemd/netdata-updater.service @ONLY) -install(FILES - ${CMAKE_BINARY_DIR}/system/systemd/netdata-updater.service - COMPONENT netdata - DESTINATION usr/lib/netdata/system/systemd) - -install(FILES - system/systemd/netdata-updater.timer - COMPONENT netdata - DESTINATION usr/lib/netdata/system/systemd) if(BUILD_FOR_PACKAGING) install(FILES ${CMAKE_BINARY_DIR}/system/systemd/netdata.service COMPONENT netdata DESTINATION lib/systemd/system) - install(FILES - ${CMAKE_BINARY_DIR}/system/systemd/netdata-updater.service - COMPONENT netdata - DESTINATION lib/systemd/system) - install(FILES - system/systemd/netdata-updater.timer - COMPONENT netdata - DESTINATION lib/systemd/system) install(DIRECTORY COMPONENT netdata DESTINATION usr/lib/systemd/journald@netdata.conf.d) @@ -2643,12 +2557,6 @@ else() set(NETDATA_CONF_DEST "usr/lib/netdata/conf.d") endif() -install(FILES - system/netdata.conf - system/netdata-updater.conf - COMPONENT netdata - DESTINATION ${NETDATA_CONF_DEST}) - # # misc files # @@ -2664,10 +2572,50 @@ if(BUILD_FOR_PACKAGING) DESTINATION etc/init.d) endif() -install(PROGRAMS - packaging/installer/netdata-updater.sh - COMPONENT netdata - DESTINATION usr/libexec/netdata) +if(NOT OS_WINDOWS) + install(PROGRAMS + packaging/installer/netdata-updater.sh + COMPONENT netdata + DESTINATION usr/libexec/netdata) + + install(FILES + system/netdata.conf + system/netdata-updater.conf + COMPONENT netdata + DESTINATION ${NETDATA_CONF_DEST}) + + configure_file(system/cron/netdata-updater-daily.in + system/cron/netdata-updater-daily + @ONLY) + install(FILES + ${CMAKE_BINARY_DIR}/system/cron/netdata-updater-daily + COMPONENT netdata + DESTINATION usr/lib/netdata/system/cron) + + configure_file(system/systemd/netdata-updater.service.in + system/systemd/netdata-updater.service + @ONLY) + install(FILES + ${CMAKE_BINARY_DIR}/system/systemd/netdata-updater.service + COMPONENT netdata + DESTINATION usr/lib/netdata/system/systemd) + + install(FILES + system/systemd/netdata-updater.timer + COMPONENT netdata + DESTINATION usr/lib/netdata/system/systemd) + + if(BUILD_FOR_PACKAGING) + install(FILES + ${CMAKE_BINARY_DIR}/system/systemd/netdata-updater.service + COMPONENT netdata + DESTINATION lib/systemd/system) + install(FILES + system/systemd/netdata-updater.timer + COMPONENT netdata + DESTINATION lib/systemd/system) + endif() +endif() # # TODO: check the following files for correct substitutions @@ -2705,11 +2653,13 @@ install(PROGRAMS COMPONENT netdata DESTINATION usr/libexec/netdata/plugins.d) -install(PROGRAMS - src/health/notifications/alarm-email.sh - src/health/notifications/alarm-test.sh - COMPONENT netdata - DESTINATION usr/libexec/netdata/plugins.d) +if(CMAKE_BUILD_TYPE STREQUAL "Debug") + install(PROGRAMS + src/health/notifications/alarm-email.sh + src/health/notifications/alarm-test.sh + COMPONENT netdata + DESTINATION usr/libexec/netdata/plugins.d) +endif() install(FILES src/health/notifications/health_alarm_notify.conf @@ -2720,22 +2670,23 @@ install(FILES # test/ files # -configure_file(tests/health_mgmtapi/health-cmdapi-test.sh.in tests/health_mgmtapi/health-cmdapi-test.sh @ONLY) -configure_file(tests/acls/acl.sh.in tests/acls/acl.sh @ONLY) -configure_file(tests/urls/request.sh.in tests/urls/request.sh @ONLY) -configure_file(tests/alarm_repetition/alarm.sh.in tests/alarm_repetition/alarm.sh @ONLY) -configure_file(tests/template_dimension/template_dim.sh.in tests/template_dimension/template_dim.sh @ONLY) -configure_file(tests/ebpf/ebpf_thread_function.sh.in tests/ebpf/ebpf_thread_function.sh @ONLY) - -install(FILES - ${CMAKE_BINARY_DIR}/tests/health_mgmtapi/health-cmdapi-test.sh - ${CMAKE_BINARY_DIR}/tests/acls/acl.sh - ${CMAKE_BINARY_DIR}/tests/urls/request.sh - ${CMAKE_BINARY_DIR}/tests/alarm_repetition/alarm.sh - ${CMAKE_BINARY_DIR}/tests/template_dimension/template_dim.sh - ${CMAKE_BINARY_DIR}/tests/ebpf/ebpf_thread_function.sh - DESTINATION usr/libexec/netdata/plugins.d) +if(CMAKE_BUILD_TYPE STREQUAL "Debug") + configure_file(tests/health_mgmtapi/health-cmdapi-test.sh.in tests/health_mgmtapi/health-cmdapi-test.sh @ONLY) + configure_file(tests/acls/acl.sh.in tests/acls/acl.sh @ONLY) + configure_file(tests/urls/request.sh.in tests/urls/request.sh @ONLY) + configure_file(tests/alarm_repetition/alarm.sh.in tests/alarm_repetition/alarm.sh @ONLY) + configure_file(tests/template_dimension/template_dim.sh.in tests/template_dimension/template_dim.sh @ONLY) + configure_file(tests/ebpf/ebpf_thread_function.sh.in tests/ebpf/ebpf_thread_function.sh @ONLY) + install(FILES + ${CMAKE_BINARY_DIR}/tests/health_mgmtapi/health-cmdapi-test.sh + ${CMAKE_BINARY_DIR}/tests/acls/acl.sh + ${CMAKE_BINARY_DIR}/tests/urls/request.sh + ${CMAKE_BINARY_DIR}/tests/alarm_repetition/alarm.sh + ${CMAKE_BINARY_DIR}/tests/template_dimension/template_dim.sh + ${CMAKE_BINARY_DIR}/tests/ebpf/ebpf_thread_function.sh + DESTINATION usr/libexec/netdata/plugins.d) +endif() # # charts.d plugin # @@ -2765,7 +2716,6 @@ install(FILES DESTINATION usr/lib/netdata/conf.d) install(PROGRAMS - src/collectors/charts.d.plugin/ap/ap.chart.sh src/collectors/charts.d.plugin/apcupsd/apcupsd.chart.sh src/collectors/charts.d.plugin/example/example.chart.sh src/collectors/charts.d.plugin/libreswan/libreswan.chart.sh @@ -2775,7 +2725,6 @@ install(PROGRAMS DESTINATION usr/libexec/netdata/charts.d) install(FILES - src/collectors/charts.d.plugin/ap/ap.conf src/collectors/charts.d.plugin/apcupsd/apcupsd.conf src/collectors/charts.d.plugin/example/example.conf src/collectors/charts.d.plugin/libreswan/libreswan.conf @@ -2826,40 +2775,18 @@ install(FILES src/collectors/python.d.plugin/python.d.conf DESTINATION usr/lib/netdata/conf.d) install(FILES - src/collectors/python.d.plugin/alarms/alarms.conf src/collectors/python.d.plugin/am2320/am2320.conf src/collectors/python.d.plugin/anomalies/anomalies.conf - src/collectors/python.d.plugin/beanstalk/beanstalk.conf src/collectors/python.d.plugin/boinc/boinc.conf src/collectors/python.d.plugin/ceph/ceph.conf - src/collectors/python.d.plugin/changefinder/changefinder.conf - src/collectors/python.d.plugin/dovecot/dovecot.conf - src/collectors/python.d.plugin/example/example.conf - src/collectors/python.d.plugin/exim/exim.conf - src/collectors/python.d.plugin/gearman/gearman.conf src/collectors/python.d.plugin/go_expvar/go_expvar.conf src/collectors/python.d.plugin/haproxy/haproxy.conf - src/collectors/python.d.plugin/icecast/icecast.conf - src/collectors/python.d.plugin/ipfs/ipfs.conf - src/collectors/python.d.plugin/memcached/memcached.conf - src/collectors/python.d.plugin/monit/monit.conf - src/collectors/python.d.plugin/nsd/nsd.conf - src/collectors/python.d.plugin/nvidia_smi/nvidia_smi.conf src/collectors/python.d.plugin/openldap/openldap.conf src/collectors/python.d.plugin/oracledb/oracledb.conf src/collectors/python.d.plugin/pandas/pandas.conf - src/collectors/python.d.plugin/postfix/postfix.conf - src/collectors/python.d.plugin/puppet/puppet.conf - src/collectors/python.d.plugin/rethinkdbs/rethinkdbs.conf - src/collectors/python.d.plugin/retroshare/retroshare.conf - src/collectors/python.d.plugin/riakkv/riakkv.conf src/collectors/python.d.plugin/samba/samba.conf src/collectors/python.d.plugin/spigotmc/spigotmc.conf - src/collectors/python.d.plugin/squid/squid.conf - src/collectors/python.d.plugin/tomcat/tomcat.conf - src/collectors/python.d.plugin/tor/tor.conf src/collectors/python.d.plugin/traefik/traefik.conf - src/collectors/python.d.plugin/uwsgi/uwsgi.conf src/collectors/python.d.plugin/varnish/varnish.conf src/collectors/python.d.plugin/w1sensor/w1sensor.conf src/collectors/python.d.plugin/zscores/zscores.conf @@ -2867,40 +2794,18 @@ install(FILES DESTINATION usr/lib/netdata/conf.d/python.d) install(FILES - src/collectors/python.d.plugin/alarms/alarms.chart.py src/collectors/python.d.plugin/am2320/am2320.chart.py src/collectors/python.d.plugin/anomalies/anomalies.chart.py - src/collectors/python.d.plugin/beanstalk/beanstalk.chart.py src/collectors/python.d.plugin/boinc/boinc.chart.py src/collectors/python.d.plugin/ceph/ceph.chart.py - src/collectors/python.d.plugin/changefinder/changefinder.chart.py - src/collectors/python.d.plugin/dovecot/dovecot.chart.py - src/collectors/python.d.plugin/example/example.chart.py - src/collectors/python.d.plugin/exim/exim.chart.py - src/collectors/python.d.plugin/gearman/gearman.chart.py src/collectors/python.d.plugin/go_expvar/go_expvar.chart.py src/collectors/python.d.plugin/haproxy/haproxy.chart.py - src/collectors/python.d.plugin/icecast/icecast.chart.py - src/collectors/python.d.plugin/ipfs/ipfs.chart.py - src/collectors/python.d.plugin/memcached/memcached.chart.py - src/collectors/python.d.plugin/monit/monit.chart.py - src/collectors/python.d.plugin/nsd/nsd.chart.py - src/collectors/python.d.plugin/nvidia_smi/nvidia_smi.chart.py src/collectors/python.d.plugin/openldap/openldap.chart.py src/collectors/python.d.plugin/oracledb/oracledb.chart.py src/collectors/python.d.plugin/pandas/pandas.chart.py - src/collectors/python.d.plugin/postfix/postfix.chart.py - src/collectors/python.d.plugin/puppet/puppet.chart.py - src/collectors/python.d.plugin/rethinkdbs/rethinkdbs.chart.py - src/collectors/python.d.plugin/retroshare/retroshare.chart.py - src/collectors/python.d.plugin/riakkv/riakkv.chart.py src/collectors/python.d.plugin/samba/samba.chart.py src/collectors/python.d.plugin/spigotmc/spigotmc.chart.py - src/collectors/python.d.plugin/squid/squid.chart.py - src/collectors/python.d.plugin/tomcat/tomcat.chart.py - src/collectors/python.d.plugin/tor/tor.chart.py src/collectors/python.d.plugin/traefik/traefik.chart.py - src/collectors/python.d.plugin/uwsgi/uwsgi.chart.py src/collectors/python.d.plugin/varnish/varnish.chart.py src/collectors/python.d.plugin/w1sensor/w1sensor.chart.py src/collectors/python.d.plugin/zscores/zscores.chart.py @@ -2927,14 +2832,14 @@ install(PROGRAMS ${CMAKE_BINARY_DIR}/src/collectors/ioping.plugin/ioping.plugin # go.d.plugin # if(ENABLE_PLUGIN_GO) - install(FILES src/go/collectors/go.d.plugin/config/go.d.conf + install(FILES src/go/plugin/go.d/config/go.d.conf COMPONENT plugin-go DESTINATION usr/lib/netdata/conf.d) install(DIRECTORY COMPONENT plugin-go DESTINATION usr/lib/netdata/conf.d/go.d) - file(GLOB GO_CONF_FILES src/go/collectors/go.d.plugin/config/go.d/*.conf) + file(GLOB GO_CONF_FILES src/go/plugin/go.d/config/go.d/*.conf) install(FILES ${GO_CONF_FILES} COMPONENT plugin-go DESTINATION usr/lib/netdata/conf.d/go.d) @@ -2942,7 +2847,7 @@ if(ENABLE_PLUGIN_GO) install(DIRECTORY COMPONENT plugin-go DESTINATION usr/lib/netdata/conf.d/go.d/sd) - file(GLOB GO_SD_CONF_FILES src/go/collectors/go.d.plugin/config/go.d/sd/*.conf) + file(GLOB GO_SD_CONF_FILES src/go/plugin/go.d/config/go.d/sd/*.conf) install(FILES ${GO_SD_CONF_FILES} COMPONENT plugin-go DESTINATION usr/lib/netdata/conf.d/go.d/sd) @@ -3023,4 +2928,71 @@ if(NOT OS_WINDOWS) DESTINATION ${WEB_DEST}/v0) endif() +if(OS_WINDOWS) + install(FILES /usr/bin/awk.exe + /usr/bin/bash.exe + /usr/bin/cat.exe + /usr/bin/chown.exe + /usr/bin/curl.exe + /usr/bin/env.exe + /usr/bin/grep.exe + /usr/bin/mkdir.exe + /usr/bin/openssl.exe + /usr/bin/rm.exe + /usr/bin/sed.exe + /usr/bin/sh.exe + /usr/bin/tail.exe + /usr/bin/tr.exe + /usr/bin/uuidgen.exe + /usr/bin/whoami.exe + DESTINATION "${BINDIR}") + + install(FILES /usr/bin/msys-2.0.dll + /usr/bin/msys-asn1-8.dll + /usr/bin/msys-brotlicommon-1.dll + /usr/bin/msys-brotlidec-1.dll + /usr/bin/msys-brotlienc-1.dll + /usr/bin/msys-com_err-1.dll + /usr/bin/msys-crypt-2.dll + /usr/bin/msys-crypto-3.dll + /usr/bin/msys-curl-4.dll + /usr/bin/msys-gcc_s-seh-1.dll + /usr/bin/msys-gmp-10.dll + /usr/bin/msys-gssapi-3.dll + /usr/bin/msys-hcrypto-4.dll + /usr/bin/msys-heimbase-1.dll + /usr/bin/msys-heimntlm-0.dll + /usr/bin/msys-hx509-5.dll + /usr/bin/msys-iconv-2.dll + /usr/bin/msys-idn2-0.dll + /usr/bin/msys-intl-8.dll + /usr/bin/msys-krb5-26.dll + /usr/bin/msys-lz4-1.dll + /usr/bin/msys-mpfr-6.dll + /usr/bin/msys-ncursesw6.dll + /usr/bin/msys-nghttp2-14.dll + /usr/bin/msys-pcre-1.dll + /usr/bin/msys-protobuf-32.dll + /usr/bin/msys-psl-5.dll + /usr/bin/msys-readline8.dll + /usr/bin/msys-roken-18.dll + /usr/bin/msys-sqlite3-0.dll + /usr/bin/msys-ssh2-1.dll + /usr/bin/msys-ssl-3.dll + /usr/bin/msys-stdc++-6.dll + /usr/bin/msys-unistring-5.dll + /usr/bin/msys-uuid-1.dll + /usr/bin/msys-uv-1.dll + /usr/bin/msys-wind-0.dll + /usr/bin/msys-z.dll + /usr/bin/msys-zstd-1.dll + DESTINATION "${BINDIR}") + + # Make bash & netdata happy + install(DIRECTORY DESTINATION tmp) + + # Make curl work with ssl + install(DIRECTORY /usr/ssl DESTINATION usr) +endif() + include(Packaging) |