feat(platform): expose vehicle service runtime health

This commit is contained in:
lingniu
2026-07-04 01:02:07 +08:00
parent 377cfcdfca
commit 3e76210d7d
6 changed files with 53 additions and 6 deletions

View File

@@ -174,6 +174,11 @@ export interface OpsHealth {
redisOnlineKeys: number | null;
tdengineWritable: boolean;
mysqlWritable: boolean;
runtime: RuntimeInfo;
}
export interface RuntimeInfo {
requestTimeoutMs: number;
}
export interface Page<T> {