"use client"; import { useSystemStatus } from "@/hooks/useSystemStatus"; import { motion } from "framer-motion"; import { Activity, Shield, Server, Clock, ArrowLeft, RefreshCw, AlertTriangle } from "lucide-react"; import { DashboardVitals } from "@/components/DashboardVitals"; import Link from "next/link"; export default function SystemStatus() { const { status, diagnostics, loading, error, refetch } = useSystemStatus(); if (loading) { return (
Fetching System State...
{error || "Could not retrieve system data."}
Real-time infrastructure and reverse proxy diagnostics.
Diagnostic data is automatically refreshed every 10 seconds. This view monitors active session persistence and reverse proxy stability for Hugging Face Spaces.