TypeScript 55.4%
Python 43.2%
SQL 1.2%
1import type { Metadata } from "next";2import { PageHeader } from "@/components/ui";3import { Ops } from "./ops";45export const metadata: Metadata = { title: "Operations", description: "Internal WebSensor operations dashboard.", robots: { index: false, follow: false } };67export default function OpsPage() {8 return (9 <>10 <PageHeader compact kicker="Internal · requires the admin token" title="Operations" description="Engine heartbeat, queue, throughput, storage, LLM usage, failing domains and connector tools. Refreshes every 15 s. Not linked from public navigation." />11 <Ops />12 </>13 );14}15