chore: logs history selection

This commit is contained in:
jialin
2026-04-28 14:41:36 +08:00
committed by jialin
parent 0cb260f854
commit 81a87ef362
8 changed files with 66 additions and 25 deletions
+8 -2
View File
@@ -377,6 +377,12 @@ export interface DraftModelItem {
}
export interface InstanceRestartCount {
restart_counts: number[];
workers: { id: number; name: string }[];
workers: {
worker_id: number;
name: string;
restarts: {
restart_count: number;
started_at: string;
}[];
}[];
}