feat(platform): summarize service status on dashboard

This commit is contained in:
lingniu
2026-07-04 01:59:05 +08:00
parent 14408d135d
commit 5d401a8f0b
8 changed files with 132 additions and 10 deletions

View File

@@ -23,9 +23,16 @@ export interface DashboardSummary {
issueVehicles: number;
kafkaLag: number | null;
protocols: ProtocolStat[];
serviceStatuses: ServiceStatusStat[];
linkHealth: LinkHealth[];
}
export interface ServiceStatusStat {
status: string;
title: string;
count: number;
}
export interface VehicleRow {
vin: string;
plate: string;