fix: improve gateway diagnostics
This commit is contained in:
13
src/daemon/service-runtime.ts
Normal file
13
src/daemon/service-runtime.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
export type GatewayServiceRuntime = {
|
||||
status?: "running" | "stopped" | "unknown";
|
||||
state?: string;
|
||||
subState?: string;
|
||||
pid?: number;
|
||||
lastExitStatus?: number;
|
||||
lastExitReason?: string;
|
||||
lastRunResult?: string;
|
||||
lastRunTime?: string;
|
||||
detail?: string;
|
||||
cachedLabel?: boolean;
|
||||
missingUnit?: boolean;
|
||||
};
|
||||
Reference in New Issue
Block a user