feat(system): add Worker 006 telemetry and network profile

This commit is contained in:
DCCONSTRUCTIONS
2026-07-27 21:06:51 +03:00
parent 438196cd6d
commit 67e12a47a4
17 changed files with 2723 additions and 8 deletions
+6
View File
@@ -52,6 +52,7 @@ from k1link.web.plugin_runtime import (
)
from k1link.web.polygon_api import build_polygon_router, configured_polygon_runs_root
from k1link.web.session_api import build_session_router
from k1link.web.system_telemetry_api import build_system_telemetry_router
REPOSITORY_ROOT = Path(__file__).resolve().parents[3]
INVALID_REQUEST_DETAIL = "Некорректные параметры запроса."
@@ -618,6 +619,11 @@ app.include_router(
),
)
)
app.include_router(
build_system_telemetry_router(
root_provider=lambda: REPOSITORY_ROOT / ".runtime" / "system",
)
)
frontend_dist = REPOSITORY_ROOT / "apps" / "control-station" / "dist"