feat/public-monitor-and-agent-telemetry #2

Merged
hzhang merged 8 commits from feat/public-monitor-and-agent-telemetry into main 2026-03-11 22:13:52 +00:00
Showing only changes of commit d574258c8e - Show all commits

View File

@@ -10,6 +10,7 @@ interface ProviderRow {
error?: string | null
fetched_at?: string | null
reset_at?: string | null
window?: string | null
}
interface ServerRow {
@@ -173,6 +174,8 @@ expires_at=' + r.data.expires_at)
<strong>{p.provider}</strong> / {p.label} · status: {p.status}
{p.usage_pct !== null ? (' · usage: ' + p.usage_pct + '%') : ''}
{p.reset_at ? (' · reset: ' + p.reset_at) : ''}
{p.window ? (' · window: ' + p.window) : ''}
{p.fetched_at ? (' · updated: ' + p.fetched_at) : ''}
{p.error ? (' · error: ' + p.error) : ''}
</li>
))}