fix: Add Task Executor to system panel #2061 (#2070)

### What problem does this PR solve?

fix: Add Task Executor to system panel #2061

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2024-08-23 15:59:49 +08:00
committed by GitHub
parent cc6a48b128
commit 60767e66e0
6 changed files with 149 additions and 62 deletions

View File

@ -20,11 +20,17 @@ export interface IUserInfo {
update_time: number;
}
export type TaskExecutorElapsed = Record<string, number[]>;
export interface ISystemStatus {
es: Es;
minio: Minio;
mysql: Minio;
redis: Redis;
task_executor: {
status: string;
elapsed: TaskExecutorElapsed;
};
}
interface Redis {