gitdataai/admin/src/lib/admin-rpc.ts
ZhenYi ae601774df chore(admin): remove all metrics/observability features
- Delete admin metrics dashboard page (admin/metrics/page.tsx)
- Delete LineChart component (used only by metrics)
- Remove "指标监控" nav link from Sidebar
- Remove getMetrics/exportMetricsCsv from admin-rpc.ts client
- Remove /api/admin/metrics and /api/admin/metrics/export HTTP routes
  from adminrpc (was also leaking metrics via HTTP)
- Remove metrics RPC methods (get_metrics, export_metrics_csv) from
  adminrpc gRPC server and their helper functions
- Remove spawn_redis_metrics_flusher from app/main.rs
- Remove redis_metrics module from observability crate
- Remove redis/deadpool-redis deps from observability Cargo.toml
2026-04-23 15:42:00 +08:00

106 lines
4.0 KiB
TypeScript

/**
* adminrpc HTTP REST client
*
* Calls the adminrpc HTTP server (default: http://gitdata-adminrpc.gitdataai.svc.cluster.local:9091)
* which exposes session management and health APIs.
*
* Usage:
* import { listWorkspaceSessions, kickUser } from "@/lib/admin-rpc";
*/
import {ADMIN_RPC_URL} from "./env";
// Default to k8s internal service address; override via ADMIN_RPC_URL env var
const BASE_URL = ADMIN_RPC_URL || "http://gitdata-adminrpc.gitdataai.svc.cluster.local:9091";
async function rpc<T>(path: string, options?: RequestInit): Promise<T> {
const url = `${BASE_URL}${path}`;
const res = await fetch(url, {
...options,
headers: {
"Content-Type": "application/json",
...options?.headers,
},
});
if (!res.ok) {
const body = await res.text();
throw new Error(`adminrpc ${options?.method ?? "GET"} ${path} failed (${res.status}): ${body}`);
}
return res.json() as Promise<T>;
}
// ─── Types ────────────────────────────────────────────────────────────────────
export interface UserSession {
session_id: string;
user_id: string;
workspace_id: string;
ip_address: string;
user_agent: string;
connected_at: string;
last_heartbeat: string;
}
export interface SessionInfo {
user_id: string;
session_count: number;
workspaces: string[];
latest_session: UserSession | null;
}
// ─── Sessions API ─────────────────────────────────────────────────────────────
/** List all active sessions for a workspace. */
export async function listWorkspaceSessions(workspaceId: string): Promise<UserSession[]> {
return rpc<UserSession[]>(`/api/admin/sessions/workspace/${encodeURIComponent(workspaceId)}`);
}
/** List all active sessions for a specific user. */
export async function listUserSessions(userId: string): Promise<UserSession[]> {
return rpc<UserSession[]>(`/api/admin/sessions/user/${encodeURIComponent(userId)}`);
}
/** Get the online status of a specific user. */
export async function getUserStatus(userId: string): Promise<{ status: string }> {
return rpc<{ status: string }>(`/api/admin/sessions/user/${encodeURIComponent(userId)}/status`);
}
/** Get detailed info for a user (session count, workspaces, latest session). */
export async function getUserInfo(userId: string): Promise<SessionInfo | null> {
return rpc<SessionInfo | null>(`/api/admin/sessions/user/${encodeURIComponent(userId)}/info`);
}
/** List all online user IDs in a workspace. */
export async function getWorkspaceOnlineUsers(workspaceId: string): Promise<{ user_ids: string[] }> {
return rpc<{ user_ids: string[] }>(`/api/admin/sessions/workspace/${encodeURIComponent(workspaceId)}/online-users`);
}
/** Check if a user is currently online. */
export async function isUserOnline(userId: string): Promise<{ online: boolean }> {
return rpc<{ online: boolean }>(`/api/admin/sessions/user/${encodeURIComponent(userId)}/online`);
}
/** Kick all sessions for a user. Returns the number of sessions kicked. */
export async function kickUser(userId: string): Promise<{ kicked_count: number }> {
return rpc<{ kicked_count: number }>("/api/admin/sessions/kick", {
method: "POST",
body: JSON.stringify({user_id: userId}),
});
}
/** Kick all sessions for a user in a specific workspace. */
export async function kickUserFromWorkspace(
userId: string,
workspaceId: string
): Promise<{ kicked_count: number }> {
return rpc<{ kicked_count: number }>("/api/admin/sessions/kick-workspace", {
method: "POST",
body: JSON.stringify({user_id: userId, workspace_id: workspaceId}),
});
}
/** Get adminrpc health status. */
export async function adminRpcHealth(): Promise<{ ok: boolean }> {
return rpc<{ ok: boolean }>("/health");
}