add system status service and mock data

This commit is contained in:
Jesse Lucas
2020-03-29 16:51:12 -04:00
parent 9fe0c30299
commit b7f3425f36
6 changed files with 162 additions and 25 deletions
+17
View File
@@ -0,0 +1,17 @@
export interface SystemStatus {
alloc: number;
connectionServiceStatus: any;
cpuPercent: number; // allows returns 0
discoveryEnabled: boolean;
discoveryErrors: any;
discoveryMethods: number;
goroutines: number;
lastDialStatus: any;
myID: string;
pathSeparator: string;
startTime: string;
sys: number;
themes: string[];
tilde: string;
uptime: number;
}