| 354 | * An object with information about the process. |
| 355 | */ |
| 356 | export interface ProcessDescription { |
| 357 | /** |
| 358 | * The name given in the original start command. |
| 359 | */ |
| 360 | name?: string; |
| 361 | /** |
| 362 | * The pid of the process. |
| 363 | */ |
| 364 | pid?: number; |
| 365 | /** |
| 366 | * The pid for the pm2 God daemon process. |
| 367 | */ |
| 368 | pm_id?: number; |
| 369 | monit?: Monit; |
| 370 | /** |
| 371 | * The list of path variables in the process’s environment |
| 372 | */ |
| 373 | pm2_env?: Pm2Env; |
| 374 | } |
| 375 | |
| 376 | interface Monit { |
| 377 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…