| 177 | } |
| 178 | |
| 179 | export interface SystemProcess { |
| 180 | id: string |
| 181 | deviceId: string |
| 182 | pid: number |
| 183 | name: string |
| 184 | path: string |
| 185 | user: string |
| 186 | commandLine: string |
| 187 | parentPid?: number |
| 188 | memoryUsage: number |
| 189 | cpuUsage: number |
| 190 | startTime: string |
| 191 | suspicious: boolean |
| 192 | createdAt: string |
| 193 | } |
| 194 | |
| 195 | // ============================================================================ |
| 196 | // NETWORK & CONNECTIVITY |
nothing calls this directly
no outgoing calls
no test coverage detected