Module: check_mk
Branch: master
Commit: 5f747a2774c73e966d89724510d5eb2b0cdc1689
URL:
http://git.mathias-kettner.de/git/?p=check_mk.git;a=commit;h=5f747a2774c73e…
Author: Lars Michelsen <lm(a)mathias-kettner.de>
Date: Wed Nov 14 17:42:49 2018 +0100
Dynamic configuration: Add command server and client
* The CommandManager is listening locally on tmp/run/dcd.sock
for external queries / commands to the DCD.
* The API is only available to the local site in the first place.
* This API will be contacted from the local WATO instance to serve
status information and, in distributed setups, for replication from
remote sites to the central WATO site.
* For the moment we use the standard xmlrpc library for the API. This
will be replaced with our new standard HTTP API stuff once that is
ready.
* Enabled mypy to scan the dcd files.
CMK-1140
Change-Id: If6bb79747a2ca1c88f7d9ee7e1a1288a2015595a
---
tests/static/Makefile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/static/Makefile b/tests/static/Makefile
index 90e4577..c74e556 100644
--- a/tests/static/Makefile
+++ b/tests/static/Makefile
@@ -1,4 +1,6 @@
FILES_TO_CHECK := $(realpath $(addprefix ../../cmk/ec/,defaults.py export.py main.py
settings.py)) \
+ $(realpath $(addprefix ../../cmk/cee/dcd/,main.py Config.py Manager.py
CommandManager.py)) \
+ $(realpath $(addprefix ../../cmk/cee/dcd/connectors,piggyback.py utils.py)) \
$(realpath $(addprefix ../../cmk/,daemon.py i18n.py paths.py regex.py render.py
structured_data.py)) \
$(realpath $(addprefix ../../cmk/gui/,dashboard.py exceptions.py globals.py
htmllib.py http_status.py \
i18n.py sidebar.py sites.py table.py visuals.py)) \