feat: add cc-connect dashboard health integration
Deploy Dashboard (Dev) / deploy-dev (push) Successful in 2m49s

Add a protected backend health endpoint and a new dashboard page/sidebar entry so cc-connect operational status is visible in the UI.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Gan, Jimmy
2026-03-02 23:24:03 +08:00
parent e76f15c432
commit 14965c7e03
8 changed files with 242 additions and 2 deletions
+4
View File
@@ -143,6 +143,10 @@ export function getLiteLLMHealth() {
return get("/litellm/health");
}
export function getCcConnectHealth() {
return get("/cc-connect/health");
}
export function put(path, data) {
return request(path, { method: "PUT", json: data });
}