2026-06-07 23:21:40 +07:00
|
|
|
import { useMemo, useState } from "react";
|
|
|
|
|
import { Card, CardContent } from "@/components/ui/card";
|
2026-06-07 23:44:57 +07:00
|
|
|
import { BarChart3, AlertTriangle } from "lucide-react";
|
2026-06-07 23:21:40 +07:00
|
|
|
|
2026-06-07 23:31:15 +07:00
|
|
|
/**
|
2026-06-07 23:44:57 +07:00
|
|
|
* Telemetry Dashboard — proxied through nginx at /telemetry/
|
|
|
|
|
* Nginx rewrites root-relative paths so the SPA works from the sub-path.
|
2026-06-07 23:31:15 +07:00
|
|
|
*/
|
|
|
|
|
|
2026-06-07 23:44:57 +07:00
|
|
|
const TELEMETRY_BASE = "/telemetry";
|
2026-06-07 23:21:40 +07:00
|
|
|
|
|
|
|
|
const EMBED_PAGES = [
|
|
|
|
|
{ id: "dashboard", label: "Dashboard", path: "" },
|
|
|
|
|
{ id: "explorer", label: "Explorer", path: "/explorer" },
|
|
|
|
|
{ id: "targets", label: "Targets", path: "/targets" },
|
|
|
|
|
{ id: "tenants", label: "Tenants", path: "/tenants" },
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export function TelemetryPage() {
|
|
|
|
|
const [currentPage, setCurrentPage] = useState(EMBED_PAGES[0]);
|
2026-06-07 23:31:15 +07:00
|
|
|
const [iframeState, setIframeState] = useState<"loading" | "loaded" | "error">("loading");
|
2026-06-07 23:21:40 +07:00
|
|
|
|
|
|
|
|
const embedUrl = useMemo(() => {
|
2026-06-07 23:44:57 +07:00
|
|
|
return `${TELEMETRY_BASE}${currentPage.path}`;
|
2026-06-07 23:21:40 +07:00
|
|
|
}, [currentPage]);
|
|
|
|
|
|
|
|
|
|
const handleIframeLoad = () => {
|
2026-06-07 23:44:57 +07:00
|
|
|
setIframeState("loaded");
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleIframeError = () => {
|
|
|
|
|
setIframeState("error");
|
2026-06-07 23:21:40 +07:00
|
|
|
};
|
|
|
|
|
|
2026-06-07 23:31:15 +07:00
|
|
|
const handleRetry = () => {
|
|
|
|
|
setIframeState("loading");
|
2026-06-07 23:21:40 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="space-y-6">
|
|
|
|
|
{/* Header */}
|
|
|
|
|
<div className="flex flex-col md:flex-row items-start md:items-center justify-between gap-4">
|
|
|
|
|
<div>
|
|
|
|
|
<h1 className="text-2xl md:text-[28px] font-extrabold text-[#214B11] flex items-center gap-3">
|
|
|
|
|
<BarChart3 className="h-7 w-7 text-[#48A111]" />
|
|
|
|
|
Telemetry Dashboard
|
|
|
|
|
</h1>
|
|
|
|
|
<p className="text-[15px] text-muted-foreground mt-1">
|
|
|
|
|
System metrics, service health, and performance monitoring from the
|
|
|
|
|
telemetry pipeline (Prometheus → ClickHouse).
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Navigation tabs */}
|
|
|
|
|
<div className="flex flex-wrap gap-2">
|
|
|
|
|
{EMBED_PAGES.map((page) => (
|
|
|
|
|
<button
|
|
|
|
|
key={page.id}
|
|
|
|
|
onClick={() => {
|
|
|
|
|
setCurrentPage(page);
|
2026-06-07 23:31:15 +07:00
|
|
|
setIframeState("loading");
|
2026-06-07 23:21:40 +07:00
|
|
|
}}
|
|
|
|
|
className={`rounded-full px-4 py-2 text-sm font-medium transition-colors ${
|
|
|
|
|
currentPage.id === page.id
|
|
|
|
|
? "bg-[#48A111] text-white shadow-sm"
|
|
|
|
|
: "bg-white text-slate-600 hover:bg-slate-100 border border-slate-200"
|
|
|
|
|
}`}
|
|
|
|
|
>
|
|
|
|
|
{page.label}
|
|
|
|
|
</button>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Iframe container */}
|
|
|
|
|
<Card className="overflow-hidden rounded-2xl border-slate-200 shadow-sm">
|
|
|
|
|
<CardContent className="p-0 relative">
|
|
|
|
|
{/* Loading indicator */}
|
2026-06-07 23:31:15 +07:00
|
|
|
{iframeState === "loading" && (
|
|
|
|
|
<div className="flex items-center justify-center h-150 bg-slate-50">
|
2026-06-07 23:21:40 +07:00
|
|
|
<div className="text-center space-y-3">
|
|
|
|
|
<div className="inline-block h-8 w-8 animate-spin rounded-full border-4 border-solid border-[#48A111] border-r-transparent" />
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
|
|
|
|
Loading telemetry dashboard...
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
|
|
|
|
{/* Error state */}
|
2026-06-07 23:31:15 +07:00
|
|
|
{iframeState === "error" && (
|
|
|
|
|
<div className="flex items-center justify-center h-150 bg-slate-50">
|
2026-06-07 23:21:40 +07:00
|
|
|
<div className="text-center space-y-3 max-w-md px-4">
|
2026-06-07 23:31:15 +07:00
|
|
|
<AlertTriangle className="h-10 w-10 text-amber-500 mx-auto" />
|
2026-06-07 23:21:40 +07:00
|
|
|
<p className="text-sm font-semibold text-red-600">
|
|
|
|
|
Failed to load telemetry dashboard
|
|
|
|
|
</p>
|
|
|
|
|
<p className="text-sm text-muted-foreground">
|
2026-06-07 23:44:57 +07:00
|
|
|
The telemetry backend may be unreachable. Make sure the
|
|
|
|
|
telemetry stack is running on the orange VPS.
|
2026-06-07 23:31:15 +07:00
|
|
|
</p>
|
|
|
|
|
<button
|
|
|
|
|
onClick={handleRetry}
|
|
|
|
|
className="inline-flex items-center gap-1 rounded-full bg-[#48A111] px-4 py-2 text-sm font-semibold text-white hover:bg-[#306D29] transition-colors"
|
|
|
|
|
>
|
|
|
|
|
Retry
|
|
|
|
|
</button>
|
2026-06-07 23:21:40 +07:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
|
|
|
|
|
2026-06-07 23:44:57 +07:00
|
|
|
{/* Iframe */}
|
2026-06-07 23:21:40 +07:00
|
|
|
<iframe
|
|
|
|
|
src={embedUrl}
|
|
|
|
|
title="Telemetry Dashboard"
|
2026-06-07 23:44:57 +07:00
|
|
|
className={`w-full border-0 ${iframeState === "loaded" || iframeState === "error" ? "block" : "hidden"}`}
|
2026-06-07 23:21:40 +07:00
|
|
|
style={{ height: "calc(100vh - 280px)", minHeight: "600px" }}
|
|
|
|
|
onLoad={handleIframeLoad}
|
2026-06-07 23:44:57 +07:00
|
|
|
onError={handleIframeError}
|
2026-06-07 23:21:40 +07:00
|
|
|
sandbox="allow-scripts allow-same-origin allow-forms allow-popups"
|
|
|
|
|
/>
|
|
|
|
|
</CardContent>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|