mirror of
https://github.com/everoddandeven/monerod-gui.git
synced 2025-01-03 17:39:49 +00:00
9063c27cd2
Some checks are pending
MacOS - x64 DMG Build / build (20) (push) Waiting to run
Lint Test / build (20) (push) Waiting to run
Linux - AppImage Build / build (20) (push) Waiting to run
Linux - x86_64 RPM Build / build (20) (push) Waiting to run
Linux - x64 DEB Build / build (20) (push) Waiting to run
MacOS Build / build (20) (push) Waiting to run
Windows Build / build (20) (push) Waiting to run
36 lines
No EOL
468 B
TypeScript
36 lines
No EOL
468 B
TypeScript
export interface ProcessStats {
|
|
/**
|
|
* percentage (from 0 to 100*vcore)
|
|
*/
|
|
cpu: number;
|
|
|
|
/**
|
|
* bytes
|
|
*/
|
|
memory: number;
|
|
|
|
/**
|
|
* PPID
|
|
*/
|
|
ppid: number;
|
|
|
|
/**
|
|
* PID
|
|
*/
|
|
pid: number;
|
|
|
|
/**
|
|
* ms user + system time
|
|
*/
|
|
ctime: number;
|
|
|
|
/**
|
|
* ms since the start of the process
|
|
*/
|
|
elapsed: number;
|
|
|
|
/**
|
|
* ms since epoch
|
|
*/
|
|
timestamp: number;
|
|
} |