diff options
author | Yordan Dimitrov <y.dimitrov.14@gmail.com> | 2018-08-15 15:54:37 +0300 |
---|---|---|
committer | Yordan Dimitrov <y.dimitrov.14@gmail.com> | 2018-08-17 11:28:31 +0300 |
commit | 4c13256dce57776b6ce5ae5e2ce4fff52f6e2ab8 (patch) | |
tree | 07b12f7562ece1f336e3cbcd9ac59cb3bfbe7db5 /README.md | |
parent | 183cb22a76b3c1d0d77757512009fda8269ff3d6 (diff) |
Importing agl-service-taskmanager code
The service queries /proc for system statistics data and
collects data for all processes currently running
on the system. The data for each consists of process name,
process ID, user, system CPU usage, user CPU usage, memory and state.
The data is then converted to JSON and sent to the requesting app.
v1
- removed trailing whitespaces
- added description in the README file
- removed URL from config.cmake
v2
- added project URL to config.cmake
Change-Id: I7670c239191ee9b7333d5a383f1b2fcf6bc774c1
Signed-off-by: Yordan Dimitrov <y.dimitrov.14@gmail.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..113a38e --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +##AGL-task-manager + +Task Manager service queries the system folder /proc to collect data on +the processes currently running on the machine. Information such as +process name, process ID, user, system CPU usage, user CPU usage, resident memory and state. + + +## Verbs + +| Name | Description | +|:-------------------|:------------------------------------------| +| get_process_list | retrieves the current processes from /proc| + + +## JSON response is an array of process entries each containing the values described below + +| Name | Description | +|:------------|-------------------------------------------------| +| cmd | name of each process | +| tid | unique process ID | +| euid | process user | +| scpu | % of CPU time used by process in kernel mode | +| ucpu | % of CPU time used by process in user time | +| resident_mem| amount of resident memory used | +| state | state of process | + |