├── .clang-format ├── .gitattributes ├── .github ├── FUNDING.yml ├── actions │ ├── cryptopp │ │ └── action.yaml │ ├── google-test │ │ └── action.yml │ ├── installer-test │ │ └── action.yaml │ ├── lua │ │ └── action.yaml │ ├── mongoose │ │ └── action.yaml │ ├── openssl │ │ └── action.yaml │ ├── post-process-windows-binaries │ │ └── action.yaml │ ├── protobuf │ │ └── action.yaml │ ├── rest-test │ │ └── action.yaml │ ├── sign-windows-binaries │ │ └── action.yaml │ ├── tinyxml2 │ │ └── action.yaml │ └── update-msvc │ │ └── action.yml ├── dependabot.yml ├── issue_template.md └── workflows │ ├── build-feature.yml │ ├── build-linux.yml │ ├── build-main.yml │ ├── build-windows-legacy.yml │ ├── build-windows.yml │ ├── cmake.yml │ ├── get-version.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── COPYING ├── README.md ├── changelog ├── check_deps.cmake ├── clients ├── nrpe │ ├── CMakeLists.txt │ ├── check_nrpe.cpp │ ├── check_nrpe.hpp │ └── module.cmake └── nscp │ ├── CMakeLists.txt │ ├── check_nscp.cpp │ ├── check_nscp.hpp │ └── module.cmake ├── debian ├── README.Debian ├── README.source ├── changelog ├── compat ├── control ├── copyright ├── nsclient++-bin.install ├── nsclient++-doc.install ├── nsclient++-nsca.install ├── nsclient++-server.install ├── postinst.ex ├── postrm.ex ├── preinst.ex ├── prerm.ex ├── rules └── source │ └── format ├── docs ├── CMakeLists.txt ├── README.md ├── custom_theme │ ├── header.html │ ├── main.html │ └── partials │ │ └── footer.html ├── docs │ ├── api │ │ ├── common.md │ │ ├── images │ │ │ └── api_nscp_setup_webserver.png │ │ ├── metrics.md │ │ ├── plugin.md │ │ └── rest │ │ │ ├── index.md │ │ │ ├── info.md │ │ │ ├── legacy.md │ │ │ ├── logs.md │ │ │ ├── modules.md │ │ │ ├── queries.md │ │ │ └── scripts.md │ ├── checks.md │ ├── custom.css │ ├── extending │ │ ├── index.md │ │ ├── python.md │ │ └── zip-modules.md │ ├── faq.md │ ├── getting-started │ │ ├── index.md │ │ ├── nrpe.md │ │ ├── nsca.md │ │ └── nsclient.md │ ├── howto │ │ ├── 03x_migration.md │ │ ├── checks.md │ │ ├── counters.md │ │ ├── external_scripts.md │ │ ├── images │ │ │ ├── external-scripts-args-1.png │ │ │ ├── external-scripts-args-2.png │ │ │ ├── external-scripts-args-3.png │ │ │ ├── external-scripts.png │ │ │ ├── nagios-active-nrpe-001.png │ │ │ ├── nagios-active-nrpe-002.png │ │ │ ├── nagios-active-nrpe-003.png │ │ │ ├── nagios-active-nrpe.png │ │ │ ├── nagios-configuration-inheritance.png │ │ │ ├── nagios-passive-nsca-001.png │ │ │ ├── nagios-passive-nsca-002.png │ │ │ ├── nagios-passive-nsca-003.png │ │ │ ├── nagios-passive-nsca.png │ │ │ ├── nrpe-overview.png │ │ │ ├── nsca-nsclient-internals.png │ │ │ ├── nsca-overview.png │ │ │ └── test-client.png │ │ ├── nrpe.md │ │ ├── nsca.md │ │ └── run_commands.md │ ├── images │ │ ├── FAVICON.PNG │ │ ├── api_web_changes.png │ │ ├── api_web_console.png │ │ ├── api_web_control.png │ │ ├── api_web_home.png │ │ ├── api_web_log.png │ │ ├── api_web_modules_checkdisk.png │ │ ├── api_web_modules_checkdisk_queries.png │ │ ├── api_web_modules_checkdisk_queries_check_drivesize.png │ │ ├── api_web_modules_overview.png │ │ ├── api_web_queries.png │ │ ├── api_web_queries_check_drivesize.png │ │ ├── api_web_queries_check_drivesize_run.png │ │ ├── api_web_settings.png │ │ ├── elevated.png │ │ ├── eventlog-channel-names.png │ │ ├── eventlog-find-event.png │ │ ├── eventlog-realtime-log.png │ │ ├── folder.png │ │ ├── installer-configuration.png │ │ ├── installer-select-config.png │ │ ├── installer-select-tool.png │ │ ├── nsclient-logo.png │ │ ├── nscp-test.png │ │ ├── realtime-monitoring.png │ │ ├── registry.png │ │ ├── timeouts.png │ │ ├── web-check_cpu-cores.png │ │ ├── web-check_cpu-result.png │ │ ├── web-check_cpu.png │ │ ├── web-check_ping.png │ │ ├── web-login.png │ │ ├── web-modules-check_net-loaded.png │ │ ├── web-modules-check_net.png │ │ ├── web-modules-webserver.png │ │ ├── web-modules.png │ │ ├── web-select-check_cpu.png │ │ ├── web-untrusted-certificates.png │ │ ├── web-webserver-settings-port.png │ │ ├── web-webserver-settings-save.png │ │ ├── web-webserver-settings.png │ │ └── web-welcome.png │ ├── img │ │ └── favicon.png │ ├── index.md │ ├── installing.md │ ├── pygments.css │ ├── reference │ │ ├── check │ │ │ ├── CheckExternalScripts.md │ │ │ ├── CheckHelpers.md │ │ │ ├── CheckLogFile.md │ │ │ ├── CheckMKClient.md │ │ │ ├── CheckMKServer.md │ │ │ └── CheckNSCP.md │ │ ├── client │ │ │ ├── GraphiteClient.md │ │ │ ├── NRDPClient.md │ │ │ ├── NRPEClient.md │ │ │ ├── NRPEServer.md │ │ │ ├── NSCAClient.md │ │ │ ├── NSCAServer.md │ │ │ ├── SMTPClient.md │ │ │ └── SyslogClient.md │ │ ├── generic │ │ │ ├── CommandClient.md │ │ │ ├── LUAScript.md │ │ │ ├── PythonScript.md │ │ │ ├── Scheduler.md │ │ │ ├── SimpleCache.md │ │ │ ├── SimpleFileWriter.md │ │ │ └── WEBServer.md │ │ ├── index.md │ │ ├── misc │ │ │ ├── CheckDocker.md │ │ │ ├── CheckNet.md │ │ │ ├── CheckPowershell.md │ │ │ ├── CollectdClient.md │ │ │ ├── DotnetPlugin.md │ │ │ ├── ElasticClient.md │ │ │ ├── NSCPClient.md │ │ │ ├── Op5Client.md │ │ │ └── WEBClient.md │ │ ├── unix │ │ │ └── CheckSystemUnix.md │ │ └── windows │ │ │ ├── CheckDisk.md │ │ │ ├── CheckEventLog.md │ │ │ ├── CheckSystem.md │ │ │ ├── CheckTaskSched.md │ │ │ ├── CheckWMI.md │ │ │ ├── DotnetPlugins.md │ │ │ └── NSClientServer.md │ ├── securing.md │ ├── settings.md │ ├── theory.md │ ├── tutorial │ │ ├── images │ │ │ ├── nagios-active-nrpe.png │ │ │ ├── nagios-active-nsclient-001.png │ │ │ ├── nagios-active-nsclient-002.png │ │ │ ├── nagios-active-nsclient-003.png │ │ │ ├── nagios-active-nsclient-and-nrpe.png │ │ │ ├── nagios-active-nsclient.png │ │ │ ├── nagios-active-passive-roll-your-own.png │ │ │ ├── nagios-passive-nsca-001.png │ │ │ ├── nagios-passive-nsca-002.png │ │ │ ├── nagios-passive-nsca-003.png │ │ │ ├── nagios-passive-nsca.png │ │ │ ├── nagios-server-check-nt.png │ │ │ ├── normal-nrpe.png │ │ │ ├── notepad-administrator.png │ │ │ ├── nsca-nsclient-internals.png │ │ │ ├── nsca-overview.png │ │ │ ├── pdq_msifolder.png │ │ │ ├── pdq_package.png │ │ │ └── windows-computer-active.png │ │ └── index.md │ └── web.md ├── mkdocs.yml ├── samples │ ├── CauseCrashes_crash_client_samples.md │ ├── CheckDisk_check_drivesize_samples.md │ ├── CheckDisk_check_files_samples.md │ ├── CheckDisk_desc.md │ ├── CheckEventLog_samples.md │ ├── CheckExternalScripts_desc.md │ ├── CheckExternalScripts_samples.md │ ├── CheckHelpers_filter_perf_desc.md │ ├── CheckSystemUnix_check_memory_samples.md │ ├── CheckSystem_check_cpu_samples.md │ ├── CheckSystem_check_memory_desc.md │ ├── CheckSystem_check_memory_samples.md │ ├── CheckSystem_check_os_version_samples.md │ ├── CheckSystem_check_pagefile_samples.md │ ├── CheckSystem_check_pdh_samples.md │ ├── CheckSystem_check_process_samples.md │ ├── CheckSystem_check_service_samples.md │ ├── CheckSystem_check_uptime_samples.md │ ├── CheckTaskSched_check_tasksched_samples.md │ ├── CheckWMI_check_wmi_samples.md │ ├── NRPEServer_desc.md │ └── Scheduler_samples.md └── source │ └── realtime-monitoring.vsdx ├── files ├── CMakeLists.txt ├── NSC.dist ├── boot.dist ├── deb │ ├── postinst │ └── prerm ├── init.centos.sh ├── init.debian.sh ├── license.txt ├── nrpe_dh_2048.pem ├── nrpe_dh_512.pem ├── nsclient.dist ├── nsclient.service ├── nsclient │ └── nsclient.log ├── nscp.spec.in ├── old-settings.map └── unix-nsclient.conf.in ├── include ├── CheckMemory.h ├── EnumNtSrv.cpp ├── EnumNtSrv.h ├── EnumProcess.cpp ├── EnumProcess.h ├── NSCAPI.h ├── ServiceCmd.cpp ├── ServiceCmd.h ├── b64 │ ├── b64.c │ ├── b64.h │ └── b64.hpp ├── breakpad │ ├── exception_handler_win32.cpp │ └── exception_handler_win32.hpp ├── buffer.hpp ├── char_buffer.hpp ├── check_mk │ ├── client │ │ └── client_protocol.hpp │ ├── data.hpp │ ├── lua │ │ ├── lua_check_mk.cpp │ │ └── lua_check_mk.hpp │ ├── parser.hpp │ └── server │ │ ├── server_handler.hpp │ │ └── server_protocol.hpp ├── check_nt │ ├── client │ │ └── socket.hpp │ ├── packet.cpp │ ├── packet.hpp │ └── server │ │ ├── handler.hpp │ │ ├── parser.hpp │ │ └── protocol.hpp ├── client │ ├── command_line_parser.cpp │ ├── command_line_parser.hpp │ ├── simple_client.cpp │ └── simple_client.hpp ├── clr │ └── clr_scoped_ptr.hpp ├── collectd │ ├── collectd_packet.cpp │ └── collectd_packet.hpp ├── com_helpers.hpp ├── compat.cpp ├── compat.hpp ├── concurrent_queue.hpp ├── config.h.in ├── dll │ ├── dll.hpp │ ├── impl_unix.hpp │ └── impl_w32.hpp ├── error │ ├── error.hpp │ ├── error_com.hpp │ ├── error_w32.cpp │ └── error_w32.hpp ├── event_handler.hpp ├── file_helpers.hpp ├── firewall_helpers.hpp ├── handle.hpp ├── has-threads.cpp ├── has-threads.hpp ├── http │ └── client.hpp ├── json │ └── use_json.cpp ├── lua │ ├── lua_core.hpp │ ├── lua_cpp.hpp │ └── lua_script.hpp ├── managed │ ├── convert.cpp │ ├── convert.hpp │ ├── core_impl.cpp │ └── core_impl.hpp ├── metrics │ ├── metrics_store_map.cpp │ └── metrics_store_map.hpp ├── net │ ├── icmp_header.hpp │ ├── ipv4_header.hpp │ ├── net.hpp │ └── pinger.hpp ├── network_types.hpp ├── nrpe │ ├── client │ │ └── nrpe_client_protocol.hpp │ ├── packet.cpp │ ├── packet.hpp │ └── server │ │ ├── handler.hpp │ │ ├── parser.hpp │ │ └── protocol.hpp ├── nsca │ ├── client │ │ └── nsca_client_protocol.hpp │ ├── nsca_packet.cpp │ ├── nsca_packet.hpp │ └── server │ │ ├── handler.hpp │ │ ├── parser.hpp │ │ └── protocol.hpp ├── nscapi │ ├── command_client.cpp │ ├── command_client.hpp │ ├── command_proxy.hpp │ ├── dll_defines.hpp │ ├── dll_defines_protobuf.hpp │ ├── log_handler.hpp │ ├── macros.hpp │ ├── nscapi_common_options.hpp │ ├── nscapi_core_helper.cpp │ ├── nscapi_core_helper.hpp │ ├── nscapi_core_wrapper.cpp │ ├── nscapi_core_wrapper.hpp │ ├── nscapi_helper.cpp │ ├── nscapi_helper.hpp │ ├── nscapi_helper_singleton.cpp │ ├── nscapi_helper_singleton.hpp │ ├── nscapi_metrics_helper.cpp │ ├── nscapi_metrics_helper.hpp │ ├── nscapi_plugin_impl.cpp │ ├── nscapi_plugin_impl.hpp │ ├── nscapi_plugin_wrapper.hpp │ ├── nscapi_program_options.hpp │ ├── nscapi_protobuf_command.hpp │ ├── nscapi_protobuf_functions.cpp │ ├── nscapi_protobuf_functions.hpp │ ├── nscapi_protobuf_log.hpp │ ├── nscapi_protobuf_metrics.hpp │ ├── nscapi_protobuf_nagios.hpp │ ├── nscapi_protobuf_registry.hpp │ ├── nscapi_protobuf_settings.hpp │ ├── nscapi_protobuf_settings_functions.cpp │ ├── nscapi_protobuf_settings_functions.hpp │ ├── nscapi_protobuf_storage.hpp │ ├── nscapi_settings_filter.cpp │ ├── nscapi_settings_filter.hpp │ ├── nscapi_settings_helper.cpp │ ├── nscapi_settings_helper.hpp │ ├── nscapi_settings_object.cpp │ ├── nscapi_settings_object.hpp │ ├── nscapi_settings_proxy.cpp │ ├── nscapi_settings_proxy.hpp │ ├── nscapi_targets.cpp │ ├── nscapi_targets.hpp │ ├── nscapi_thin_plugin_impl.cpp │ ├── nscapi_thin_plugin_impl.hpp │ └── plugin.hpp ├── nsclient │ ├── logger │ │ ├── base_logger_impl.cpp │ │ ├── base_logger_impl.hpp │ │ ├── log_driver_interface.hpp │ │ ├── log_level.cpp │ │ ├── log_level.hpp │ │ ├── log_message_factory.cpp │ │ ├── log_message_factory.hpp │ │ ├── logger.hpp │ │ ├── logger_helper.cpp │ │ └── logger_helper.hpp │ └── nsclient_exception.hpp ├── nsclient_session.hpp ├── nscpcrypt │ └── nscpcrypt.hpp ├── parsers │ ├── cron │ │ └── cron_parser.hpp │ ├── expression │ │ ├── expression.cpp │ │ └── expression.hpp │ ├── filter │ │ ├── cli_helper.hpp │ │ ├── modern_filter.cpp │ │ ├── modern_filter.hpp │ │ └── realtime_helper.hpp │ ├── helpers.cpp │ ├── helpers.hpp │ ├── operators.cpp │ ├── operators.hpp │ ├── perfconfig │ │ ├── perfconfig.cpp │ │ └── perfconfig.hpp │ ├── perfdata.hpp │ ├── where.cpp │ ├── where.hpp │ └── where │ │ ├── binary_op.cpp │ │ ├── binary_op.hpp │ │ ├── dll_defines.hpp │ │ ├── engine.cpp │ │ ├── engine.hpp │ │ ├── engine_impl.hpp │ │ ├── filter_handler_impl.hpp │ │ ├── grammar │ │ ├── grammar.cpp │ │ └── grammar.hpp │ │ ├── helpers.cpp │ │ ├── helpers.hpp │ │ ├── list_node.cpp │ │ ├── list_node.hpp │ │ ├── node.cpp │ │ ├── node.hpp │ │ ├── unary_fun.cpp │ │ ├── unary_fun.hpp │ │ ├── unary_op.cpp │ │ ├── unary_op.hpp │ │ ├── value_node.cpp │ │ ├── value_node.hpp │ │ ├── variable.cpp │ │ └── variable.hpp ├── pdh │ ├── basic_impl.cpp │ ├── basic_impl.hpp │ ├── pdh_collectors.cpp │ ├── pdh_collectors.hpp │ ├── pdh_counters.cpp │ ├── pdh_counters.hpp │ ├── pdh_enumerations.cpp │ ├── pdh_enumerations.hpp │ ├── pdh_interface.cpp │ ├── pdh_interface.hpp │ ├── pdh_query.cpp │ ├── pdh_query.hpp │ ├── pdh_resolver.cpp │ ├── pdh_resolver.hpp │ ├── thread_safe_impl.cpp │ └── thread_safe_impl.hpp ├── pid_file.cpp ├── pid_file.hpp ├── process │ ├── execute_process.hpp │ ├── execute_process_unix.cpp │ └── execute_process_w32.cpp ├── program_options_ex.hpp ├── remote_processes.hpp ├── rrd_buffer.hpp ├── scheduler │ ├── simple_scheduler.cpp │ └── simple_scheduler.hpp ├── scripts │ ├── functions.hpp │ ├── script_interface.hpp │ ├── script_nscp.cpp │ └── script_nscp.hpp ├── service │ ├── system_service.hpp │ ├── unix_service.hpp │ └── win32_service.hpp ├── settings │ ├── client │ │ ├── settings_client_interface.hpp │ │ ├── settings_proxy.cpp │ │ ├── settings_proxy.hpp │ │ └── targets.hpp │ ├── impl │ │ ├── settings_dummy.hpp │ │ ├── settings_http.hpp │ │ ├── settings_ini.hpp │ │ ├── settings_old.hpp │ │ └── settings_registry.hpp │ ├── settings_core.hpp │ ├── settings_interface.hpp │ ├── settings_interface_impl.hpp │ └── settings_value.hpp ├── shared_memory.hpp ├── simple_registry.hpp ├── simple_timer.hpp ├── simpleini │ ├── ConvertUTF.c │ ├── ConvertUTF.h │ └── simpleini.h ├── socket │ ├── allowed_hosts.hpp │ ├── client.hpp │ ├── clients │ │ └── http │ │ │ ├── http_client_protocol.hpp │ │ │ └── http_packet.hpp │ ├── connection.hpp │ ├── server.hpp │ ├── socket_helpers.cpp │ ├── socket_helpers.hpp │ └── socket_settings_helper.hpp ├── str │ ├── format.hpp │ ├── nscp_string.hpp │ ├── utils.hpp │ ├── utils_no_boost.hpp │ ├── wstring.hpp │ └── xtos.hpp ├── swap_bytes.hpp ├── sysinfo.cpp ├── sysinfo.h ├── threads │ └── queue.hpp ├── timer.hpp ├── types.hpp ├── utf8.cpp ├── utf8.hpp ├── utils.cpp ├── utils.h ├── version.hpp.in ├── win │ ├── credentials.cpp │ ├── credentials.hpp │ ├── psapi.hpp │ ├── tool-helper.h │ ├── userenv.hpp │ ├── windows.hpp │ └── winsvc.hpp ├── win_sysinfo │ ├── win_defines.hpp │ ├── win_sysinfo.cpp │ └── win_sysinfo.hpp ├── wmi │ ├── wmi_query.cpp │ └── wmi_query.hpp └── zip │ └── miniz.hpp ├── installer_lib ├── CMakeLists.txt ├── installer_helper.hpp ├── installer_lib.cpp ├── installer_lib.def └── keys.hpp ├── installers ├── common │ ├── CMakeLists.txt │ ├── op5_config.wxs │ ├── op5_scripts.wxs │ ├── re-generate.bat │ ├── re-generate.bat.in │ ├── scripts.wxs │ └── web.wxs ├── installer-NSCP │ ├── Bitmaps │ │ ├── Thumbs.db │ │ ├── bannrbmp.bmp │ │ ├── bannrbmp.psd │ │ ├── dlgbmp.bmp │ │ ├── dlgbmp.psd │ │ ├── exclamic.ico │ │ ├── generic-small.bmp │ │ ├── info.ico │ │ ├── new.ico │ │ ├── op5-small.bmp │ │ └── up.ico │ ├── CMakeLists.txt │ ├── License.rtf │ ├── Product.wxs │ ├── RUNTIME_DLL.wxs │ ├── WixUI_en-us.wxl │ ├── config.wxs │ ├── properties.wxs │ ├── setup.wxs │ └── wixca.dll └── ui │ ├── ConfigureDlg.wxs │ ├── InvalidConfigDlg1.wxs │ ├── InvalidConfigDlg2.wxs │ ├── InvalidConfigDlg3.wxs │ ├── MonitoringToolDlg.wxs │ ├── SelectConfigurationDlg.wxs │ └── WixUI_MondoNSCP.wxs ├── libs ├── dotnet-plugin-api │ ├── AssemblyInfo.cpp │ ├── CMakeLists.txt │ └── NSCP.h ├── expression_parser │ ├── CMakeLists.txt │ └── expression_test.cpp ├── lua │ └── CMakeLists.txt ├── lua_nscp │ ├── CMakeLists.txt │ ├── lua_core.cpp │ ├── lua_cpp.cpp │ └── lua_script.cpp ├── minizip │ └── CMakeLists.txt ├── mongoose-cpp │ ├── CMakeLists.txt │ ├── Client.cpp │ ├── Client.hpp │ ├── Controller.cpp │ ├── Controller.h │ ├── Helpers.cpp │ ├── Helpers.h │ ├── LICENSE │ ├── MatchController.cpp │ ├── MatchController.h │ ├── RegexController.cpp │ ├── RegexController.h │ ├── RegexRequestHandler.h │ ├── Request.cpp │ ├── Request.h │ ├── RequestHandler.h │ ├── Response.cpp │ ├── Response.h │ ├── Server.cpp │ ├── Server.h │ ├── ServerImpl.cpp │ ├── ServerImpl.h │ ├── StreamResponse.cpp │ ├── StreamResponse.h │ ├── dll_defines.hpp │ ├── mcp_exception.hpp │ ├── mongoose_wrapper.h │ ├── string_response.cpp │ └── string_response.hpp ├── nscpcrypt │ ├── CMakeLists.txt │ └── nscpcrypt.cpp ├── perfconfig_parser │ ├── CMakeLists.txt │ └── perfconfig_test.cpp ├── plugin_api │ ├── CMakeLists.txt │ └── nscapi_helper_test.cpp ├── protobuf │ ├── CMakeLists.txt │ ├── common.proto │ ├── log.proto │ ├── metrics.proto │ ├── plugin.proto │ ├── registry.proto │ ├── settings.proto │ └── storage.proto ├── protobuf_net │ ├── CMakeLists.txt │ ├── Google.Protobuf.dll │ └── Helpers.cs ├── settings_manager │ ├── CMakeLists.txt │ ├── settings_handler_impl.cpp │ ├── settings_handler_impl.hpp │ ├── settings_manager_impl.cpp │ └── settings_manager_impl.h ├── where_filter │ └── CMakeLists.txt └── win_sysinfo │ └── CMakeLists.txt ├── modules ├── CSharpSamplePlugin │ ├── CMakeLists.txt │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SamplePlugin.cs │ ├── module.cmake │ └── packages.config ├── CauseCrashes │ ├── CMakeLists.txt │ ├── CauseCrashes.cpp │ ├── CauseCrashes.h │ ├── module.cmake │ └── module.json ├── CheckDisk │ ├── CMakeLists.txt │ ├── CheckDisk.cpp │ ├── CheckDisk.h │ ├── check_drive.cpp │ ├── check_drive.hpp │ ├── file_finder.cpp │ ├── file_finder.hpp │ ├── filter.cpp │ ├── filter.hpp │ ├── module.cmake │ └── module.json ├── CheckDocker │ ├── CMakeLists.txt │ ├── CheckDocker.cpp │ ├── CheckDocker.h │ ├── check_docker.cpp │ ├── check_docker.hpp │ ├── module.cmake │ └── module.json ├── CheckEventLog │ ├── CMakeLists.txt │ ├── CheckEventLog.cpp │ ├── CheckEventLog.h │ ├── bookmarks.cpp │ ├── bookmarks.hpp │ ├── eventlog_record.hpp │ ├── eventlog_wrapper.cpp │ ├── eventlog_wrapper.hpp │ ├── filter.cpp │ ├── filter.hpp │ ├── filter_config_object.cpp │ ├── filter_config_object.hpp │ ├── modern_eventlog.cpp │ ├── modern_eventlog.hpp │ ├── module.cmake │ ├── module.json │ ├── realtime_data.cpp │ ├── realtime_data.hpp │ ├── realtime_thread.cpp │ ├── realtime_thread.hpp │ └── simple_registry.hpp ├── CheckExternalScripts │ ├── CMakeLists.txt │ ├── CheckExternalScripts.cpp │ ├── CheckExternalScripts.h │ ├── alias.hpp │ ├── commands.hpp │ ├── extscr_cli.cpp │ ├── extscr_cli.h │ ├── module.cmake │ ├── module.json │ ├── script_interface.hpp │ ├── script_provider.cpp │ └── script_provider.hpp ├── CheckHelpers │ ├── CMakeLists.txt │ ├── CheckHelpers.cpp │ ├── CheckHelpers.h │ ├── module.cmake │ └── module.json ├── CheckLogFile │ ├── CMakeLists.txt │ ├── CheckLogFile.cpp │ ├── CheckLogFile.h │ ├── filter.cpp │ ├── filter.hpp │ ├── filter_config_object.cpp │ ├── filter_config_object.hpp │ ├── module.cmake │ ├── module.json │ ├── realtime_data.cpp │ ├── realtime_data.hpp │ ├── realtime_thread.cpp │ └── realtime_thread.hpp ├── CheckMKClient │ ├── CMakeLists.txt │ ├── CheckMKClient.cpp │ ├── CheckMKClient.h │ ├── check_mk_client.hpp │ ├── check_mk_handler.hpp │ ├── module.cmake │ └── module.json ├── CheckMKServer │ ├── CMakeLists.txt │ ├── CheckMKServer.cpp │ ├── CheckMKServer.h │ ├── handler_impl.cpp │ ├── handler_impl.hpp │ ├── module.cmake │ └── module.json ├── CheckNSCP │ ├── CMakeLists.txt │ ├── CheckNSCP.cpp │ ├── CheckNSCP.h │ ├── module.cmake │ └── module.json ├── CheckNet │ ├── CMakeLists.txt │ ├── CheckNet.cpp │ ├── CheckNet.h │ ├── filter.cpp │ ├── filter.hpp │ ├── module.cmake │ └── module.json ├── CheckPowershell │ ├── AssemblyInfo.cpp │ ├── CMakeLists.txt │ ├── CheckPowershell.cpp │ ├── CheckPowershell.def │ ├── CheckPowershell.h │ ├── block_allocator.cpp │ ├── block_allocator.h │ ├── module.cmake │ └── module.json ├── CheckSystem │ ├── CMakeLists.txt │ ├── CheckSystem.cpp │ ├── CheckSystem.h │ ├── check_memory.cpp │ ├── check_memory.hpp │ ├── check_network.cpp │ ├── check_network.hpp │ ├── check_pdh.cpp │ ├── check_pdh.hpp │ ├── check_process.cpp │ ├── check_process.hpp │ ├── counter_filter.cpp │ ├── counter_filter.hpp │ ├── filter.cpp │ ├── filter.hpp │ ├── filter_config_object.cpp │ ├── filter_config_object.hpp │ ├── module.cmake │ ├── module.json │ ├── pdh_thread.cpp │ ├── pdh_thread.hpp │ ├── realtime_data.cpp │ ├── realtime_data.hpp │ └── settings.hpp ├── CheckSystemUnix │ ├── CMakeLists.txt │ ├── CheckSystem.cpp │ ├── CheckSystem.h │ ├── filter.cpp │ ├── filter.hpp │ ├── filter_config_object.cpp │ ├── filter_config_object.hpp │ ├── module.cmake │ ├── module.json │ ├── realtime_data.cpp │ ├── realtime_data.hpp │ ├── realtime_thread.cpp │ └── realtime_thread.hpp ├── CheckTaskSched │ ├── CMakeLists.txt │ ├── CheckTaskSched.cpp │ ├── CheckTaskSched.h │ ├── TaskSched.cpp │ ├── TaskSched.h │ ├── filter.cpp │ ├── filter.hpp │ ├── module.cmake │ └── module.json ├── CheckWMI │ ├── CMakeLists.txt │ ├── CheckWMI.cpp │ ├── CheckWMI.h │ ├── module.cmake │ └── module.json ├── CollectdClient │ ├── CMakeLists.txt │ ├── CollectdClient.cpp │ ├── CollectdClient.h │ ├── collectd_client.hpp │ ├── collectd_handler.hpp │ ├── module.cmake │ └── module.json ├── CommandClient │ ├── CMakeLists.txt │ ├── CommandClient.cpp │ ├── CommandClient.h │ ├── module.cmake │ └── module.json ├── DotnetPlugins │ ├── AssemblyInfo.cpp │ ├── CMakeLists.txt │ ├── DotnetPlugins.cpp │ ├── DotnetPlugins.def │ ├── DotnetPlugins.h │ ├── block_allocator.cpp │ ├── block_allocator.h │ ├── json.cpp │ ├── json.h │ ├── json_writer.cpp │ ├── json_writer.h │ ├── module.cmake │ ├── module.json │ ├── plugin_instance.cpp │ └── plugin_instance.hpp ├── ElasticClient │ ├── CMakeLists.txt │ ├── ElasticClient.cpp │ ├── ElasticClient.h │ ├── elastic_handler.hpp │ ├── module.cmake │ └── module.json ├── GraphiteClient │ ├── CMakeLists.txt │ ├── GraphiteClient.cpp │ ├── GraphiteClient.h │ ├── graphite_client.hpp │ ├── graphite_handler.hpp │ ├── module.cmake │ └── module.json ├── LUAScript │ ├── CMakeLists.txt │ ├── LUAScript.cpp │ ├── LUAScript.h │ ├── extscr_cli.cpp │ ├── extscr_cli.h │ ├── module.cmake │ ├── module.json │ ├── script_provider.cpp │ └── script_provider.hpp ├── NRDPClient │ ├── CMakeLists.txt │ ├── NRDPClient.cpp │ ├── NRDPClient.h │ ├── module.cmake │ ├── module.json │ ├── nrdp.cpp │ ├── nrdp.hpp │ ├── nrdp_client.hpp │ └── nrdp_handler.hpp ├── NRPEClient │ ├── CMakeLists.txt │ ├── NRPEClient.cpp │ ├── NRPEClient.h │ ├── module.cmake │ ├── module.json │ ├── nrpe_client.hpp │ └── nrpe_handler.hpp ├── NRPEServer │ ├── CMakeLists.txt │ ├── NRPEServer.cpp │ ├── NRPEServer.h │ ├── module.cmake │ └── module.json ├── NSCAClient │ ├── CMakeLists.txt │ ├── NSCAClient.cpp │ ├── NSCAClient.h │ ├── module.cmake │ ├── module.json │ ├── nsca_client.hpp │ └── nsca_handler.hpp ├── NSCAServer │ ├── CMakeLists.txt │ ├── NSCAServer.cpp │ ├── NSCAServer.h │ ├── module.cmake │ └── module.json ├── NSCPClient │ ├── CMakeLists.txt │ ├── NSCPClient.cpp │ ├── NSCPClient.h │ ├── module.cmake │ ├── module.json │ ├── nscp_client.hpp │ └── nscp_handler.hpp ├── NSClientServer │ ├── CMakeLists.txt │ ├── NSClientServer.cpp │ ├── NSClientServer.h │ ├── NSClientSocket.cpp │ ├── NSClientSocket.h │ ├── handler_impl.cpp │ ├── handler_impl.hpp │ ├── module.cmake │ └── module.json ├── Op5Client │ ├── CMakeLists.txt │ ├── Op5Client.cpp │ ├── Op5Client.h │ ├── module.cmake │ ├── module.json │ ├── op5_client.cpp │ └── op5_client.hpp ├── PythonScript │ ├── CMakeLists.txt │ ├── PythonScript.cpp │ ├── PythonScript.h │ ├── extscr_cli.cpp │ ├── extscr_cli.h │ ├── module.cmake │ ├── module.json │ ├── python_script.cpp │ ├── python_script.hpp │ ├── script_interface.hpp │ ├── script_provider.cpp │ ├── script_provider.hpp │ ├── script_wrapper.cpp │ └── script_wrapper.hpp ├── SMTPClient │ ├── CMakeLists.txt │ ├── SMTPClient.cpp │ ├── SMTPClient.h │ ├── module.cmake │ ├── module.json │ ├── smtp.cpp │ ├── smtp.hpp │ ├── smtp_client.hpp │ └── smtp_handler.hpp ├── SamplePluginSimple │ ├── CMakeLists.txt │ ├── SamplePluginSimple.cpp │ ├── SamplePluginSimple.h │ ├── module.cmake │ └── module.json ├── Scheduler │ ├── CMakeLists.txt │ ├── Scheduler.cpp │ ├── Scheduler.h │ ├── module.cmake │ ├── module.json │ ├── schedules_handler.cpp │ └── schedules_handler.hpp ├── SimpleCache │ ├── CMakeLists.txt │ ├── SimpleCache.cpp │ ├── SimpleCache.h │ ├── module.cmake │ └── module.json ├── SimpleFileWriter │ ├── CMakeLists.txt │ ├── SimpleFileWriter.cpp │ ├── SimpleFileWriter.h │ ├── module.cmake │ └── module.json ├── SyslogClient │ ├── CMakeLists.txt │ ├── SyslogClient.cpp │ ├── SyslogClient.h │ ├── module.cmake │ ├── module.json │ ├── syslog_client.hpp │ └── syslog_handler.hpp └── WEBServer │ ├── CMakeLists.txt │ ├── WEBServer.cpp │ ├── WEBServer.h │ ├── api_controller.cpp │ ├── api_controller.hpp │ ├── error_handler.cpp │ ├── error_handler.hpp │ ├── error_handler_interface.hpp │ ├── grant_store.cpp │ ├── grant_store.hpp │ ├── helpers.hpp │ ├── info_controller.cpp │ ├── info_controller.hpp │ ├── legacy_command_controller.cpp │ ├── legacy_command_controller.hpp │ ├── legacy_controller.cpp │ ├── legacy_controller.hpp │ ├── log_controller.cpp │ ├── log_controller.hpp │ ├── login_controller.cpp │ ├── login_controller.hpp │ ├── metrics_controller.cpp │ ├── metrics_controller.hpp │ ├── metrics_handler.cpp │ ├── metrics_handler.hpp │ ├── module.cmake │ ├── module.json │ ├── modules_controller.cpp │ ├── modules_controller.hpp │ ├── openmetrics_controller.cpp │ ├── openmetrics_controller.hpp │ ├── query_controller.cpp │ ├── query_controller.hpp │ ├── scripts_controller.cpp │ ├── scripts_controller.hpp │ ├── session_manager_interface.cpp │ ├── session_manager_interface.hpp │ ├── settings_controller.cpp │ ├── settings_controller.hpp │ ├── static_controller.cpp │ ├── static_controller.hpp │ ├── token_store.cpp │ ├── token_store.hpp │ ├── user_config.hpp │ └── web_cli_handler.hpp ├── nscp.spec.in ├── op5 ├── config │ ├── CMakeLists.txt │ └── op5.ini └── scripts │ ├── CMakeLists.txt │ ├── check_ad.vbs │ ├── check_time.vbs │ ├── restart_service.ps1 │ └── services.vbs ├── resources ├── CMakeLists.txt ├── help.ico ├── help.png ├── nsclient.ico └── nsclient.png ├── scripts ├── CMakeLists.txt ├── check_60s.bat ├── check_battery.vbs ├── check_files.vbs ├── check_long.bat ├── check_no_rdp.bat ├── check_ok.bat ├── check_ok.sh ├── check_ping.bat ├── check_printer.vbs ├── check_test.bat ├── check_test.ps1 ├── check_test.sh ├── check_test.vbs ├── check_updates.vbs ├── custom │ └── my_custom_script.bat ├── helper │ └── stress_test_web.py ├── lib │ ├── NagiosPlugins.vbs │ └── wrapper.vbs ├── lua │ ├── check_cpu_ex.lua │ ├── default_check_mk.lua │ ├── lib │ │ └── test_helper.lua │ ├── mock.lua │ ├── noperf.lua │ ├── test.lua │ ├── test_ext_script.lua │ └── test_nrpe.lua ├── modules │ ├── icamp │ │ ├── module.json │ │ └── scripts │ │ │ └── python │ │ │ └── icamp.py │ ├── icinga-client │ │ ├── CMakeLists.txt │ │ ├── module.json │ │ └── scripts │ │ │ └── python │ │ │ └── icinga.py │ └── remote-modules │ │ ├── CMakeLists.txt │ │ ├── module.json │ │ └── scripts │ │ └── python │ │ └── remote-modules.py ├── powershell.ps1 ├── python │ ├── __init__.py │ ├── badapp.py │ ├── docs.py │ ├── lib │ │ ├── __init__.py │ │ ├── google │ │ │ └── protobuf │ │ │ │ ├── __init__.py │ │ │ │ ├── any_pb2.py │ │ │ │ ├── api_pb2.py │ │ │ │ ├── compiler │ │ │ │ ├── __init__.py │ │ │ │ └── plugin_pb2.py │ │ │ │ ├── descriptor.py │ │ │ │ ├── descriptor_database.py │ │ │ │ ├── descriptor_pb2.py │ │ │ │ ├── descriptor_pool.py │ │ │ │ ├── duration_pb2.py │ │ │ │ ├── empty_pb2.py │ │ │ │ ├── field_mask_pb2.py │ │ │ │ ├── internal │ │ │ │ ├── __init__.py │ │ │ │ ├── _parameterized.py │ │ │ │ ├── api_implementation.py │ │ │ │ ├── builder.py │ │ │ │ ├── containers.py │ │ │ │ ├── decoder.py │ │ │ │ ├── encoder.py │ │ │ │ ├── enum_type_wrapper.py │ │ │ │ ├── extension_dict.py │ │ │ │ ├── field_mask.py │ │ │ │ ├── message_listener.py │ │ │ │ ├── python_message.py │ │ │ │ ├── testing_refleaks.py │ │ │ │ ├── type_checkers.py │ │ │ │ ├── well_known_types.py │ │ │ │ └── wire_format.py │ │ │ │ ├── json_format.py │ │ │ │ ├── message.py │ │ │ │ ├── message_factory.py │ │ │ │ ├── proto_builder.py │ │ │ │ ├── pyext │ │ │ │ ├── __init__.py │ │ │ │ └── cpp_message.py │ │ │ │ ├── reflection.py │ │ │ │ ├── service.py │ │ │ │ ├── service_reflection.py │ │ │ │ ├── source_context_pb2.py │ │ │ │ ├── struct_pb2.py │ │ │ │ ├── symbol_database.py │ │ │ │ ├── text_encoding.py │ │ │ │ ├── text_format.py │ │ │ │ ├── timestamp_pb2.py │ │ │ │ ├── type_pb2.py │ │ │ │ ├── unknown_fields.py │ │ │ │ ├── util │ │ │ │ └── __init__.py │ │ │ │ └── wrappers_pb2.py │ │ └── test_helper.py │ ├── sample.py │ ├── sample │ │ └── list_all_wmi_objects.py │ ├── test.py │ ├── test_all.py │ ├── test_eventlog.py │ ├── test_external_script.py │ ├── test_log_file.py │ ├── test_nrpe.py │ ├── test_nsca.py │ ├── test_nscp.py │ ├── test_pb.py │ ├── test_python.py │ ├── test_sample.py │ ├── test_scheduler.py │ ├── test_stress.py │ ├── test_w32_file.py │ ├── test_w32_schetask.py │ ├── test_w32_system.py │ └── test_w32_wmi.py └── test.lua ├── service ├── CMakeLists.txt ├── NSClient++.aps ├── NSClient++.cpp ├── NSClient++.h ├── NSClient++.manifest ├── NSClient++.rc ├── channels.hpp ├── cli_parser.cpp ├── cli_parser.hpp ├── commands.hpp ├── config.h.in ├── core_api.cpp ├── core_api.h ├── cron_test.cpp ├── dll_plugin.cpp ├── dll_plugin.h ├── logger │ ├── nsclient_logger.cpp │ ├── nsclient_logger.hpp │ ├── simple_console_logger.cpp │ ├── simple_console_logger.hpp │ ├── simple_file_logger.cpp │ ├── simple_file_logger.hpp │ ├── threaded_logger.cpp │ └── threaded_logger.hpp ├── master_plugin_list.cpp ├── master_plugin_list.hpp ├── nsclient_core_interface.hpp ├── path_manager.cpp ├── path_manager.hpp ├── performance_data_test.cpp ├── plugin_cache.cpp ├── plugin_cache.hpp ├── plugin_interface.hpp ├── plugin_list.hpp ├── plugin_manager.cpp ├── plugin_manager.hpp ├── registry_query_handler.cpp ├── registry_query_handler.hpp ├── res │ └── nscp.ico ├── resource.h ├── routers.hpp ├── scheduler_handler.cpp ├── scheduler_handler.hpp ├── service_manager.hpp ├── settings_client.cpp ├── settings_client.hpp ├── settings_query_handler.cpp ├── settings_query_handler.hpp ├── storage_manager.cpp ├── storage_manager.hpp ├── storage_query_handler.cpp ├── storage_query_handler.hpp ├── tray_manager.hpp ├── various_test.cpp ├── zip_plugin.cpp └── zip_plugin.h ├── tests ├── msi │ ├── helpers.py │ ├── requirements.txt │ ├── test-install.py │ └── tests │ │ ├── boot.ini-normal-config.yaml │ │ ├── boot.ini-rest-config-without-monitoring-tool.yaml │ │ ├── boot.ini-rest-config.yaml │ │ ├── boot.ini-rest-import-with-nrpe.yaml │ │ ├── insecure-nrpe.yaml │ │ ├── normal-install-without-monitoring-tool.yaml │ │ ├── normal-install.yaml │ │ ├── normal-upgrade.yaml │ │ ├── op5-ini-file.yaml │ │ ├── op5.yaml │ │ ├── password-enabled-web-server.yaml │ │ ├── registry-settings.yaml │ │ ├── upgrade-and-enabled-web-server.yaml │ │ └── web-only.yaml ├── nrpe │ ├── Dockerfile │ ├── openssl.cnf │ └── run-test.bat ├── nsca │ ├── Dockerfile │ ├── entrypoint.sh │ ├── openssl.cnf │ └── run-test.bat └── rest │ ├── .prettierrc │ ├── auth.test.ts │ ├── babel.config.js │ ├── index.test.ts │ ├── jest.config.js │ ├── legacy-query.test.ts │ ├── modules-v1.test.ts │ ├── modules-v2.test.ts │ ├── nsclient.ini │ ├── package-lock.json │ ├── package.json │ ├── permissions.test.ts │ ├── queries-v1.test.ts │ └── queries-v2.test.ts ├── vagrant ├── debian │ ├── jessie │ │ └── Vagrantfile │ └── wheezy-64 │ │ └── Vagrantfile ├── files │ ├── CPackRPM.cmake │ ├── build-cryptopp.sh │ ├── build-debian.sh │ ├── build-protobuf.sh │ ├── deb-puppet.sh │ └── plugin_pb2.py └── ubuntu │ ├── precise32 │ └── Vagrantfile │ ├── precise64 │ └── Vagrantfile │ ├── trusty32 │ └── Vagrantfile │ └── trusty64 │ └── Vagrantfile └── web ├── .editorconfig ├── .gitignore ├── CMakeLists.txt ├── README.md ├── dist └── index.html ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public └── nscp.png ├── src ├── App.tsx ├── Routes.tsx ├── api │ └── api.ts ├── common │ ├── authSlice.ts │ └── hooks │ │ └── auth.ts ├── components │ ├── AppNavbar.tsx │ ├── ErrorLogWidget.tsx │ ├── Login.tsx │ ├── Logs.tsx │ ├── MainPage.tsx │ ├── Metrics.tsx │ ├── Module.tsx │ ├── ModuleSettings.tsx │ ├── ModuleSettingsSection.tsx │ ├── Modules.tsx │ ├── Queries.tsx │ ├── Query.tsx │ ├── Settings.tsx │ ├── SideBar.tsx │ ├── SideMenu.tsx │ ├── Welcome.tsx │ └── atoms │ │ ├── NscpAlert.tsx │ │ ├── QueryResultChip.tsx │ │ ├── RefreshButton.tsx │ │ ├── SettingsChangedWidget.tsx │ │ ├── SettingsDialog.tsx │ │ ├── SettingsDialogValue.tsx │ │ ├── SettingsItem.tsx │ │ ├── Spacing.tsx │ │ ├── Toolbar.tsx │ │ └── Trail.tsx ├── index.css ├── main.tsx ├── metric_parser.ts ├── store │ └── store.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/actions/cryptopp/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/cryptopp/action.yaml -------------------------------------------------------------------------------- /.github/actions/google-test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/google-test/action.yml -------------------------------------------------------------------------------- /.github/actions/lua/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/lua/action.yaml -------------------------------------------------------------------------------- /.github/actions/mongoose/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/mongoose/action.yaml -------------------------------------------------------------------------------- /.github/actions/openssl/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/openssl/action.yaml -------------------------------------------------------------------------------- /.github/actions/protobuf/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/protobuf/action.yaml -------------------------------------------------------------------------------- /.github/actions/rest-test/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/rest-test/action.yaml -------------------------------------------------------------------------------- /.github/actions/tinyxml2/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/tinyxml2/action.yaml -------------------------------------------------------------------------------- /.github/actions/update-msvc/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/actions/update-msvc/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/build-feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/build-feature.yml -------------------------------------------------------------------------------- /.github/workflows/build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/build-main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/build-main.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.github/workflows/get-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/get-version.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/README.md -------------------------------------------------------------------------------- /changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/changelog -------------------------------------------------------------------------------- /check_deps.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/check_deps.cmake -------------------------------------------------------------------------------- /clients/nrpe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nrpe/CMakeLists.txt -------------------------------------------------------------------------------- /clients/nrpe/check_nrpe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nrpe/check_nrpe.cpp -------------------------------------------------------------------------------- /clients/nrpe/check_nrpe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nrpe/check_nrpe.hpp -------------------------------------------------------------------------------- /clients/nrpe/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nrpe/module.cmake -------------------------------------------------------------------------------- /clients/nscp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nscp/CMakeLists.txt -------------------------------------------------------------------------------- /clients/nscp/check_nscp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nscp/check_nscp.cpp -------------------------------------------------------------------------------- /clients/nscp/check_nscp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nscp/check_nscp.hpp -------------------------------------------------------------------------------- /clients/nscp/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/clients/nscp/module.cmake -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/README.source -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/nsclient++-bin.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/nsclient++-bin.install -------------------------------------------------------------------------------- /debian/nsclient++-doc.install: -------------------------------------------------------------------------------- 1 | #DOCS# 2 | -------------------------------------------------------------------------------- /debian/nsclient++-nsca.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/nsclient++-nsca.install -------------------------------------------------------------------------------- /debian/nsclient++-server.install: -------------------------------------------------------------------------------- 1 | /etc/nsclient -------------------------------------------------------------------------------- /debian/postinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/postinst.ex -------------------------------------------------------------------------------- /debian/postrm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/postrm.ex -------------------------------------------------------------------------------- /debian/preinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/preinst.ex -------------------------------------------------------------------------------- /debian/prerm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/prerm.ex -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/custom_theme/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/custom_theme/header.html -------------------------------------------------------------------------------- /docs/custom_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/custom_theme/main.html -------------------------------------------------------------------------------- /docs/custom_theme/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/custom_theme/partials/footer.html -------------------------------------------------------------------------------- /docs/docs/api/common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/common.md -------------------------------------------------------------------------------- /docs/docs/api/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/metrics.md -------------------------------------------------------------------------------- /docs/docs/api/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/plugin.md -------------------------------------------------------------------------------- /docs/docs/api/rest/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/index.md -------------------------------------------------------------------------------- /docs/docs/api/rest/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/info.md -------------------------------------------------------------------------------- /docs/docs/api/rest/legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/legacy.md -------------------------------------------------------------------------------- /docs/docs/api/rest/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/logs.md -------------------------------------------------------------------------------- /docs/docs/api/rest/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/modules.md -------------------------------------------------------------------------------- /docs/docs/api/rest/queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/queries.md -------------------------------------------------------------------------------- /docs/docs/api/rest/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/api/rest/scripts.md -------------------------------------------------------------------------------- /docs/docs/checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/checks.md -------------------------------------------------------------------------------- /docs/docs/custom.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/docs/extending/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/extending/index.md -------------------------------------------------------------------------------- /docs/docs/extending/python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/extending/python.md -------------------------------------------------------------------------------- /docs/docs/extending/zip-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/extending/zip-modules.md -------------------------------------------------------------------------------- /docs/docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/faq.md -------------------------------------------------------------------------------- /docs/docs/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/getting-started/index.md -------------------------------------------------------------------------------- /docs/docs/getting-started/nrpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/getting-started/nrpe.md -------------------------------------------------------------------------------- /docs/docs/getting-started/nsca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/getting-started/nsca.md -------------------------------------------------------------------------------- /docs/docs/getting-started/nsclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/getting-started/nsclient.md -------------------------------------------------------------------------------- /docs/docs/howto/03x_migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/03x_migration.md -------------------------------------------------------------------------------- /docs/docs/howto/checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/checks.md -------------------------------------------------------------------------------- /docs/docs/howto/counters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/counters.md -------------------------------------------------------------------------------- /docs/docs/howto/external_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/external_scripts.md -------------------------------------------------------------------------------- /docs/docs/howto/images/nrpe-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/images/nrpe-overview.png -------------------------------------------------------------------------------- /docs/docs/howto/images/nsca-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/images/nsca-overview.png -------------------------------------------------------------------------------- /docs/docs/howto/images/test-client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/images/test-client.png -------------------------------------------------------------------------------- /docs/docs/howto/nrpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/nrpe.md -------------------------------------------------------------------------------- /docs/docs/howto/nsca.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/nsca.md -------------------------------------------------------------------------------- /docs/docs/howto/run_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/howto/run_commands.md -------------------------------------------------------------------------------- /docs/docs/images/FAVICON.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/FAVICON.PNG -------------------------------------------------------------------------------- /docs/docs/images/api_web_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_changes.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_console.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_control.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_home.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_log.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_queries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_queries.png -------------------------------------------------------------------------------- /docs/docs/images/api_web_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/api_web_settings.png -------------------------------------------------------------------------------- /docs/docs/images/elevated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/elevated.png -------------------------------------------------------------------------------- /docs/docs/images/eventlog-find-event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/eventlog-find-event.png -------------------------------------------------------------------------------- /docs/docs/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/folder.png -------------------------------------------------------------------------------- /docs/docs/images/nsclient-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/nsclient-logo.png -------------------------------------------------------------------------------- /docs/docs/images/nscp-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/nscp-test.png -------------------------------------------------------------------------------- /docs/docs/images/realtime-monitoring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/realtime-monitoring.png -------------------------------------------------------------------------------- /docs/docs/images/registry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/registry.png -------------------------------------------------------------------------------- /docs/docs/images/timeouts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/timeouts.png -------------------------------------------------------------------------------- /docs/docs/images/web-check_cpu-cores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-check_cpu-cores.png -------------------------------------------------------------------------------- /docs/docs/images/web-check_cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-check_cpu.png -------------------------------------------------------------------------------- /docs/docs/images/web-check_ping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-check_ping.png -------------------------------------------------------------------------------- /docs/docs/images/web-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-login.png -------------------------------------------------------------------------------- /docs/docs/images/web-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-modules.png -------------------------------------------------------------------------------- /docs/docs/images/web-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/images/web-welcome.png -------------------------------------------------------------------------------- /docs/docs/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/img/favicon.png -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/installing.md -------------------------------------------------------------------------------- /docs/docs/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/pygments.css -------------------------------------------------------------------------------- /docs/docs/reference/check/CheckNSCP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/check/CheckNSCP.md -------------------------------------------------------------------------------- /docs/docs/reference/client/NRDPClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/NRDPClient.md -------------------------------------------------------------------------------- /docs/docs/reference/client/NRPEClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/NRPEClient.md -------------------------------------------------------------------------------- /docs/docs/reference/client/NRPEServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/NRPEServer.md -------------------------------------------------------------------------------- /docs/docs/reference/client/NSCAClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/NSCAClient.md -------------------------------------------------------------------------------- /docs/docs/reference/client/NSCAServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/NSCAServer.md -------------------------------------------------------------------------------- /docs/docs/reference/client/SMTPClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/client/SMTPClient.md -------------------------------------------------------------------------------- /docs/docs/reference/generic/LUAScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/generic/LUAScript.md -------------------------------------------------------------------------------- /docs/docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/index.md -------------------------------------------------------------------------------- /docs/docs/reference/misc/CheckNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/misc/CheckNet.md -------------------------------------------------------------------------------- /docs/docs/reference/misc/NSCPClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/misc/NSCPClient.md -------------------------------------------------------------------------------- /docs/docs/reference/misc/Op5Client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/misc/Op5Client.md -------------------------------------------------------------------------------- /docs/docs/reference/misc/WEBClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/reference/misc/WEBClient.md -------------------------------------------------------------------------------- /docs/docs/securing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/securing.md -------------------------------------------------------------------------------- /docs/docs/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/settings.md -------------------------------------------------------------------------------- /docs/docs/theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/theory.md -------------------------------------------------------------------------------- /docs/docs/tutorial/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/tutorial/index.md -------------------------------------------------------------------------------- /docs/docs/web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/docs/web.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/samples/CheckDisk_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/samples/CheckDisk_desc.md -------------------------------------------------------------------------------- /docs/samples/CheckEventLog_samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/samples/CheckEventLog_samples.md -------------------------------------------------------------------------------- /docs/samples/NRPEServer_desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/samples/NRPEServer_desc.md -------------------------------------------------------------------------------- /docs/samples/Scheduler_samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/samples/Scheduler_samples.md -------------------------------------------------------------------------------- /docs/source/realtime-monitoring.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/docs/source/realtime-monitoring.vsdx -------------------------------------------------------------------------------- /files/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/CMakeLists.txt -------------------------------------------------------------------------------- /files/NSC.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/NSC.dist -------------------------------------------------------------------------------- /files/boot.dist: -------------------------------------------------------------------------------- 1 | [settings] 2 | 1=old 3 | 2=ini 4 | 3=registry 5 | -------------------------------------------------------------------------------- /files/deb/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/deb/postinst -------------------------------------------------------------------------------- /files/deb/prerm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/deb/prerm -------------------------------------------------------------------------------- /files/init.centos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/init.centos.sh -------------------------------------------------------------------------------- /files/init.debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/init.debian.sh -------------------------------------------------------------------------------- /files/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/license.txt -------------------------------------------------------------------------------- /files/nrpe_dh_2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/nrpe_dh_2048.pem -------------------------------------------------------------------------------- /files/nrpe_dh_512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/nrpe_dh_512.pem -------------------------------------------------------------------------------- /files/nsclient.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/nsclient.dist -------------------------------------------------------------------------------- /files/nsclient.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/nsclient.service -------------------------------------------------------------------------------- /files/nsclient/nsclient.log: -------------------------------------------------------------------------------- 1 | #DUMMY FILE -------------------------------------------------------------------------------- /files/nscp.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/nscp.spec.in -------------------------------------------------------------------------------- /files/old-settings.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/old-settings.map -------------------------------------------------------------------------------- /files/unix-nsclient.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/files/unix-nsclient.conf.in -------------------------------------------------------------------------------- /include/CheckMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/CheckMemory.h -------------------------------------------------------------------------------- /include/EnumNtSrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/EnumNtSrv.cpp -------------------------------------------------------------------------------- /include/EnumNtSrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/EnumNtSrv.h -------------------------------------------------------------------------------- /include/EnumProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/EnumProcess.cpp -------------------------------------------------------------------------------- /include/EnumProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/EnumProcess.h -------------------------------------------------------------------------------- /include/NSCAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/NSCAPI.h -------------------------------------------------------------------------------- /include/ServiceCmd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/ServiceCmd.cpp -------------------------------------------------------------------------------- /include/ServiceCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/ServiceCmd.h -------------------------------------------------------------------------------- /include/b64/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/b64/b64.c -------------------------------------------------------------------------------- /include/b64/b64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/b64/b64.h -------------------------------------------------------------------------------- /include/b64/b64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/b64/b64.hpp -------------------------------------------------------------------------------- /include/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/buffer.hpp -------------------------------------------------------------------------------- /include/char_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/char_buffer.hpp -------------------------------------------------------------------------------- /include/check_mk/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_mk/data.hpp -------------------------------------------------------------------------------- /include/check_mk/lua/lua_check_mk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_mk/lua/lua_check_mk.cpp -------------------------------------------------------------------------------- /include/check_mk/lua/lua_check_mk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_mk/lua/lua_check_mk.hpp -------------------------------------------------------------------------------- /include/check_mk/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_mk/parser.hpp -------------------------------------------------------------------------------- /include/check_nt/client/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/client/socket.hpp -------------------------------------------------------------------------------- /include/check_nt/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/packet.cpp -------------------------------------------------------------------------------- /include/check_nt/packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/packet.hpp -------------------------------------------------------------------------------- /include/check_nt/server/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/server/handler.hpp -------------------------------------------------------------------------------- /include/check_nt/server/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/server/parser.hpp -------------------------------------------------------------------------------- /include/check_nt/server/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/check_nt/server/protocol.hpp -------------------------------------------------------------------------------- /include/client/command_line_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/client/command_line_parser.cpp -------------------------------------------------------------------------------- /include/client/command_line_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/client/command_line_parser.hpp -------------------------------------------------------------------------------- /include/client/simple_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/client/simple_client.cpp -------------------------------------------------------------------------------- /include/client/simple_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/client/simple_client.hpp -------------------------------------------------------------------------------- /include/clr/clr_scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/clr/clr_scoped_ptr.hpp -------------------------------------------------------------------------------- /include/collectd/collectd_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/collectd/collectd_packet.cpp -------------------------------------------------------------------------------- /include/collectd/collectd_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/collectd/collectd_packet.hpp -------------------------------------------------------------------------------- /include/com_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/com_helpers.hpp -------------------------------------------------------------------------------- /include/compat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/compat.cpp -------------------------------------------------------------------------------- /include/compat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/compat.hpp -------------------------------------------------------------------------------- /include/concurrent_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/concurrent_queue.hpp -------------------------------------------------------------------------------- /include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/config.h.in -------------------------------------------------------------------------------- /include/dll/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/dll/dll.hpp -------------------------------------------------------------------------------- /include/dll/impl_unix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/dll/impl_unix.hpp -------------------------------------------------------------------------------- /include/dll/impl_w32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/dll/impl_w32.hpp -------------------------------------------------------------------------------- /include/error/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/error/error.hpp -------------------------------------------------------------------------------- /include/error/error_com.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/error/error_com.hpp -------------------------------------------------------------------------------- /include/error/error_w32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/error/error_w32.cpp -------------------------------------------------------------------------------- /include/error/error_w32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/error/error_w32.hpp -------------------------------------------------------------------------------- /include/event_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/event_handler.hpp -------------------------------------------------------------------------------- /include/file_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/file_helpers.hpp -------------------------------------------------------------------------------- /include/firewall_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/firewall_helpers.hpp -------------------------------------------------------------------------------- /include/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/handle.hpp -------------------------------------------------------------------------------- /include/has-threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/has-threads.cpp -------------------------------------------------------------------------------- /include/has-threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/has-threads.hpp -------------------------------------------------------------------------------- /include/http/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/http/client.hpp -------------------------------------------------------------------------------- /include/json/use_json.cpp: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /include/lua/lua_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/lua/lua_core.hpp -------------------------------------------------------------------------------- /include/lua/lua_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/lua/lua_cpp.hpp -------------------------------------------------------------------------------- /include/lua/lua_script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/lua/lua_script.hpp -------------------------------------------------------------------------------- /include/managed/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/managed/convert.cpp -------------------------------------------------------------------------------- /include/managed/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/managed/convert.hpp -------------------------------------------------------------------------------- /include/managed/core_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/managed/core_impl.cpp -------------------------------------------------------------------------------- /include/managed/core_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/managed/core_impl.hpp -------------------------------------------------------------------------------- /include/metrics/metrics_store_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/metrics/metrics_store_map.cpp -------------------------------------------------------------------------------- /include/metrics/metrics_store_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/metrics/metrics_store_map.hpp -------------------------------------------------------------------------------- /include/net/icmp_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/net/icmp_header.hpp -------------------------------------------------------------------------------- /include/net/ipv4_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/net/ipv4_header.hpp -------------------------------------------------------------------------------- /include/net/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/net/net.hpp -------------------------------------------------------------------------------- /include/net/pinger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/net/pinger.hpp -------------------------------------------------------------------------------- /include/network_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/network_types.hpp -------------------------------------------------------------------------------- /include/nrpe/packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nrpe/packet.cpp -------------------------------------------------------------------------------- /include/nrpe/packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nrpe/packet.hpp -------------------------------------------------------------------------------- /include/nrpe/server/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nrpe/server/handler.hpp -------------------------------------------------------------------------------- /include/nrpe/server/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nrpe/server/parser.hpp -------------------------------------------------------------------------------- /include/nrpe/server/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nrpe/server/protocol.hpp -------------------------------------------------------------------------------- /include/nsca/nsca_packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsca/nsca_packet.cpp -------------------------------------------------------------------------------- /include/nsca/nsca_packet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsca/nsca_packet.hpp -------------------------------------------------------------------------------- /include/nsca/server/handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsca/server/handler.hpp -------------------------------------------------------------------------------- /include/nsca/server/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsca/server/parser.hpp -------------------------------------------------------------------------------- /include/nsca/server/protocol.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsca/server/protocol.hpp -------------------------------------------------------------------------------- /include/nscapi/command_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/command_client.cpp -------------------------------------------------------------------------------- /include/nscapi/command_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/command_client.hpp -------------------------------------------------------------------------------- /include/nscapi/command_proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/command_proxy.hpp -------------------------------------------------------------------------------- /include/nscapi/dll_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/dll_defines.hpp -------------------------------------------------------------------------------- /include/nscapi/log_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/log_handler.hpp -------------------------------------------------------------------------------- /include/nscapi/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/macros.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_core_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_core_helper.cpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_core_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_core_helper.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_core_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_core_wrapper.cpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_core_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_core_wrapper.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_helper.cpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_helper.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_plugin_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_plugin_impl.cpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_plugin_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_plugin_impl.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_protobuf_log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_protobuf_log.hpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_targets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_targets.cpp -------------------------------------------------------------------------------- /include/nscapi/nscapi_targets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/nscapi_targets.hpp -------------------------------------------------------------------------------- /include/nscapi/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscapi/plugin.hpp -------------------------------------------------------------------------------- /include/nsclient/logger/log_level.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsclient/logger/log_level.cpp -------------------------------------------------------------------------------- /include/nsclient/logger/log_level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsclient/logger/log_level.hpp -------------------------------------------------------------------------------- /include/nsclient/logger/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsclient/logger/logger.hpp -------------------------------------------------------------------------------- /include/nsclient_session.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nsclient_session.hpp -------------------------------------------------------------------------------- /include/nscpcrypt/nscpcrypt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/nscpcrypt/nscpcrypt.hpp -------------------------------------------------------------------------------- /include/parsers/cron/cron_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/cron/cron_parser.hpp -------------------------------------------------------------------------------- /include/parsers/filter/cli_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/filter/cli_helper.hpp -------------------------------------------------------------------------------- /include/parsers/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/helpers.cpp -------------------------------------------------------------------------------- /include/parsers/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/helpers.hpp -------------------------------------------------------------------------------- /include/parsers/operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/operators.cpp -------------------------------------------------------------------------------- /include/parsers/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/operators.hpp -------------------------------------------------------------------------------- /include/parsers/perfdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/perfdata.hpp -------------------------------------------------------------------------------- /include/parsers/where.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where.cpp -------------------------------------------------------------------------------- /include/parsers/where.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where.hpp -------------------------------------------------------------------------------- /include/parsers/where/binary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/binary_op.cpp -------------------------------------------------------------------------------- /include/parsers/where/binary_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/binary_op.hpp -------------------------------------------------------------------------------- /include/parsers/where/dll_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/dll_defines.hpp -------------------------------------------------------------------------------- /include/parsers/where/engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/engine.cpp -------------------------------------------------------------------------------- /include/parsers/where/engine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/engine.hpp -------------------------------------------------------------------------------- /include/parsers/where/engine_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/engine_impl.hpp -------------------------------------------------------------------------------- /include/parsers/where/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/helpers.cpp -------------------------------------------------------------------------------- /include/parsers/where/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/helpers.hpp -------------------------------------------------------------------------------- /include/parsers/where/list_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/list_node.cpp -------------------------------------------------------------------------------- /include/parsers/where/list_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/list_node.hpp -------------------------------------------------------------------------------- /include/parsers/where/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/node.cpp -------------------------------------------------------------------------------- /include/parsers/where/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/node.hpp -------------------------------------------------------------------------------- /include/parsers/where/unary_fun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/unary_fun.cpp -------------------------------------------------------------------------------- /include/parsers/where/unary_fun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/unary_fun.hpp -------------------------------------------------------------------------------- /include/parsers/where/unary_op.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/unary_op.cpp -------------------------------------------------------------------------------- /include/parsers/where/unary_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/unary_op.hpp -------------------------------------------------------------------------------- /include/parsers/where/value_node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/value_node.cpp -------------------------------------------------------------------------------- /include/parsers/where/value_node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/value_node.hpp -------------------------------------------------------------------------------- /include/parsers/where/variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/variable.cpp -------------------------------------------------------------------------------- /include/parsers/where/variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/parsers/where/variable.hpp -------------------------------------------------------------------------------- /include/pdh/basic_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/basic_impl.cpp -------------------------------------------------------------------------------- /include/pdh/basic_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/basic_impl.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_collectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_collectors.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_collectors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_collectors.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_counters.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_counters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_counters.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_enumerations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_enumerations.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_enumerations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_enumerations.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_interface.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_interface.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_query.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_query.hpp -------------------------------------------------------------------------------- /include/pdh/pdh_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_resolver.cpp -------------------------------------------------------------------------------- /include/pdh/pdh_resolver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/pdh_resolver.hpp -------------------------------------------------------------------------------- /include/pdh/thread_safe_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/thread_safe_impl.cpp -------------------------------------------------------------------------------- /include/pdh/thread_safe_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pdh/thread_safe_impl.hpp -------------------------------------------------------------------------------- /include/pid_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pid_file.cpp -------------------------------------------------------------------------------- /include/pid_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/pid_file.hpp -------------------------------------------------------------------------------- /include/process/execute_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/process/execute_process.hpp -------------------------------------------------------------------------------- /include/program_options_ex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/program_options_ex.hpp -------------------------------------------------------------------------------- /include/remote_processes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/remote_processes.hpp -------------------------------------------------------------------------------- /include/rrd_buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/rrd_buffer.hpp -------------------------------------------------------------------------------- /include/scheduler/simple_scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scheduler/simple_scheduler.cpp -------------------------------------------------------------------------------- /include/scheduler/simple_scheduler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scheduler/simple_scheduler.hpp -------------------------------------------------------------------------------- /include/scripts/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scripts/functions.hpp -------------------------------------------------------------------------------- /include/scripts/script_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scripts/script_interface.hpp -------------------------------------------------------------------------------- /include/scripts/script_nscp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scripts/script_nscp.cpp -------------------------------------------------------------------------------- /include/scripts/script_nscp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/scripts/script_nscp.hpp -------------------------------------------------------------------------------- /include/service/system_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/service/system_service.hpp -------------------------------------------------------------------------------- /include/service/unix_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/service/unix_service.hpp -------------------------------------------------------------------------------- /include/service/win32_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/service/win32_service.hpp -------------------------------------------------------------------------------- /include/settings/client/targets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/settings/client/targets.hpp -------------------------------------------------------------------------------- /include/settings/impl/settings_ini.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/settings/impl/settings_ini.hpp -------------------------------------------------------------------------------- /include/settings/impl/settings_old.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/settings/impl/settings_old.hpp -------------------------------------------------------------------------------- /include/settings/settings_core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/settings/settings_core.hpp -------------------------------------------------------------------------------- /include/settings/settings_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/settings/settings_value.hpp -------------------------------------------------------------------------------- /include/shared_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/shared_memory.hpp -------------------------------------------------------------------------------- /include/simple_registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/simple_registry.hpp -------------------------------------------------------------------------------- /include/simple_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/simple_timer.hpp -------------------------------------------------------------------------------- /include/simpleini/ConvertUTF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/simpleini/ConvertUTF.c -------------------------------------------------------------------------------- /include/simpleini/ConvertUTF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/simpleini/ConvertUTF.h -------------------------------------------------------------------------------- /include/simpleini/simpleini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/simpleini/simpleini.h -------------------------------------------------------------------------------- /include/socket/allowed_hosts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/allowed_hosts.hpp -------------------------------------------------------------------------------- /include/socket/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/client.hpp -------------------------------------------------------------------------------- /include/socket/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/connection.hpp -------------------------------------------------------------------------------- /include/socket/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/server.hpp -------------------------------------------------------------------------------- /include/socket/socket_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/socket_helpers.cpp -------------------------------------------------------------------------------- /include/socket/socket_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/socket/socket_helpers.hpp -------------------------------------------------------------------------------- /include/str/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/format.hpp -------------------------------------------------------------------------------- /include/str/nscp_string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/nscp_string.hpp -------------------------------------------------------------------------------- /include/str/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/utils.hpp -------------------------------------------------------------------------------- /include/str/utils_no_boost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/utils_no_boost.hpp -------------------------------------------------------------------------------- /include/str/wstring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/wstring.hpp -------------------------------------------------------------------------------- /include/str/xtos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/str/xtos.hpp -------------------------------------------------------------------------------- /include/swap_bytes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/swap_bytes.hpp -------------------------------------------------------------------------------- /include/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/sysinfo.cpp -------------------------------------------------------------------------------- /include/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/sysinfo.h -------------------------------------------------------------------------------- /include/threads/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/threads/queue.hpp -------------------------------------------------------------------------------- /include/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/timer.hpp -------------------------------------------------------------------------------- /include/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/types.hpp -------------------------------------------------------------------------------- /include/utf8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/utf8.cpp -------------------------------------------------------------------------------- /include/utf8.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/utf8.hpp -------------------------------------------------------------------------------- /include/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/utils.cpp -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/version.hpp.in -------------------------------------------------------------------------------- /include/win/credentials.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/credentials.cpp -------------------------------------------------------------------------------- /include/win/credentials.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/credentials.hpp -------------------------------------------------------------------------------- /include/win/psapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/psapi.hpp -------------------------------------------------------------------------------- /include/win/tool-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/tool-helper.h -------------------------------------------------------------------------------- /include/win/userenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/userenv.hpp -------------------------------------------------------------------------------- /include/win/windows.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/windows.hpp -------------------------------------------------------------------------------- /include/win/winsvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win/winsvc.hpp -------------------------------------------------------------------------------- /include/win_sysinfo/win_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win_sysinfo/win_defines.hpp -------------------------------------------------------------------------------- /include/win_sysinfo/win_sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win_sysinfo/win_sysinfo.cpp -------------------------------------------------------------------------------- /include/win_sysinfo/win_sysinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/win_sysinfo/win_sysinfo.hpp -------------------------------------------------------------------------------- /include/wmi/wmi_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/wmi/wmi_query.cpp -------------------------------------------------------------------------------- /include/wmi/wmi_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/wmi/wmi_query.hpp -------------------------------------------------------------------------------- /include/zip/miniz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/include/zip/miniz.hpp -------------------------------------------------------------------------------- /installer_lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installer_lib/CMakeLists.txt -------------------------------------------------------------------------------- /installer_lib/installer_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installer_lib/installer_helper.hpp -------------------------------------------------------------------------------- /installer_lib/installer_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installer_lib/installer_lib.cpp -------------------------------------------------------------------------------- /installer_lib/installer_lib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installer_lib/installer_lib.def -------------------------------------------------------------------------------- /installer_lib/keys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installer_lib/keys.hpp -------------------------------------------------------------------------------- /installers/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/CMakeLists.txt -------------------------------------------------------------------------------- /installers/common/op5_config.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/op5_config.wxs -------------------------------------------------------------------------------- /installers/common/op5_scripts.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/op5_scripts.wxs -------------------------------------------------------------------------------- /installers/common/re-generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/re-generate.bat -------------------------------------------------------------------------------- /installers/common/re-generate.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/re-generate.bat.in -------------------------------------------------------------------------------- /installers/common/scripts.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/scripts.wxs -------------------------------------------------------------------------------- /installers/common/web.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/common/web.wxs -------------------------------------------------------------------------------- /installers/installer-NSCP/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/installer-NSCP/License.rtf -------------------------------------------------------------------------------- /installers/installer-NSCP/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/installer-NSCP/Product.wxs -------------------------------------------------------------------------------- /installers/installer-NSCP/config.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/installer-NSCP/config.wxs -------------------------------------------------------------------------------- /installers/installer-NSCP/setup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/installer-NSCP/setup.wxs -------------------------------------------------------------------------------- /installers/installer-NSCP/wixca.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/installer-NSCP/wixca.dll -------------------------------------------------------------------------------- /installers/ui/ConfigureDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/ConfigureDlg.wxs -------------------------------------------------------------------------------- /installers/ui/InvalidConfigDlg1.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/InvalidConfigDlg1.wxs -------------------------------------------------------------------------------- /installers/ui/InvalidConfigDlg2.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/InvalidConfigDlg2.wxs -------------------------------------------------------------------------------- /installers/ui/InvalidConfigDlg3.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/InvalidConfigDlg3.wxs -------------------------------------------------------------------------------- /installers/ui/MonitoringToolDlg.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/MonitoringToolDlg.wxs -------------------------------------------------------------------------------- /installers/ui/WixUI_MondoNSCP.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/installers/ui/WixUI_MondoNSCP.wxs -------------------------------------------------------------------------------- /libs/dotnet-plugin-api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/dotnet-plugin-api/CMakeLists.txt -------------------------------------------------------------------------------- /libs/dotnet-plugin-api/NSCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/dotnet-plugin-api/NSCP.h -------------------------------------------------------------------------------- /libs/expression_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/expression_parser/CMakeLists.txt -------------------------------------------------------------------------------- /libs/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/lua/CMakeLists.txt -------------------------------------------------------------------------------- /libs/lua_nscp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/lua_nscp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/lua_nscp/lua_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/lua_nscp/lua_core.cpp -------------------------------------------------------------------------------- /libs/lua_nscp/lua_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/lua_nscp/lua_cpp.cpp -------------------------------------------------------------------------------- /libs/lua_nscp/lua_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/lua_nscp/lua_script.cpp -------------------------------------------------------------------------------- /libs/minizip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/minizip/CMakeLists.txt -------------------------------------------------------------------------------- /libs/mongoose-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/mongoose-cpp/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Client.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Client.hpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Controller.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Controller.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/Helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Helpers.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Helpers.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/LICENSE -------------------------------------------------------------------------------- /libs/mongoose-cpp/MatchController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/MatchController.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/MatchController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/MatchController.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/RegexController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/RegexController.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/RegexController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/RegexController.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/Request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Request.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Request.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/RequestHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/RequestHandler.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/Response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Response.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Response.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Server.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/Server.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/ServerImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/ServerImpl.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/ServerImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/ServerImpl.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/StreamResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/StreamResponse.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/StreamResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/StreamResponse.h -------------------------------------------------------------------------------- /libs/mongoose-cpp/dll_defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/dll_defines.hpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/mcp_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/mcp_exception.hpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/mongoose_wrapper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /libs/mongoose-cpp/string_response.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/string_response.cpp -------------------------------------------------------------------------------- /libs/mongoose-cpp/string_response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/mongoose-cpp/string_response.hpp -------------------------------------------------------------------------------- /libs/nscpcrypt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/nscpcrypt/CMakeLists.txt -------------------------------------------------------------------------------- /libs/nscpcrypt/nscpcrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/nscpcrypt/nscpcrypt.cpp -------------------------------------------------------------------------------- /libs/perfconfig_parser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/perfconfig_parser/CMakeLists.txt -------------------------------------------------------------------------------- /libs/plugin_api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/plugin_api/CMakeLists.txt -------------------------------------------------------------------------------- /libs/plugin_api/nscapi_helper_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/plugin_api/nscapi_helper_test.cpp -------------------------------------------------------------------------------- /libs/protobuf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/CMakeLists.txt -------------------------------------------------------------------------------- /libs/protobuf/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/common.proto -------------------------------------------------------------------------------- /libs/protobuf/log.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/log.proto -------------------------------------------------------------------------------- /libs/protobuf/metrics.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/metrics.proto -------------------------------------------------------------------------------- /libs/protobuf/plugin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/plugin.proto -------------------------------------------------------------------------------- /libs/protobuf/registry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/registry.proto -------------------------------------------------------------------------------- /libs/protobuf/settings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/settings.proto -------------------------------------------------------------------------------- /libs/protobuf/storage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf/storage.proto -------------------------------------------------------------------------------- /libs/protobuf_net/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf_net/CMakeLists.txt -------------------------------------------------------------------------------- /libs/protobuf_net/Google.Protobuf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf_net/Google.Protobuf.dll -------------------------------------------------------------------------------- /libs/protobuf_net/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/protobuf_net/Helpers.cs -------------------------------------------------------------------------------- /libs/settings_manager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/settings_manager/CMakeLists.txt -------------------------------------------------------------------------------- /libs/where_filter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/where_filter/CMakeLists.txt -------------------------------------------------------------------------------- /libs/win_sysinfo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/libs/win_sysinfo/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CauseCrashes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CauseCrashes/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CauseCrashes/CauseCrashes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CauseCrashes/CauseCrashes.cpp -------------------------------------------------------------------------------- /modules/CauseCrashes/CauseCrashes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CauseCrashes/CauseCrashes.h -------------------------------------------------------------------------------- /modules/CauseCrashes/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CauseCrashes/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CauseCrashes/module.json -------------------------------------------------------------------------------- /modules/CheckDisk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckDisk/CheckDisk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/CheckDisk.cpp -------------------------------------------------------------------------------- /modules/CheckDisk/CheckDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/CheckDisk.h -------------------------------------------------------------------------------- /modules/CheckDisk/check_drive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/check_drive.cpp -------------------------------------------------------------------------------- /modules/CheckDisk/check_drive.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/check_drive.hpp -------------------------------------------------------------------------------- /modules/CheckDisk/file_finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/file_finder.cpp -------------------------------------------------------------------------------- /modules/CheckDisk/file_finder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/file_finder.hpp -------------------------------------------------------------------------------- /modules/CheckDisk/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/filter.cpp -------------------------------------------------------------------------------- /modules/CheckDisk/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/filter.hpp -------------------------------------------------------------------------------- /modules/CheckDisk/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/module.cmake -------------------------------------------------------------------------------- /modules/CheckDisk/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDisk/module.json -------------------------------------------------------------------------------- /modules/CheckDocker/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckDocker/CheckDocker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/CheckDocker.cpp -------------------------------------------------------------------------------- /modules/CheckDocker/CheckDocker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/CheckDocker.h -------------------------------------------------------------------------------- /modules/CheckDocker/check_docker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/check_docker.cpp -------------------------------------------------------------------------------- /modules/CheckDocker/check_docker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/check_docker.hpp -------------------------------------------------------------------------------- /modules/CheckDocker/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CheckDocker/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckDocker/module.json -------------------------------------------------------------------------------- /modules/CheckEventLog/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckEventLog/CheckEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/CheckEventLog.h -------------------------------------------------------------------------------- /modules/CheckEventLog/bookmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/bookmarks.cpp -------------------------------------------------------------------------------- /modules/CheckEventLog/bookmarks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/bookmarks.hpp -------------------------------------------------------------------------------- /modules/CheckEventLog/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/filter.cpp -------------------------------------------------------------------------------- /modules/CheckEventLog/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/filter.hpp -------------------------------------------------------------------------------- /modules/CheckEventLog/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/module.cmake -------------------------------------------------------------------------------- /modules/CheckEventLog/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckEventLog/module.json -------------------------------------------------------------------------------- /modules/CheckExternalScripts/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckExternalScripts/alias.hpp -------------------------------------------------------------------------------- /modules/CheckExternalScripts/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CheckHelpers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckHelpers/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckHelpers/CheckHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckHelpers/CheckHelpers.cpp -------------------------------------------------------------------------------- /modules/CheckHelpers/CheckHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckHelpers/CheckHelpers.h -------------------------------------------------------------------------------- /modules/CheckHelpers/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CheckHelpers/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckHelpers/module.json -------------------------------------------------------------------------------- /modules/CheckLogFile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckLogFile/CheckLogFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/CheckLogFile.cpp -------------------------------------------------------------------------------- /modules/CheckLogFile/CheckLogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/CheckLogFile.h -------------------------------------------------------------------------------- /modules/CheckLogFile/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/filter.cpp -------------------------------------------------------------------------------- /modules/CheckLogFile/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/filter.hpp -------------------------------------------------------------------------------- /modules/CheckLogFile/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/module.cmake -------------------------------------------------------------------------------- /modules/CheckLogFile/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/module.json -------------------------------------------------------------------------------- /modules/CheckLogFile/realtime_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/realtime_data.cpp -------------------------------------------------------------------------------- /modules/CheckLogFile/realtime_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckLogFile/realtime_data.hpp -------------------------------------------------------------------------------- /modules/CheckMKClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckMKClient/CheckMKClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKClient/CheckMKClient.h -------------------------------------------------------------------------------- /modules/CheckMKClient/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKClient/module.cmake -------------------------------------------------------------------------------- /modules/CheckMKClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKClient/module.json -------------------------------------------------------------------------------- /modules/CheckMKServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckMKServer/CheckMKServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/CheckMKServer.h -------------------------------------------------------------------------------- /modules/CheckMKServer/handler_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/handler_impl.cpp -------------------------------------------------------------------------------- /modules/CheckMKServer/handler_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/handler_impl.hpp -------------------------------------------------------------------------------- /modules/CheckMKServer/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/module.cmake -------------------------------------------------------------------------------- /modules/CheckMKServer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckMKServer/module.json -------------------------------------------------------------------------------- /modules/CheckNSCP/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNSCP/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckNSCP/CheckNSCP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNSCP/CheckNSCP.cpp -------------------------------------------------------------------------------- /modules/CheckNSCP/CheckNSCP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNSCP/CheckNSCP.h -------------------------------------------------------------------------------- /modules/CheckNSCP/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CheckNSCP/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNSCP/module.json -------------------------------------------------------------------------------- /modules/CheckNet/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckNet/CheckNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/CheckNet.cpp -------------------------------------------------------------------------------- /modules/CheckNet/CheckNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/CheckNet.h -------------------------------------------------------------------------------- /modules/CheckNet/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/filter.cpp -------------------------------------------------------------------------------- /modules/CheckNet/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/filter.hpp -------------------------------------------------------------------------------- /modules/CheckNet/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CheckNet/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckNet/module.json -------------------------------------------------------------------------------- /modules/CheckPowershell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckPowershell/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckPowershell/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckPowershell/module.cmake -------------------------------------------------------------------------------- /modules/CheckPowershell/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckPowershell/module.json -------------------------------------------------------------------------------- /modules/CheckSystem/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckSystem/CheckSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/CheckSystem.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/CheckSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/CheckSystem.h -------------------------------------------------------------------------------- /modules/CheckSystem/check_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_memory.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_memory.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_network.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_network.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_pdh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_pdh.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_pdh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_pdh.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_process.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/check_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/check_process.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/counter_filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/counter_filter.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/counter_filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/counter_filter.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/filter.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/filter.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/module.cmake -------------------------------------------------------------------------------- /modules/CheckSystem/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/module.json -------------------------------------------------------------------------------- /modules/CheckSystem/pdh_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/pdh_thread.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/pdh_thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/pdh_thread.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/realtime_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/realtime_data.cpp -------------------------------------------------------------------------------- /modules/CheckSystem/realtime_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/realtime_data.hpp -------------------------------------------------------------------------------- /modules/CheckSystem/settings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystem/settings.hpp -------------------------------------------------------------------------------- /modules/CheckSystemUnix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckSystemUnix/CheckSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/CheckSystem.h -------------------------------------------------------------------------------- /modules/CheckSystemUnix/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/filter.cpp -------------------------------------------------------------------------------- /modules/CheckSystemUnix/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/filter.hpp -------------------------------------------------------------------------------- /modules/CheckSystemUnix/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/module.cmake -------------------------------------------------------------------------------- /modules/CheckSystemUnix/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckSystemUnix/module.json -------------------------------------------------------------------------------- /modules/CheckTaskSched/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckTaskSched/TaskSched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/TaskSched.cpp -------------------------------------------------------------------------------- /modules/CheckTaskSched/TaskSched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/TaskSched.h -------------------------------------------------------------------------------- /modules/CheckTaskSched/filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/filter.cpp -------------------------------------------------------------------------------- /modules/CheckTaskSched/filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/filter.hpp -------------------------------------------------------------------------------- /modules/CheckTaskSched/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/module.cmake -------------------------------------------------------------------------------- /modules/CheckTaskSched/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckTaskSched/module.json -------------------------------------------------------------------------------- /modules/CheckWMI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckWMI/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CheckWMI/CheckWMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckWMI/CheckWMI.cpp -------------------------------------------------------------------------------- /modules/CheckWMI/CheckWMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckWMI/CheckWMI.h -------------------------------------------------------------------------------- /modules/CheckWMI/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckWMI/module.cmake -------------------------------------------------------------------------------- /modules/CheckWMI/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CheckWMI/module.json -------------------------------------------------------------------------------- /modules/CollectdClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CollectdClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CollectdClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CollectdClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CollectdClient/module.json -------------------------------------------------------------------------------- /modules/CommandClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CommandClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/CommandClient/CommandClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CommandClient/CommandClient.h -------------------------------------------------------------------------------- /modules/CommandClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/CommandClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/CommandClient/module.json -------------------------------------------------------------------------------- /modules/DotnetPlugins/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/AssemblyInfo.cpp -------------------------------------------------------------------------------- /modules/DotnetPlugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/CMakeLists.txt -------------------------------------------------------------------------------- /modules/DotnetPlugins/DotnetPlugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/DotnetPlugins.h -------------------------------------------------------------------------------- /modules/DotnetPlugins/json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/json.cpp -------------------------------------------------------------------------------- /modules/DotnetPlugins/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/json.h -------------------------------------------------------------------------------- /modules/DotnetPlugins/json_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/json_writer.cpp -------------------------------------------------------------------------------- /modules/DotnetPlugins/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/json_writer.h -------------------------------------------------------------------------------- /modules/DotnetPlugins/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/module.cmake -------------------------------------------------------------------------------- /modules/DotnetPlugins/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/DotnetPlugins/module.json -------------------------------------------------------------------------------- /modules/ElasticClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/ElasticClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/ElasticClient/ElasticClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/ElasticClient/ElasticClient.h -------------------------------------------------------------------------------- /modules/ElasticClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/ElasticClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/ElasticClient/module.json -------------------------------------------------------------------------------- /modules/GraphiteClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/GraphiteClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/GraphiteClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/GraphiteClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/GraphiteClient/module.json -------------------------------------------------------------------------------- /modules/LUAScript/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/CMakeLists.txt -------------------------------------------------------------------------------- /modules/LUAScript/LUAScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/LUAScript.cpp -------------------------------------------------------------------------------- /modules/LUAScript/LUAScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/LUAScript.h -------------------------------------------------------------------------------- /modules/LUAScript/extscr_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/extscr_cli.cpp -------------------------------------------------------------------------------- /modules/LUAScript/extscr_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/extscr_cli.h -------------------------------------------------------------------------------- /modules/LUAScript/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/module.cmake -------------------------------------------------------------------------------- /modules/LUAScript/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/module.json -------------------------------------------------------------------------------- /modules/LUAScript/script_provider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/script_provider.cpp -------------------------------------------------------------------------------- /modules/LUAScript/script_provider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/LUAScript/script_provider.hpp -------------------------------------------------------------------------------- /modules/NRDPClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NRDPClient/NRDPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/NRDPClient.cpp -------------------------------------------------------------------------------- /modules/NRDPClient/NRDPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/NRDPClient.h -------------------------------------------------------------------------------- /modules/NRDPClient/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/module.cmake -------------------------------------------------------------------------------- /modules/NRDPClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/module.json -------------------------------------------------------------------------------- /modules/NRDPClient/nrdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/nrdp.cpp -------------------------------------------------------------------------------- /modules/NRDPClient/nrdp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/nrdp.hpp -------------------------------------------------------------------------------- /modules/NRDPClient/nrdp_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/nrdp_client.hpp -------------------------------------------------------------------------------- /modules/NRDPClient/nrdp_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRDPClient/nrdp_handler.hpp -------------------------------------------------------------------------------- /modules/NRPEClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NRPEClient/NRPEClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/NRPEClient.cpp -------------------------------------------------------------------------------- /modules/NRPEClient/NRPEClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/NRPEClient.h -------------------------------------------------------------------------------- /modules/NRPEClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NRPEClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/module.json -------------------------------------------------------------------------------- /modules/NRPEClient/nrpe_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/nrpe_client.hpp -------------------------------------------------------------------------------- /modules/NRPEClient/nrpe_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEClient/nrpe_handler.hpp -------------------------------------------------------------------------------- /modules/NRPEServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEServer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NRPEServer/NRPEServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEServer/NRPEServer.cpp -------------------------------------------------------------------------------- /modules/NRPEServer/NRPEServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEServer/NRPEServer.h -------------------------------------------------------------------------------- /modules/NRPEServer/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NRPEServer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NRPEServer/module.json -------------------------------------------------------------------------------- /modules/NSCAClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NSCAClient/NSCAClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/NSCAClient.cpp -------------------------------------------------------------------------------- /modules/NSCAClient/NSCAClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/NSCAClient.h -------------------------------------------------------------------------------- /modules/NSCAClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NSCAClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/module.json -------------------------------------------------------------------------------- /modules/NSCAClient/nsca_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/nsca_client.hpp -------------------------------------------------------------------------------- /modules/NSCAClient/nsca_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAClient/nsca_handler.hpp -------------------------------------------------------------------------------- /modules/NSCAServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAServer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NSCAServer/NSCAServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAServer/NSCAServer.cpp -------------------------------------------------------------------------------- /modules/NSCAServer/NSCAServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAServer/NSCAServer.h -------------------------------------------------------------------------------- /modules/NSCAServer/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NSCAServer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCAServer/module.json -------------------------------------------------------------------------------- /modules/NSCPClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NSCPClient/NSCPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/NSCPClient.cpp -------------------------------------------------------------------------------- /modules/NSCPClient/NSCPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/NSCPClient.h -------------------------------------------------------------------------------- /modules/NSCPClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NSCPClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/module.json -------------------------------------------------------------------------------- /modules/NSCPClient/nscp_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/nscp_client.hpp -------------------------------------------------------------------------------- /modules/NSCPClient/nscp_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSCPClient/nscp_handler.hpp -------------------------------------------------------------------------------- /modules/NSClientServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSClientServer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/NSClientServer/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/NSClientServer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/NSClientServer/module.json -------------------------------------------------------------------------------- /modules/Op5Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/CMakeLists.txt -------------------------------------------------------------------------------- /modules/Op5Client/Op5Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/Op5Client.cpp -------------------------------------------------------------------------------- /modules/Op5Client/Op5Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/Op5Client.h -------------------------------------------------------------------------------- /modules/Op5Client/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/Op5Client/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/module.json -------------------------------------------------------------------------------- /modules/Op5Client/op5_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/op5_client.cpp -------------------------------------------------------------------------------- /modules/Op5Client/op5_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Op5Client/op5_client.hpp -------------------------------------------------------------------------------- /modules/PythonScript/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/CMakeLists.txt -------------------------------------------------------------------------------- /modules/PythonScript/PythonScript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/PythonScript.cpp -------------------------------------------------------------------------------- /modules/PythonScript/PythonScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/PythonScript.h -------------------------------------------------------------------------------- /modules/PythonScript/extscr_cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/extscr_cli.cpp -------------------------------------------------------------------------------- /modules/PythonScript/extscr_cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/extscr_cli.h -------------------------------------------------------------------------------- /modules/PythonScript/module.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/module.cmake -------------------------------------------------------------------------------- /modules/PythonScript/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/module.json -------------------------------------------------------------------------------- /modules/PythonScript/python_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/python_script.cpp -------------------------------------------------------------------------------- /modules/PythonScript/python_script.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/PythonScript/python_script.hpp -------------------------------------------------------------------------------- /modules/SMTPClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/SMTPClient/SMTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/SMTPClient.cpp -------------------------------------------------------------------------------- /modules/SMTPClient/SMTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/SMTPClient.h -------------------------------------------------------------------------------- /modules/SMTPClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/SMTPClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/module.json -------------------------------------------------------------------------------- /modules/SMTPClient/smtp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/smtp.cpp -------------------------------------------------------------------------------- /modules/SMTPClient/smtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/smtp.hpp -------------------------------------------------------------------------------- /modules/SMTPClient/smtp_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/smtp_client.hpp -------------------------------------------------------------------------------- /modules/SMTPClient/smtp_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SMTPClient/smtp_handler.hpp -------------------------------------------------------------------------------- /modules/SamplePluginSimple/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/SamplePluginSimple/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SamplePluginSimple/module.json -------------------------------------------------------------------------------- /modules/Scheduler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Scheduler/CMakeLists.txt -------------------------------------------------------------------------------- /modules/Scheduler/Scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Scheduler/Scheduler.cpp -------------------------------------------------------------------------------- /modules/Scheduler/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Scheduler/Scheduler.h -------------------------------------------------------------------------------- /modules/Scheduler/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/Scheduler/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/Scheduler/module.json -------------------------------------------------------------------------------- /modules/SimpleCache/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SimpleCache/CMakeLists.txt -------------------------------------------------------------------------------- /modules/SimpleCache/SimpleCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SimpleCache/SimpleCache.cpp -------------------------------------------------------------------------------- /modules/SimpleCache/SimpleCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SimpleCache/SimpleCache.h -------------------------------------------------------------------------------- /modules/SimpleCache/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/SimpleCache/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SimpleCache/module.json -------------------------------------------------------------------------------- /modules/SimpleFileWriter/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/SimpleFileWriter/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SimpleFileWriter/module.json -------------------------------------------------------------------------------- /modules/SyslogClient/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SyslogClient/CMakeLists.txt -------------------------------------------------------------------------------- /modules/SyslogClient/SyslogClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SyslogClient/SyslogClient.cpp -------------------------------------------------------------------------------- /modules/SyslogClient/SyslogClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SyslogClient/SyslogClient.h -------------------------------------------------------------------------------- /modules/SyslogClient/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/SyslogClient/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SyslogClient/module.json -------------------------------------------------------------------------------- /modules/SyslogClient/syslog_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/SyslogClient/syslog_client.hpp -------------------------------------------------------------------------------- /modules/WEBServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/CMakeLists.txt -------------------------------------------------------------------------------- /modules/WEBServer/WEBServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/WEBServer.cpp -------------------------------------------------------------------------------- /modules/WEBServer/WEBServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/WEBServer.h -------------------------------------------------------------------------------- /modules/WEBServer/api_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/api_controller.cpp -------------------------------------------------------------------------------- /modules/WEBServer/api_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/api_controller.hpp -------------------------------------------------------------------------------- /modules/WEBServer/error_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/error_handler.cpp -------------------------------------------------------------------------------- /modules/WEBServer/error_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/error_handler.hpp -------------------------------------------------------------------------------- /modules/WEBServer/grant_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/grant_store.cpp -------------------------------------------------------------------------------- /modules/WEBServer/grant_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/grant_store.hpp -------------------------------------------------------------------------------- /modules/WEBServer/helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/helpers.hpp -------------------------------------------------------------------------------- /modules/WEBServer/info_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/info_controller.cpp -------------------------------------------------------------------------------- /modules/WEBServer/info_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/info_controller.hpp -------------------------------------------------------------------------------- /modules/WEBServer/log_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/log_controller.cpp -------------------------------------------------------------------------------- /modules/WEBServer/log_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/log_controller.hpp -------------------------------------------------------------------------------- /modules/WEBServer/login_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/login_controller.cpp -------------------------------------------------------------------------------- /modules/WEBServer/login_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/login_controller.hpp -------------------------------------------------------------------------------- /modules/WEBServer/metrics_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/metrics_handler.cpp -------------------------------------------------------------------------------- /modules/WEBServer/metrics_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/metrics_handler.hpp -------------------------------------------------------------------------------- /modules/WEBServer/module.cmake: -------------------------------------------------------------------------------- 1 | set(BUILD_MODULE 1) 2 | -------------------------------------------------------------------------------- /modules/WEBServer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/module.json -------------------------------------------------------------------------------- /modules/WEBServer/query_controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/query_controller.cpp -------------------------------------------------------------------------------- /modules/WEBServer/query_controller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/query_controller.hpp -------------------------------------------------------------------------------- /modules/WEBServer/token_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/token_store.cpp -------------------------------------------------------------------------------- /modules/WEBServer/token_store.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/token_store.hpp -------------------------------------------------------------------------------- /modules/WEBServer/user_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/user_config.hpp -------------------------------------------------------------------------------- /modules/WEBServer/web_cli_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/modules/WEBServer/web_cli_handler.hpp -------------------------------------------------------------------------------- /nscp.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/nscp.spec.in -------------------------------------------------------------------------------- /op5/config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/config/CMakeLists.txt -------------------------------------------------------------------------------- /op5/config/op5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/config/op5.ini -------------------------------------------------------------------------------- /op5/scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /op5/scripts/check_ad.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/scripts/check_ad.vbs -------------------------------------------------------------------------------- /op5/scripts/check_time.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/scripts/check_time.vbs -------------------------------------------------------------------------------- /op5/scripts/restart_service.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/scripts/restart_service.ps1 -------------------------------------------------------------------------------- /op5/scripts/services.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/op5/scripts/services.vbs -------------------------------------------------------------------------------- /resources/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/resources/CMakeLists.txt -------------------------------------------------------------------------------- /resources/help.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/resources/help.ico -------------------------------------------------------------------------------- /resources/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/resources/help.png -------------------------------------------------------------------------------- /resources/nsclient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/resources/nsclient.ico -------------------------------------------------------------------------------- /resources/nsclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/resources/nsclient.png -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/check_60s.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_60s.bat -------------------------------------------------------------------------------- /scripts/check_battery.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_battery.vbs -------------------------------------------------------------------------------- /scripts/check_files.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_files.vbs -------------------------------------------------------------------------------- /scripts/check_long.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_long.bat -------------------------------------------------------------------------------- /scripts/check_no_rdp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_no_rdp.bat -------------------------------------------------------------------------------- /scripts/check_ok.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_ok.bat -------------------------------------------------------------------------------- /scripts/check_ok.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_ok.sh -------------------------------------------------------------------------------- /scripts/check_ping.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_ping.bat -------------------------------------------------------------------------------- /scripts/check_printer.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_printer.vbs -------------------------------------------------------------------------------- /scripts/check_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_test.bat -------------------------------------------------------------------------------- /scripts/check_test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_test.ps1 -------------------------------------------------------------------------------- /scripts/check_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_test.sh -------------------------------------------------------------------------------- /scripts/check_test.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_test.vbs -------------------------------------------------------------------------------- /scripts/check_updates.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/check_updates.vbs -------------------------------------------------------------------------------- /scripts/custom/my_custom_script.bat: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/helper/stress_test_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/helper/stress_test_web.py -------------------------------------------------------------------------------- /scripts/lib/NagiosPlugins.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lib/NagiosPlugins.vbs -------------------------------------------------------------------------------- /scripts/lib/wrapper.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lib/wrapper.vbs -------------------------------------------------------------------------------- /scripts/lua/check_cpu_ex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/check_cpu_ex.lua -------------------------------------------------------------------------------- /scripts/lua/default_check_mk.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/default_check_mk.lua -------------------------------------------------------------------------------- /scripts/lua/lib/test_helper.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/lib/test_helper.lua -------------------------------------------------------------------------------- /scripts/lua/mock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/mock.lua -------------------------------------------------------------------------------- /scripts/lua/noperf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/noperf.lua -------------------------------------------------------------------------------- /scripts/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/test.lua -------------------------------------------------------------------------------- /scripts/lua/test_ext_script.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/test_ext_script.lua -------------------------------------------------------------------------------- /scripts/lua/test_nrpe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/lua/test_nrpe.lua -------------------------------------------------------------------------------- /scripts/modules/icamp/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/modules/icamp/module.json -------------------------------------------------------------------------------- /scripts/powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/powershell.ps1 -------------------------------------------------------------------------------- /scripts/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/badapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/badapp.py -------------------------------------------------------------------------------- /scripts/python/docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/docs.py -------------------------------------------------------------------------------- /scripts/python/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/lib/google/protobuf/compiler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/lib/google/protobuf/pyext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/lib/google/protobuf/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/python/lib/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/lib/test_helper.py -------------------------------------------------------------------------------- /scripts/python/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/sample.py -------------------------------------------------------------------------------- /scripts/python/test.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /scripts/python/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_all.py -------------------------------------------------------------------------------- /scripts/python/test_eventlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_eventlog.py -------------------------------------------------------------------------------- /scripts/python/test_external_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_external_script.py -------------------------------------------------------------------------------- /scripts/python/test_log_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_log_file.py -------------------------------------------------------------------------------- /scripts/python/test_nrpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_nrpe.py -------------------------------------------------------------------------------- /scripts/python/test_nsca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_nsca.py -------------------------------------------------------------------------------- /scripts/python/test_nscp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_nscp.py -------------------------------------------------------------------------------- /scripts/python/test_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_pb.py -------------------------------------------------------------------------------- /scripts/python/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_python.py -------------------------------------------------------------------------------- /scripts/python/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_sample.py -------------------------------------------------------------------------------- /scripts/python/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_scheduler.py -------------------------------------------------------------------------------- /scripts/python/test_stress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_stress.py -------------------------------------------------------------------------------- /scripts/python/test_w32_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_w32_file.py -------------------------------------------------------------------------------- /scripts/python/test_w32_schetask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_w32_schetask.py -------------------------------------------------------------------------------- /scripts/python/test_w32_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_w32_system.py -------------------------------------------------------------------------------- /scripts/python/test_w32_wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/python/test_w32_wmi.py -------------------------------------------------------------------------------- /scripts/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/scripts/test.lua -------------------------------------------------------------------------------- /service/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/CMakeLists.txt -------------------------------------------------------------------------------- /service/NSClient++.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/NSClient++.aps -------------------------------------------------------------------------------- /service/NSClient++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/NSClient++.cpp -------------------------------------------------------------------------------- /service/NSClient++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/NSClient++.h -------------------------------------------------------------------------------- /service/NSClient++.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/NSClient++.manifest -------------------------------------------------------------------------------- /service/NSClient++.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/NSClient++.rc -------------------------------------------------------------------------------- /service/channels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/channels.hpp -------------------------------------------------------------------------------- /service/cli_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/cli_parser.cpp -------------------------------------------------------------------------------- /service/cli_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/cli_parser.hpp -------------------------------------------------------------------------------- /service/commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/commands.hpp -------------------------------------------------------------------------------- /service/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/config.h.in -------------------------------------------------------------------------------- /service/core_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/core_api.cpp -------------------------------------------------------------------------------- /service/core_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/core_api.h -------------------------------------------------------------------------------- /service/cron_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/cron_test.cpp -------------------------------------------------------------------------------- /service/dll_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/dll_plugin.cpp -------------------------------------------------------------------------------- /service/dll_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/dll_plugin.h -------------------------------------------------------------------------------- /service/logger/nsclient_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/nsclient_logger.cpp -------------------------------------------------------------------------------- /service/logger/nsclient_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/nsclient_logger.hpp -------------------------------------------------------------------------------- /service/logger/simple_file_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/simple_file_logger.cpp -------------------------------------------------------------------------------- /service/logger/simple_file_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/simple_file_logger.hpp -------------------------------------------------------------------------------- /service/logger/threaded_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/threaded_logger.cpp -------------------------------------------------------------------------------- /service/logger/threaded_logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/logger/threaded_logger.hpp -------------------------------------------------------------------------------- /service/master_plugin_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/master_plugin_list.cpp -------------------------------------------------------------------------------- /service/master_plugin_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/master_plugin_list.hpp -------------------------------------------------------------------------------- /service/nsclient_core_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/nsclient_core_interface.hpp -------------------------------------------------------------------------------- /service/path_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/path_manager.cpp -------------------------------------------------------------------------------- /service/path_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/path_manager.hpp -------------------------------------------------------------------------------- /service/performance_data_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/performance_data_test.cpp -------------------------------------------------------------------------------- /service/plugin_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_cache.cpp -------------------------------------------------------------------------------- /service/plugin_cache.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_cache.hpp -------------------------------------------------------------------------------- /service/plugin_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_interface.hpp -------------------------------------------------------------------------------- /service/plugin_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_list.hpp -------------------------------------------------------------------------------- /service/plugin_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_manager.cpp -------------------------------------------------------------------------------- /service/plugin_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/plugin_manager.hpp -------------------------------------------------------------------------------- /service/registry_query_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/registry_query_handler.cpp -------------------------------------------------------------------------------- /service/registry_query_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/registry_query_handler.hpp -------------------------------------------------------------------------------- /service/res/nscp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/res/nscp.ico -------------------------------------------------------------------------------- /service/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/resource.h -------------------------------------------------------------------------------- /service/routers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/routers.hpp -------------------------------------------------------------------------------- /service/scheduler_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/scheduler_handler.cpp -------------------------------------------------------------------------------- /service/scheduler_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/scheduler_handler.hpp -------------------------------------------------------------------------------- /service/service_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/service_manager.hpp -------------------------------------------------------------------------------- /service/settings_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/settings_client.cpp -------------------------------------------------------------------------------- /service/settings_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/settings_client.hpp -------------------------------------------------------------------------------- /service/settings_query_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/settings_query_handler.cpp -------------------------------------------------------------------------------- /service/settings_query_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/settings_query_handler.hpp -------------------------------------------------------------------------------- /service/storage_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/storage_manager.cpp -------------------------------------------------------------------------------- /service/storage_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/storage_manager.hpp -------------------------------------------------------------------------------- /service/storage_query_handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/storage_query_handler.cpp -------------------------------------------------------------------------------- /service/storage_query_handler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/storage_query_handler.hpp -------------------------------------------------------------------------------- /service/tray_manager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/tray_manager.hpp -------------------------------------------------------------------------------- /service/various_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/various_test.cpp -------------------------------------------------------------------------------- /service/zip_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/zip_plugin.cpp -------------------------------------------------------------------------------- /service/zip_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/service/zip_plugin.h -------------------------------------------------------------------------------- /tests/msi/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/helpers.py -------------------------------------------------------------------------------- /tests/msi/requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml==6.0.2 -------------------------------------------------------------------------------- /tests/msi/test-install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/test-install.py -------------------------------------------------------------------------------- /tests/msi/tests/insecure-nrpe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/insecure-nrpe.yaml -------------------------------------------------------------------------------- /tests/msi/tests/normal-install.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/normal-install.yaml -------------------------------------------------------------------------------- /tests/msi/tests/normal-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/normal-upgrade.yaml -------------------------------------------------------------------------------- /tests/msi/tests/op5-ini-file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/op5-ini-file.yaml -------------------------------------------------------------------------------- /tests/msi/tests/op5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/op5.yaml -------------------------------------------------------------------------------- /tests/msi/tests/registry-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/registry-settings.yaml -------------------------------------------------------------------------------- /tests/msi/tests/web-only.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/msi/tests/web-only.yaml -------------------------------------------------------------------------------- /tests/nrpe/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nrpe/Dockerfile -------------------------------------------------------------------------------- /tests/nrpe/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nrpe/openssl.cnf -------------------------------------------------------------------------------- /tests/nrpe/run-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nrpe/run-test.bat -------------------------------------------------------------------------------- /tests/nsca/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nsca/Dockerfile -------------------------------------------------------------------------------- /tests/nsca/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nsca/entrypoint.sh -------------------------------------------------------------------------------- /tests/nsca/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nsca/openssl.cnf -------------------------------------------------------------------------------- /tests/nsca/run-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/nsca/run-test.bat -------------------------------------------------------------------------------- /tests/rest/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /tests/rest/auth.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/auth.test.ts -------------------------------------------------------------------------------- /tests/rest/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/babel.config.js -------------------------------------------------------------------------------- /tests/rest/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/index.test.ts -------------------------------------------------------------------------------- /tests/rest/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/jest.config.js -------------------------------------------------------------------------------- /tests/rest/legacy-query.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/legacy-query.test.ts -------------------------------------------------------------------------------- /tests/rest/modules-v1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/modules-v1.test.ts -------------------------------------------------------------------------------- /tests/rest/modules-v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/modules-v2.test.ts -------------------------------------------------------------------------------- /tests/rest/nsclient.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/nsclient.ini -------------------------------------------------------------------------------- /tests/rest/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/package-lock.json -------------------------------------------------------------------------------- /tests/rest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/package.json -------------------------------------------------------------------------------- /tests/rest/permissions.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/permissions.test.ts -------------------------------------------------------------------------------- /tests/rest/queries-v1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/queries-v1.test.ts -------------------------------------------------------------------------------- /tests/rest/queries-v2.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/tests/rest/queries-v2.test.ts -------------------------------------------------------------------------------- /vagrant/debian/jessie/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/debian/jessie/Vagrantfile -------------------------------------------------------------------------------- /vagrant/debian/wheezy-64/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/debian/wheezy-64/Vagrantfile -------------------------------------------------------------------------------- /vagrant/files/CPackRPM.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/files/CPackRPM.cmake -------------------------------------------------------------------------------- /vagrant/files/build-cryptopp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/files/build-cryptopp.sh -------------------------------------------------------------------------------- /vagrant/files/build-debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/files/build-debian.sh -------------------------------------------------------------------------------- /vagrant/files/build-protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/files/build-protobuf.sh -------------------------------------------------------------------------------- /vagrant/files/deb-puppet.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | apt-get -y install puppet 3 | -------------------------------------------------------------------------------- /vagrant/files/plugin_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/files/plugin_pb2.py -------------------------------------------------------------------------------- /vagrant/ubuntu/precise32/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/ubuntu/precise32/Vagrantfile -------------------------------------------------------------------------------- /vagrant/ubuntu/precise64/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/ubuntu/precise64/Vagrantfile -------------------------------------------------------------------------------- /vagrant/ubuntu/trusty32/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/ubuntu/trusty32/Vagrantfile -------------------------------------------------------------------------------- /vagrant/ubuntu/trusty64/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/vagrant/ubuntu/trusty64/Vagrantfile -------------------------------------------------------------------------------- /web/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | max_line_length = 120 3 | -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/CMakeLists.txt -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/README.md -------------------------------------------------------------------------------- /web/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/dist/index.html -------------------------------------------------------------------------------- /web/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/eslint.config.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/index.html -------------------------------------------------------------------------------- /web/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/package-lock.json -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/package.json -------------------------------------------------------------------------------- /web/public/nscp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/public/nscp.png -------------------------------------------------------------------------------- /web/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/App.tsx -------------------------------------------------------------------------------- /web/src/Routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/Routes.tsx -------------------------------------------------------------------------------- /web/src/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/api/api.ts -------------------------------------------------------------------------------- /web/src/common/authSlice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/common/authSlice.ts -------------------------------------------------------------------------------- /web/src/common/hooks/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/common/hooks/auth.ts -------------------------------------------------------------------------------- /web/src/components/AppNavbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/AppNavbar.tsx -------------------------------------------------------------------------------- /web/src/components/ErrorLogWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/ErrorLogWidget.tsx -------------------------------------------------------------------------------- /web/src/components/Login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Login.tsx -------------------------------------------------------------------------------- /web/src/components/Logs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Logs.tsx -------------------------------------------------------------------------------- /web/src/components/MainPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/MainPage.tsx -------------------------------------------------------------------------------- /web/src/components/Metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Metrics.tsx -------------------------------------------------------------------------------- /web/src/components/Module.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Module.tsx -------------------------------------------------------------------------------- /web/src/components/ModuleSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/ModuleSettings.tsx -------------------------------------------------------------------------------- /web/src/components/Modules.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Modules.tsx -------------------------------------------------------------------------------- /web/src/components/Queries.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Queries.tsx -------------------------------------------------------------------------------- /web/src/components/Query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Query.tsx -------------------------------------------------------------------------------- /web/src/components/Settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Settings.tsx -------------------------------------------------------------------------------- /web/src/components/SideBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/SideBar.tsx -------------------------------------------------------------------------------- /web/src/components/SideMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/SideMenu.tsx -------------------------------------------------------------------------------- /web/src/components/Welcome.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/Welcome.tsx -------------------------------------------------------------------------------- /web/src/components/atoms/NscpAlert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/atoms/NscpAlert.tsx -------------------------------------------------------------------------------- /web/src/components/atoms/Toolbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/atoms/Toolbar.tsx -------------------------------------------------------------------------------- /web/src/components/atoms/Trail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/components/atoms/Trail.tsx -------------------------------------------------------------------------------- /web/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/main.tsx -------------------------------------------------------------------------------- /web/src/metric_parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/metric_parser.ts -------------------------------------------------------------------------------- /web/src/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/src/store/store.ts -------------------------------------------------------------------------------- /web/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /web/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/tsconfig.app.json -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/tsconfig.json -------------------------------------------------------------------------------- /web/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/tsconfig.node.json -------------------------------------------------------------------------------- /web/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mickem/nscp/HEAD/web/vite.config.ts --------------------------------------------------------------------------------