Operational observability, API activity, and cache/system diagnostics.
Admin-focused telemetry and operational controls to monitor entity activity, database cache statistics, system-level performance behavior, and vendor integration call traces.
import { SimpleChart, SankeyChart, ScatterChart, Notification } from '@cleen/cleen-components';
import { useObservability } from '@/hooks/useObservability';
export function ObservabilityDashboard() {
const { errorRate, throughput, slowest, recent } = useObservability({ window: '24h' });
return (
<div className="obs-grid">
<section>
<h2>Error rate</h2>
<SimpleChart data={errorRate} threshold={0.02} />
</section>
<section>
<h2>Endpoint throughput</h2>
<SankeyChart data={throughput} />
</section>
<section>
<h2>Slowest endpoints (p95)</h2>
<ScatterChart points={slowest} xKey="calls" yKey="p95Ms" />
</section>
<Notification tone="info">{recent.length} alerts in the last hour.</Notification>
</div>
);
}Internal code areas in the licensed Full-Stack codebase that back this module.
ApiAdmin DB cache statisticsApiAdmin all entity activityApiAdmin system performance cache clearApiAdmin vendor call logA quick visual of how Infrastructure and Logging participates across the CleenUI stack, alongside the named operations it adds to the API surface.
Each operation maps to an endpoint in the licensed C# Web API surface.