Files
glances/docs/api/python.rst
2025-08-01 17:19:43 +02:00

13854 lines
427 KiB
ReStructuredText

.. _api:
Python API documentation
========================
This documentation describes the Glances Python API.
Note: This API is only available in Glances 4.4.0 or higher.
TL;DR
-----
You can access the Glances API by importing the `glances.api` module and creating an
instance of the `GlancesAPI` class. This instance provides access to all Glances plugins
and their fields. For example, to access the CPU plugin and its total field, you can
use the following code:
.. code-block:: python
>>> from glances import api
>>> gl = api.GlancesAPI()
>>> gl.cpu
{'cpucore': 16,
'ctx_switches': 418936478,
'guest': 0.0,
'idle': 78.5,
'interrupts': 387038047,
'iowait': 0.9,
'irq': 0.0,
'nice': 0.0,
'soft_interrupts': 147533465,
'steal': 0.0,
'syscalls': 0,
'system': 6.1,
'total': 15.8,
'user': 14.4}
>>> gl.cpu["total"]
15.8
If the stats return a list of items (like network interfaces or processes), you can
access them by their name:
.. code-block:: python
['wlp0s20f3', 'ipv6leakintrf0', 'proton0']
>>> gl.network["wlp0s20f3"]
{'alias': None,
'bytes_all': 0,
'bytes_all_gauge': 17335060599,
'bytes_all_rate_per_sec': 0.0,
'bytes_recv': 0,
'bytes_recv_gauge': 15722032495,
'bytes_recv_rate_per_sec': 0.0,
'bytes_sent': 0,
'bytes_sent_gauge': 1613028104,
'bytes_sent_rate_per_sec': 0.0,
'interface_name': 'wlp0s20f3',
'key': 'interface_name',
'speed': 0,
'time_since_update': 0.1246035099029541}
Init Glances Python API
-----------------------
Init the Glances API:
.. code-block:: python
>>> from glances import api
>>> gl = api.GlancesAPI()
Get Glances plugins list
------------------------
Get the plugins list:
.. code-block:: python
>>> gl.plugins()
['alert', 'ports', 'diskio', 'containers', 'processcount', 'programlist', 'gpu', 'percpu', 'system', 'network', 'cpu', 'amps', 'processlist', 'load', 'sensors', 'uptime', 'now', 'fs', 'wifi', 'ip', 'help', 'version', 'psutilversion', 'core', 'mem', 'folders', 'quicklook', 'memswap']
```
Glances alert
-------------
Alert stats:
.. code-block:: python
>>> gl.alert
Return a <class 'glances.plugins.alert.AlertPlugin'> object
>>> gl.alert
[]
Alert fields description:
* begin: Begin timestamp of the event
* end: End timestamp of the event (or -1 if ongoing)
* state: State of the event (WARNING|CRITICAL)
* type: Type of the event (CPU|LOAD|MEM)
* max: Maximum value during the event period
* avg: Average value during the event period
* min: Minimum value during the event period
* sum: Sum of the values during the event period
* count: Number of values during the event period
* top: Top 3 processes name during the event period
* desc: Description of the event
* sort: Sort key of the top processes
* global_msg: Global alert message
Alert limits:
.. code-block:: python
>>> gl.alert.limits
{'alert_disable': ['False'], 'history_size': 1200.0}
Glances ports
-------------
Ports stats:
.. code-block:: python
>>> gl.ports
Return a <class 'glances.plugins.ports.PortsPlugin'> object
>>> gl.ports
[]
Ports fields description:
* host: Measurement is be done on this host (or IP address)
* port: Measurement is be done on this port (0 for ICMP)
* description: Human readable description for the host/port
* refresh: Refresh time (in seconds) for this host/port
* timeout: Timeout (in seconds) for the measurement
* status: Measurement result (in seconds)
* rtt_warning: Warning threshold (in seconds) for the measurement
* indice: Unique indice for the host/port
Ports limits:
.. code-block:: python
>>> gl.ports.limits
{'history_size': 1200.0,
'ports_disable': ['False'],
'ports_port_default_gateway': ['True'],
'ports_refresh': 30.0,
'ports_timeout': 3.0}
Glances diskio
--------------
Diskio stats:
.. code-block:: python
>>> gl.diskio
Return a <class 'glances.plugins.diskio.DiskioPlugin'> object
>>> gl.diskio
Return a dict of dict with key=<disk_name>
>>> gl.diskio.keys()
['nvme0n1', 'nvme0n1p1', 'nvme0n1p2', 'nvme0n1p3', 'dm-0', 'dm-1']
>>> gl.diskio["nvme0n1"]
{'disk_name': 'nvme0n1',
'key': 'disk_name',
'read_bytes': 37887799808,
'read_count': 706857,
'write_bytes': 35113133056,
'write_count': 1477020}
Diskio fields description:
* disk_name: Disk name.
* read_count: Number of reads.
* write_count: Number of writes.
* read_bytes: Number of bytes read.
* write_bytes: Number of bytes written.
Diskio limits:
.. code-block:: python
>>> gl.diskio.limits
{'diskio_disable': ['False'],
'diskio_hide': ['loop.*', '/dev/loop.*'],
'diskio_hide_zero': ['False'],
'history_size': 1200.0}
Glances containers
------------------
Containers stats:
.. code-block:: python
>>> gl.containers
Return a <class 'glances.plugins.containers.ContainersPlugin'> object
>>> gl.containers
[]
Containers fields description:
* name: Container name
* id: Container ID
* image: Container image
* status: Container status
* created: Container creation date
* command: Container command
* cpu_percent: Container CPU consumption
* memory_inactive_file: Container memory inactive file
* memory_limit: Container memory limit
* memory_usage: Container memory usage
* io_rx: Container IO bytes read rate
* io_wx: Container IO bytes write rate
* network_rx: Container network RX bitrate
* network_tx: Container network TX bitrate
* uptime: Container uptime
* engine: Container engine (Docker and Podman are currently supported)
* pod_name: Pod name (only with Podman)
* pod_id: Pod ID (only with Podman)
Containers limits:
.. code-block:: python
>>> gl.containers.limits
{'containers_all': ['False'],
'containers_disable': ['False'],
'containers_max_name_size': 20.0,
'history_size': 1200.0}
Glances processcount
--------------------
Processcount stats:
.. code-block:: python
>>> gl.processcount
Return a <class 'glances.plugins.processcount.ProcesscountPlugin'> object
>>> gl.processcount
{'pid_max': 0, 'running': 2, 'sleeping': 421, 'thread': 2161, 'total': 565}
>>> gl.processcount.keys()
['total', 'running', 'sleeping', 'thread', 'pid_max']
>>> gl.processcount["total"]
565
Processcount fields description:
* total: Total number of processes
* running: Total number of running processes
* sleeping: Total number of sleeping processes
* thread: Total number of threads
* pid_max: Maximum number of processes
Processcount limits:
.. code-block:: python
>>> gl.processcount.limits
{'history_size': 1200.0, 'processcount_disable': ['False']}
Glances programlist
-------------------
Programlist stats:
.. code-block:: python
>>> gl.programlist
Return a <class 'glances.plugins.programlist.ProgramlistPlugin'> object
>>> gl.programlist
[{'childrens': [7109,
737065,
3689810,
3667423,
7116,
7112,
1076749,
93349,
8243,
8352],
'cmdline': ['Isolated Web Co'],
'cpu_percent': 97.9,
'cpu_times': {'system': 383.6, 'user': 3107.1499999999996},
'io_counters': [19594240,
0,
19594240,
0,
1,
77824,
0,
77824,
0,
1,
172032,
0,
172032,
0,
1,
0,
2678784,
0,
2678784,
1,
7809024,
0,
7809024,
0,
1,
57624576,
0,
57624576,
0,
1,
376832,
83787776,
376832,
83787776,
1,
0,
0,
0,
0,
1,
21426176,
0,
21426176,
0,
1,
14822400,
0,
14822400,
0,
1,
77824,
0,
77824,
0,
1,
172032,
0,
172032,
0,
1,
0,
2678784,
0,
2678784,
1,
7809024,
0,
7809024,
0,
1,
57624576,
0,
57624576,
0,
1,
376832,
83787776,
376832,
83787776,
1,
0,
0,
0,
0,
1,
21426176,
0,
21426176,
0,
1,
14822400,
0,
14822400,
0,
1],
'memory_info': {'data': 4404645888,
'rss': 2795085824,
'shared': 1202327552,
'text': 8683520,
'vms': 30324817920},
'memory_percent': 17.020596249898674,
'name': 'Isolated Web Co',
'nice': 0,
'nprocs': 10,
'num_threads': 308,
'pid': '_',
'status': '_',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3697730, 3506170, 3506134, 3506133, 3506130],
'cmdline': ['python'],
'cpu_percent': 79.7,
'cpu_times': {'children_system': 0.02,
'system': 2.36,
'user': 16.799999999999997},
'io_counters': [3485696,
4096,
4096,
4096,
1,
42213376,
12615680,
42213376,
12615680,
1,
147456,
0,
147456,
0,
1,
1859584,
0,
1859584,
0,
1,
3104768,
0,
3104768,
0,
1,
42213376,
12615680,
42213376,
12615680,
1,
147456,
0,
147456,
0,
1,
1859584,
0,
1859584,
0,
1,
3104768,
0,
3104768,
0,
1],
'memory_info': {'data': 457142272,
'rss': 314073088,
'shared': 62709760,
'text': 15134720,
'vms': 2106032128},
'memory_percent': 1.9125392064551128,
'name': 'python',
'nice': 0,
'nprocs': 5,
'num_threads': 26,
'pid': '_',
'status': '_',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6208],
'cmdline': ['firefox'],
'cpu_percent': 67.2,
'cpu_times': {'children_system': 440.53,
'children_user': 2580.92,
'iowait': 0.0,
'system': 1429.2,
'user': 4879.73},
'io_counters': [1000724480, 7978831872, 1000724480, 7978831872, 1],
'memory_info': {'data': 1237213184,
'dirty': 0,
'lib': 0,
'rss': 749752320,
'shared': 307924992,
'text': 868352,
'vms': 30780035072},
'memory_percent': 4.5655955951586655,
'name': 'firefox',
'nice': 0,
'nprocs': 1,
'num_threads': 162,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4995],
'cmdline': ['gnome-shell'],
'cpu_percent': 28.7,
'cpu_times': {'children_system': 234.71,
'children_user': 339.55,
'iowait': 0.0,
'system': 1097.08,
'user': 2151.99},
'io_counters': [1676345344, 11443093504, 1676345344, 11443093504, 1],
'memory_info': {'data': 522821632,
'dirty': 0,
'lib': 0,
'rss': 361947136,
'shared': 161665024,
'text': 8192,
'vms': 5949157376},
'memory_percent': 2.204066870779265,
'name': 'gnome-shell',
'nice': 0,
'nprocs': 1,
'num_threads': 40,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6462],
'cmdline': ['WebExtensions'],
'cpu_percent': 9.6,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 205.42,
'user': 1310.04},
'io_counters': [16226304, 0, 16226304, 0, 1],
'memory_info': {'data': 1030643712,
'dirty': 0,
'lib': 0,
'rss': 636366848,
'shared': 114384896,
'text': 868352,
'vms': 29562064896},
'memory_percent': 3.875137963072664,
'name': 'WebExtensions',
'nice': 0,
'nprocs': 1,
'num_threads': 28,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3505645,
3505605,
3506727,
3505550,
3505433,
3505655,
3505976,
3505656,
3505732,
3506781,
3506076,
3505497,
3505435,
3505436],
'cmdline': ['code'],
'cpu_percent': 9.6,
'cpu_times': {'children_system': 509.24,
'children_user': 193.36,
'system': 564.13,
'user': 1885.5100000000002},
'io_counters': [458162176,
335024128,
458162176,
335024128,
1,
1820672,
0,
1820672,
0,
1,
73318400,
1708032,
73318400,
1708032,
1,
5721088,
274432,
5721088,
274432,
1,
34287616,
50032640,
34287616,
50032640,
1,
38534144,
119738368,
38534144,
119738368,
1,
9629696,
0,
9629696,
0,
1,
11386880,
0,
11386880,
0,
1,
885760,
4096,
885760,
4096,
1,
4739072,
0,
4739072,
0,
1,
138240,
0,
138240,
0,
1,
2220032,
5468160,
2220032,
5468160,
1,
145408,
0,
145408,
0,
1,
0,
0,
0,
0,
1,
1820672,
0,
1820672,
0,
1,
73318400,
1708032,
73318400,
1708032,
1,
5721088,
274432,
5721088,
274432,
1,
34287616,
50032640,
34287616,
50032640,
1,
38534144,
119738368,
38534144,
119738368,
1,
9629696,
0,
9629696,
0,
1,
11386880,
0,
11386880,
0,
1,
885760,
4096,
885760,
4096,
1,
4739072,
0,
4739072,
0,
1,
138240,
0,
138240,
0,
1,
2220032,
5468160,
2220032,
5468160,
1,
145408,
0,
145408,
0,
1,
0,
0,
0,
0,
1],
'memory_info': {'data': 11643138048,
'rss': 4392747008,
'shared': 1167646720,
'text': 2001076224,
'vms': 15135552077824},
'memory_percent': 26.749508944995608,
'name': 'code',
'nice': 0,
'nprocs': 14,
'num_threads': 256,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [129],
'cmdline': ['irq/9-acpi'],
'cpu_percent': 5.6,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 32.94,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/9-acpi',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [43195],
'cmdline': ['terminator'],
'cpu_percent': 3.8,
'cpu_times': {'children_system': 0.45,
'children_user': 0.64,
'iowait': 0.0,
'system': 1.71,
'user': 27.37},
'io_counters': [17076224, 29622272, 17076224, 29622272, 1],
'memory_info': {'data': 94175232,
'dirty': 0,
'lib': 0,
'rss': 78925824,
'shared': 54796288,
'text': 3026944,
'vms': 704638976},
'memory_percent': 0.4806165780169484,
'name': 'terminator',
'nice': 0,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5145],
'cmdline': ['ibus-daemon'],
'cpu_percent': 3.8,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 12.5,
'user': 48.88},
'io_counters': [765952, 8192, 765952, 8192, 1],
'memory_info': {'data': 47984640,
'dirty': 0,
'lib': 0,
'rss': 9482240,
'shared': 7483392,
'text': 110592,
'vms': 398450688},
'memory_percent': 0.057741832897879264,
'name': 'ibus-daemon',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5629],
'cmdline': ['xdg-desktop-portal-gnome'],
'cpu_percent': 1.9,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 22.6,
'user': 82.2},
'io_counters': [35397632, 12328960, 35397632, 12328960, 1],
'memory_info': {'data': 391151616,
'dirty': 0,
'lib': 0,
'rss': 356966400,
'shared': 89395200,
'text': 245760,
'vms': 2163474432},
'memory_percent': 2.17373681946012,
'name': 'xdg-desktop-portal-gnome',
'nice': 0,
'nprocs': 1,
'num_threads': 10,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3532052],
'cmdline': ['nautilus'],
'cpu_percent': 1.9,
'cpu_times': {'children_system': 1.06,
'children_user': 0.02,
'iowait': 0.0,
'system': 16.8,
'user': 63.84},
'io_counters': [16068608, 18157568, 16068608, 18157568, 1],
'memory_info': {'data': 482967552,
'dirty': 0,
'lib': 0,
'rss': 315793408,
'shared': 111083520,
'text': 720896,
'vms': 4226932736},
'memory_percent': 1.9230150465488964,
'name': 'nautilus',
'nice': 0,
'nprocs': 1,
'num_threads': 30,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6493],
'cmdline': ['Privileged Cont'],
'cpu_percent': 1.9,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 28.22,
'user': 101.81},
'io_counters': [5521408, 0, 5521408, 0, 1],
'memory_info': {'data': 226668544,
'dirty': 0,
'lib': 0,
'rss': 220295168,
'shared': 113606656,
'text': 868352,
'vms': 2737803264},
'memory_percent': 1.3414812089618318,
'name': 'Privileged Cont',
'nice': 0,
'nprocs': 1,
'num_threads': 29,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5503],
'cmdline': ['ibus-engine-simple'],
'cpu_percent': 1.9,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.14,
'user': 16.15},
'io_counters': [139264, 0, 139264, 0, 1],
'memory_info': {'data': 26570752,
'dirty': 0,
'lib': 0,
'rss': 7749632,
'shared': 7225344,
'text': 4096,
'vms': 242991104},
'memory_percent': 0.047191165374854245,
'name': 'ibus-engine-simple',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3679004],
'cmdline': ['kworker/u65:3+i915_flip'],
'cpu_percent': 1.9,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.36,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u65:3+i915_flip',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'D',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [38],
'cmdline': ['ksoftirqd/6'],
'cpu_percent': 1.8,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.55,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/6',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3556897],
'cmdline': ['dropbox'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.22,
'children_user': 0.05,
'iowait': 0.0,
'system': 9.19,
'user': 52.17},
'io_counters': [22495232, 14372864, 22495232, 14372864, 1],
'memory_info': {'data': 876036096,
'dirty': 0,
'lib': 0,
'rss': 311914496,
'shared': 97779712,
'text': 4096,
'vms': 7262388224},
'memory_percent': 1.8993945213850556,
'name': 'dropbox',
'nice': 0,
'nprocs': 1,
'num_threads': 91,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [7374],
'cmdline': ['protonvpn-app'],
'cpu_percent': 0,
'cpu_times': {'children_system': 29.11,
'children_user': 8.63,
'iowait': 0.0,
'system': 8.28,
'user': 69.19},
'io_counters': [103657472, 1091305472, 103657472, 1091305472, 1],
'memory_info': {'data': 336625664,
'dirty': 0,
'lib': 0,
'rss': 203771904,
'shared': 49127424,
'text': 3026944,
'vms': 2505879552},
'memory_percent': 1.2408632591086806,
'name': 'protonvpn-app',
'nice': 0,
'nprocs': 1,
'num_threads': 32,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3600011],
'cmdline': ['gnome-calculator'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.22,
'user': 1.06},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 168591360,
'dirty': 0,
'lib': 0,
'rss': 145813504,
'shared': 101441536,
'text': 344064,
'vms': 1545916416},
'memory_percent': 0.8879272178538246,
'name': 'gnome-calculator',
'nice': 0,
'nprocs': 1,
'num_threads': 12,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3597284, 3597863],
'cmdline': ['evince'],
'cpu_percent': 0,
'cpu_times': {'system': 0.84, 'user': 13.16},
'io_counters': [565248,
262144,
565248,
262144,
1,
258048,
262144,
258048,
262144,
1,
258048,
262144,
258048,
262144,
1],
'memory_info': {'data': 292827136,
'rss': 251158528,
'shared': 116219904,
'text': 483328,
'vms': 2182979584},
'memory_percent': 1.5294227687395943,
'name': 'evince',
'nice': 0,
'nprocs': 2,
'num_threads': 14,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6467],
'cmdline': ['RDD Process'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.25,
'user': 1.59},
'io_counters': [15472640, 0, 15472640, 0, 1],
'memory_info': {'data': 103956480,
'dirty': 0,
'lib': 0,
'rss': 102309888,
'shared': 88121344,
'text': 868352,
'vms': 577703936},
'memory_percent': 0.6230131758631655,
'name': 'RDD Process',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [1132942],
'cmdline': ['multipassd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.02,
'children_user': 0.01,
'iowait': 0.0,
'system': 13.34,
'user': 20.76},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1226481664,
'dirty': 0,
'lib': 0,
'rss': 101130240,
'shared': 34942976,
'text': 13213696,
'vms': 3350560768},
'memory_percent': 0.6158297426559995,
'name': 'multipassd',
'nice': 0,
'nprocs': 1,
'num_threads': 24,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5940],
'cmdline': ['Xwayland'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.01,
'iowait': 0.0,
'system': 216.08,
'user': 251.62},
'io_counters': [7913472, 16384, 7913472, 16384, 1],
'memory_info': {'data': 78446592,
'dirty': 0,
'lib': 0,
'rss': 100237312,
'shared': 76869632,
'text': 1691648,
'vms': 616017920},
'memory_percent': 0.6103922827977976,
'name': 'Xwayland',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5230],
'cmdline': ['evolution-alarm-notify'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.19,
'user': 0.59},
'io_counters': [9023488, 0, 9023488, 0, 1],
'memory_info': {'data': 89817088,
'dirty': 0,
'lib': 0,
'rss': 86564864,
'shared': 75595776,
'text': 20480,
'vms': 1095188480},
'memory_percent': 0.5271342965286309,
'name': 'evolution-alarm-notify',
'nice': 0,
'nprocs': 1,
'num_threads': 8,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3696202, 3696854, 3697185],
'cmdline': ['Web Content'],
'cpu_percent': 0,
'cpu_times': {'system': 0.22, 'user': 0.22000000000000003},
'io_counters': [0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1,
0,
0,
0,
0,
1],
'memory_info': {'data': 100937728,
'rss': 250515456,
'shared': 207523840,
'text': 2605056,
'vms': 7456169984},
'memory_percent': 1.5255067999426322,
'name': 'Web Content',
'nice': 0,
'nprocs': 3,
'num_threads': 57,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5979],
'cmdline': ['mutter-x11-frames'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.66,
'user': 6.86},
'io_counters': [12296192, 0, 12296192, 0, 1],
'memory_info': {'data': 134938624,
'dirty': 0,
'lib': 0,
'rss': 81715200,
'shared': 68173824,
'text': 12288,
'vms': 1213530112},
'memory_percent': 0.49760240445472625,
'name': 'mutter-x11-frames',
'nice': 0,
'nprocs': 1,
'num_threads': 10,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5131],
'cmdline': ['evolution-source-registry'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.51,
'user': 1.64},
'io_counters': [19759104, 4096, 19759104, 4096, 1],
'memory_info': {'data': 86929408,
'dirty': 0,
'lib': 0,
'rss': 73084928,
'shared': 66666496,
'text': 45056,
'vms': 1487003648},
'memory_percent': 0.44504860665091134,
'name': 'evolution-source-registry',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5952],
'cmdline': ['gsd-xsettings'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.01,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.81,
'user': 1.2},
'io_counters': [7933952, 0, 7933952, 0, 1],
'memory_info': {'data': 71000064,
'dirty': 0,
'lib': 0,
'rss': 63725568,
'shared': 60796928,
'text': 32768,
'vms': 794734592},
'memory_percent': 0.38805504804544516,
'name': 'gsd-xsettings',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3686598, 5601, 5143],
'cmdline': ['gjs'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.01,
'children_user': 0.03,
'system': 0.22,
'user': 1.07},
'io_counters': [16384,
0,
16384,
0,
1,
24576,
0,
24576,
0,
1,
61440,
0,
61440,
0,
1,
24576,
0,
24576,
0,
1,
61440,
0,
61440,
0,
1],
'memory_info': {'data': 189689856,
'rss': 100618240,
'shared': 79958016,
'text': 24576,
'vms': 9138192384},
'memory_percent': 0.6127119331042783,
'name': 'gjs',
'nice': 0,
'nprocs': 3,
'num_threads': 37,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6926],
'cmdline': ['Utility Process'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.47,
'user': 0.96},
'io_counters': [3041280, 0, 3041280, 0, 1],
'memory_info': {'data': 61849600,
'dirty': 0,
'lib': 0,
'rss': 49209344,
'shared': 47255552,
'text': 868352,
'vms': 372658176},
'memory_percent': 0.29965891163504166,
'name': 'Utility Process',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6448],
'cmdline': ['Socket Process'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.12,
'user': 0.12},
'io_counters': [991232, 0, 991232, 0, 1],
'memory_info': {'data': 15724544,
'dirty': 0,
'lib': 0,
'rss': 45215744,
'shared': 43905024,
'text': 868352,
'vms': 232738816},
'memory_percent': 0.2753399971316152,
'name': 'Socket Process',
'nice': 0,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3532635],
'cmdline': ['seahorse'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.01,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.41},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 57667584,
'dirty': 0,
'lib': 0,
'rss': 42295296,
'shared': 26357760,
'text': 544768,
'vms': 448167936},
'memory_percent': 0.2575560114485967,
'name': 'seahorse',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [11995],
'cmdline': ['fwupd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.07,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.79,
'user': 8.74},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 175697920,
'dirty': 0,
'lib': 0,
'rss': 41680896,
'shared': 34914304,
'text': 36864,
'vms': 611594240},
'memory_percent': 0.2538146399865311,
'name': 'fwupd',
'nice': 0,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5581],
'cmdline': ['tracker-miner-fs-3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 2.13,
'children_user': 40.04,
'iowait': 0.0,
'system': 2.37,
'user': 11.98},
'io_counters': [1472020480, 732418048, 1472020480, 732418048, 1],
'memory_info': {'data': 165322752,
'dirty': 0,
'lib': 0,
'rss': 39325696,
'shared': 18038784,
'text': 151552,
'vms': 912887808},
'memory_percent': 0.2394727160486129,
'name': 'tracker-miner-fs-3',
'nice': 19,
'nprocs': 1,
'num_threads': 8,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5438],
'cmdline': ['evolution-calendar-factory'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.37,
'user': 11.49},
'io_counters': [14983168, 5189632, 14983168, 5189632, 1],
'memory_info': {'data': 200183808,
'dirty': 0,
'lib': 0,
'rss': 39010304,
'shared': 25157632,
'text': 45056,
'vms': 2333110272},
'memory_percent': 0.23755214536475255,
'name': 'evolution-calendar-factory',
'nice': 0,
'nprocs': 1,
'num_threads': 16,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3548],
'cmdline': ['dockerd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.36,
'children_user': 0.2,
'iowait': 0.0,
'system': 1.98,
'user': 11.98},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 628375552,
'dirty': 0,
'lib': 0,
'rss': 31379456,
'shared': 10121216,
'text': 32280576,
'vms': 6342905856},
'memory_percent': 0.19108431180589763,
'name': 'dockerd',
'nice': 0,
'nprocs': 1,
'num_threads': 66,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3506270],
'cmdline': ['ruff'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.21,
'user': 0.95},
'io_counters': [651264, 0, 651264, 0, 1],
'memory_info': {'data': 117837824,
'dirty': 0,
'lib': 0,
'rss': 31170560,
'shared': 20619264,
'text': 25485312,
'vms': 1094557696},
'memory_percent': 0.18981224550879533,
'name': 'ruff',
'nice': 0,
'nprocs': 1,
'num_threads': 9,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2621],
'cmdline': ['snapd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 7.1,
'children_user': 48.52,
'iowait': 0.0,
'system': 10.67,
'user': 36.45},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 270028800,
'dirty': 0,
'lib': 0,
'rss': 30842880,
'shared': 12300288,
'text': 12349440,
'vms': 3029516288},
'memory_percent': 0.18781684739569368,
'name': 'snapd',
'nice': 0,
'nprocs': 1,
'num_threads': 24,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5387],
'cmdline': ['goa-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.06,
'user': 4.29},
'io_counters': [2588672, 0, 2588672, 0, 1],
'memory_info': {'data': 83570688,
'dirty': 0,
'lib': 0,
'rss': 30121984,
'shared': 23801856,
'text': 24576,
'vms': 1047326720},
'memory_percent': 0.18342697154687002,
'name': 'goa-daemon',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [746],
'cmdline': ['systemd-journald'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 6.11,
'user': 4.36},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 26619904,
'dirty': 0,
'lib': 0,
'rss': 28692480,
'shared': 28037120,
'text': 114688,
'vms': 77422592},
'memory_percent': 0.17472204727846405,
'name': 'systemd-journald',
'nice': -1,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4705],
'cmdline': ['pipewire-pulse'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.82,
'user': 0.94},
'io_counters': [6901760, 0, 6901760, 0, 1],
'memory_info': {'data': 36753408,
'dirty': 0,
'lib': 0,
'rss': 27860992,
'shared': 11259904,
'text': 4096,
'vms': 131477504},
'memory_percent': 0.16965872456646858,
'name': 'pipewire-pulse',
'nice': -11,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [8117],
'cmdline': ['update-notifier'],
'cpu_percent': 0,
'cpu_times': {'children_system': 1.01,
'children_user': 1.91,
'iowait': 0.0,
'system': 0.89,
'user': 1.07},
'io_counters': [4251648, 28672, 4251648, 28672, 1],
'memory_info': {'data': 57954304,
'dirty': 0,
'lib': 0,
'rss': 27414528,
'shared': 22986752,
'text': 40960,
'vms': 508325888},
'memory_percent': 0.16693999463736756,
'name': 'update-notifier',
'nice': 0,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5474],
'cmdline': ['evolution-addressbook-factory'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.19,
'user': 0.6},
'io_counters': [3293184, 36864, 3293184, 36864, 1],
'memory_info': {'data': 87953408,
'dirty': 0,
'lib': 0,
'rss': 23576576,
'shared': 21741568,
'text': 4096,
'vms': 845574144},
'memory_percent': 0.1435688942376644,
'name': 'evolution-addressbook-factory',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5169],
'cmdline': ['gsd-power'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.9,
'user': 3.31},
'io_counters': [634880, 0, 634880, 0, 1],
'memory_info': {'data': 54591488,
'dirty': 0,
'lib': 0,
'rss': 20660224,
'shared': 18300928,
'text': 45056,
'vms': 537088000},
'memory_percent': 0.1258098510310596,
'name': 'gsd-power',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5324],
'cmdline': ['ibus-extension-gtk3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.12,
'user': 10.28},
'io_counters': [4628480, 0, 4628480, 0, 1],
'memory_info': {'data': 53682176,
'dirty': 0,
'lib': 0,
'rss': 20275200,
'shared': 15765504,
'text': 81920,
'vms': 431816704},
'memory_percent': 0.12346525824816516,
'name': 'ibus-extension-gtk3',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5162],
'cmdline': ['gsd-media-keys'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.3,
'user': 1.24},
'io_counters': [921600, 0, 921600, 0, 1],
'memory_info': {'data': 71245824,
'dirty': 0,
'lib': 0,
'rss': 20017152,
'shared': 18444288,
'text': 102400,
'vms': 760135680},
'memory_percent': 0.12189388223409761,
'name': 'gsd-media-keys',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5645],
'cmdline': ['xdg-desktop-portal-gtk'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.74,
'user': 0.83},
'io_counters': [720896, 0, 720896, 0, 1],
'memory_info': {'data': 49004544,
'dirty': 0,
'lib': 0,
'rss': 19877888,
'shared': 17125376,
'text': 135168,
'vms': 428793856},
'memory_percent': 0.1210458380360294,
'name': 'xdg-desktop-portal-gtk',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5122],
'cmdline': ['gnome-shell-calendar-server'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.33,
'user': 1.89},
'io_counters': [9416704, 0, 9416704, 0, 1],
'memory_info': {'data': 89387008,
'dirty': 0,
'lib': 0,
'rss': 18796544,
'shared': 16384000,
'text': 16384,
'vms': 1091321856},
'memory_percent': 0.11446102426279393,
'name': 'gnome-shell-calendar-server',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2705],
'cmdline': ['NetworkManager'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.06,
'children_user': 0.34,
'iowait': 0.0,
'system': 6.19,
'user': 11.29},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 37437440,
'dirty': 0,
'lib': 0,
'rss': 18792448,
'shared': 16171008,
'text': 2555904,
'vms': 346259456},
'memory_percent': 0.11443608178638015,
'name': 'NetworkManager',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5976],
'cmdline': ['ibus-x11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.37,
'user': 0.77},
'io_counters': [1835008, 0, 1835008, 0, 1],
'memory_info': {'data': 32161792,
'dirty': 0,
'lib': 0,
'rss': 18673664,
'shared': 15994880,
'text': 77824,
'vms': 273711104},
'memory_percent': 0.1137127499703808,
'name': 'ibus-x11',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3544],
'cmdline': ['cups-browsed'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.23,
'user': 0.5},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 27832320,
'dirty': 0,
'lib': 0,
'rss': 17969152,
'shared': 16527360,
'text': 118784,
'vms': 275574784},
'memory_percent': 0.10942264402721223,
'name': 'cups-browsed',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'cups-browsed'},
{'childrens': [2976],
'cmdline': ['containerd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 29.49,
'user': 35.6},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 217669632,
'dirty': 0,
'lib': 0,
'rss': 16658432,
'shared': 5824512,
'text': 20078592,
'vms': 2754002944},
'memory_percent': 0.10144105157480561,
'name': 'containerd',
'nice': 0,
'nprocs': 1,
'num_threads': 20,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5225],
'cmdline': ['gsd-wacom'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.1},
'io_counters': [53248, 0, 53248, 0, 1],
'memory_info': {'data': 45596672,
'dirty': 0,
'lib': 0,
'rss': 16343040,
'shared': 14901248,
'text': 12288,
'vms': 422977536},
'memory_percent': 0.09952048089094526,
'name': 'gsd-wacom',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5147],
'cmdline': ['gsd-color'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.17,
'user': 0.25},
'io_counters': [356352, 0, 356352, 0, 1],
'memory_info': {'data': 45182976,
'dirty': 0,
'lib': 0,
'rss': 16240640,
'shared': 14929920,
'text': 24576,
'vms': 423747584},
'memory_percent': 0.09889691898060098,
'name': 'gsd-color',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4947, 4848],
'cmdline': ['gnome-session-binary'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.09,
'children_user': 0.19999999999999998,
'system': 0.18,
'user': 0.63},
'io_counters': [10362880,
4096,
10362880,
4096,
1,
3624960,
0,
3624960,
0,
1,
3624960,
0,
3624960,
0,
1],
'memory_info': {'data': 80257024,
'rss': 30916608,
'shared': 29081600,
'text': 303104,
'vms': 839589888},
'memory_percent': 0.18826581197114156,
'name': 'gnome-session-binary',
'nice': 0,
'nprocs': 2,
'num_threads': 9,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [1, 4683],
'cmdline': ['systemd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 15778.740000000002,
'children_user': 20315.42,
'system': 10.39,
'user': 33.17},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 9912320,
'rss': 30289920,
'shared': 19304448,
'text': 90112,
'vms': 48603136},
'memory_percent': 0.18444961307983462,
'name': 'systemd',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': '_'},
{'childrens': [2651],
'cmdline': ['udisksd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.64,
'user': 1.32},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 54923264,
'dirty': 0,
'lib': 0,
'rss': 15597568,
'shared': 13107200,
'text': 319488,
'vms': 482623488},
'memory_percent': 0.09498095018363899,
'name': 'udisksd',
'nice': 0,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5155],
'cmdline': ['gsd-keyboard'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.08},
'io_counters': [32768, 0, 32768, 0, 1],
'memory_info': {'data': 45019136,
'dirty': 0,
'lib': 0,
'rss': 15437824,
'shared': 14258176,
'text': 12288,
'vms': 421974016},
'memory_percent': 0.09400819360350192,
'name': 'gsd-keyboard',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2487],
'cmdline': ['systemd-resolved'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 9.81,
'user': 12.47},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 5566464,
'dirty': 0,
'lib': 0,
'rss': 14774272,
'shared': 10579968,
'text': 360448,
'vms': 25694208},
'memory_percent': 0.08996751242447106,
'name': 'systemd-resolved',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'systemd-resolve'},
{'childrens': [2655],
'cmdline': ['virtlogd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.03},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1241088,
'dirty': 0,
'lib': 0,
'rss': 14712832,
'shared': 13008896,
'text': 40960,
'vms': 75591680},
'memory_percent': 0.0895933752782645,
'name': 'virtlogd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5394],
'cmdline': ['gsd-printer'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.08},
'io_counters': [32768, 0, 32768, 0, 1],
'memory_info': {'data': 43978752,
'dirty': 0,
'lib': 0,
'rss': 13914112,
'shared': 13127680,
'text': 12288,
'vms': 426344448},
'memory_percent': 0.08472959237757921,
'name': 'gsd-printer',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4704],
'cmdline': ['wireplumber'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.2,
'user': 0.44},
'io_counters': [3493888, 36864, 3493888, 36864, 1],
'memory_info': {'data': 54898688,
'dirty': 0,
'lib': 0,
'rss': 13811712,
'shared': 11321344,
'text': 8192,
'vms': 416354304},
'memory_percent': 0.08410603046723494,
'name': 'wireplumber',
'nice': -11,
'nprocs': 1,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2610],
'cmdline': ['gnome-remote-desktop-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.03},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 44306432,
'dirty': 0,
'lib': 0,
'rss': 13701120,
'shared': 13307904,
'text': 352256,
'vms': 449744896},
'memory_percent': 0.08343258360406312,
'name': 'gnome-remote-desktop-daemon',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'gnome-remote-desktop'},
{'childrens': [2653],
'cmdline': ['virtlockd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1241088,
'dirty': 0,
'lib': 0,
'rss': 13352960,
'shared': 12828672,
'text': 40960,
'vms': 75587584},
'memory_percent': 0.08131247310889261,
'name': 'virtlockd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5623],
'cmdline': ['xdg-desktop-portal'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.27,
'children_user': 0.26,
'iowait': 0.0,
'system': 1.3,
'user': 2.45},
'io_counters': [2292736, 0, 2292736, 0, 1],
'memory_info': {'data': 87252992,
'dirty': 0,
'lib': 0,
'rss': 13205504,
'shared': 11505664,
'text': 450560,
'vms': 853090304},
'memory_percent': 0.08041454395799687,
'name': 'xdg-desktop-portal',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4700, 4701],
'cmdline': ['pipewire'],
'cpu_percent': 0,
'cpu_times': {'system': 0.77, 'user': 0.44},
'io_counters': [3178496, 0, 3178496, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1],
'memory_info': {'data': 52264960,
'rss': 17879040,
'shared': 12763136,
'text': 8192,
'vms': 222240768},
'memory_percent': 0.10887390954610929,
'name': 'pipewire',
'nice': '_',
'nprocs': 2,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2616],
'cmdline': ['polkitd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.23,
'user': 3.61},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 48521216,
'dirty': 0,
'lib': 0,
'rss': 12865536,
'shared': 8404992,
'text': 65536,
'vms': 401965056},
'memory_percent': 0.0783443184156539,
'name': 'polkitd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'polkitd'},
{'childrens': [6546],
'cmdline': ['snap'],
'cpu_percent': 0,
'cpu_times': {'children_system': 1.0,
'children_user': 0.65,
'iowait': 0.0,
'system': 1.38,
'user': 2.49},
'io_counters': [4620288, 0, 4620288, 0, 1],
'memory_info': {'data': 145805312,
'dirty': 0,
'lib': 0,
'rss': 12836864,
'shared': 6287360,
'text': 8859648,
'vms': 2111332352},
'memory_percent': 0.0781697210807575,
'name': 'snap',
'nice': 0,
'nprocs': 1,
'num_threads': 12,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4660],
'cmdline': ['gdm-session-worker'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.79,
'children_user': 0.86,
'iowait': 0.0,
'system': 0.24,
'user': 0.29},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 54345728,
'dirty': 0,
'lib': 0,
'rss': 12386304,
'shared': 9633792,
'text': 131072,
'vms': 476512256},
'memory_percent': 0.07542604867524272,
'name': 'gdm-session-worker',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2970],
'cmdline': ['unattended-upgr'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.04},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 19689472,
'dirty': 0,
'lib': 0,
'rss': 12369920,
'shared': 11059200,
'text': 3026944,
'vms': 120745984},
'memory_percent': 0.07532627876958764,
'name': 'unattended-upgr',
'nice': 0,
'nprocs': 1,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5875, 5803],
'cmdline': ['snapd-desktop-integration'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.03,
'children_user': 0.01,
'system': 0.18,
'user': 0.59},
'io_counters': [8378368,
0,
8378368,
0,
1,
47104,
0,
47104,
0,
1,
47104,
0,
47104,
0,
1],
'memory_info': {'data': 54161408,
'rss': 19804160,
'shared': 16900096,
'text': 589824,
'vms': 480927744},
'memory_percent': 0.12059687346058154,
'name': 'snapd-desktop-integration',
'nice': 0,
'nprocs': 2,
'num_threads': 6,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5149],
'cmdline': ['gsd-datetime'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.03},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 43704320,
'dirty': 0,
'lib': 0,
'rss': 11907072,
'shared': 11251712,
'text': 20480,
'vms': 442417152},
'memory_percent': 0.07250777893483154,
'name': 'gsd-datetime',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5254],
'cmdline': ['gvfs-udisks2-volume-monitor'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.2,
'user': 5.36},
'io_counters': [319488, 0, 319488, 0, 1],
'memory_info': {'data': 53661696,
'dirty': 0,
'lib': 0,
'rss': 11534336,
'shared': 9306112,
'text': 94208,
'vms': 474787840},
'memory_percent': 0.07023801358117841,
'name': 'gvfs-udisks2-volume-monitor',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3018],
'cmdline': ['colord'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.16,
'children_user': 0.1,
'iowait': 0.0,
'system': 0.03,
'user': 0.14},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 38928384,
'dirty': 0,
'lib': 0,
'rss': 11264000,
'shared': 10346496,
'text': 94208,
'vms': 328159232},
'memory_percent': 0.06859181013786954,
'name': 'colord',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'colord'},
{'childrens': [5174],
'cmdline': ['gsd-print-notifications'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.03},
'io_counters': [192512, 0, 192512, 0, 1],
'memory_info': {'data': 35254272,
'dirty': 0,
'lib': 0,
'rss': 11108352,
'shared': 10715136,
'text': 20480,
'vms': 331653120},
'memory_percent': 0.06764399603414625,
'name': 'gsd-print-notifications',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5199],
'cmdline': ['gsd-sharing'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.05,
'user': 4.83},
'io_counters': [188416, 0, 188416, 0, 1],
'memory_info': {'data': 61153280,
'dirty': 0,
'lib': 0,
'rss': 11034624,
'shared': 9986048,
'text': 16384,
'vms': 556736512},
'memory_percent': 0.06719503145869837,
'name': 'gsd-sharing',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2946, 3433],
'cmdline': ['cupsd'],
'cpu_percent': 0,
'cpu_times': {'system': 0.30000000000000004, 'user': 0.03},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 11173888,
'rss': 16949248,
'shared': 16031744,
'text': 614400,
'vms': 104898560},
'memory_percent': 0.10321196740018332,
'name': 'cupsd',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3530],
'cmdline': ['thermald'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.02,
'user': 2.23},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 43474944,
'dirty': 0,
'lib': 0,
'rss': 10612736,
'shared': 10088448,
'text': 348160,
'vms': 435154944},
'memory_percent': 0.06462595638808,
'name': 'thermald',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4708],
'cmdline': ['gnome-keyring-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.53,
'user': 2.08},
'io_counters': [3350528, 937984, 3350528, 937984, 1],
'memory_info': {'data': 52654080,
'dirty': 0,
'lib': 0,
'rss': 10166272,
'shared': 9379840,
'text': 577536,
'vms': 476004352},
'memory_percent': 0.061907226458978976,
'name': 'gnome-keyring-daemon',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2707],
'cmdline': ['wpa_supplicant'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.9,
'user': 1.32},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1425408,
'dirty': 0,
'lib': 0,
'rss': 10117120,
'shared': 9068544,
'text': 2387968,
'vms': 18817024},
'memory_percent': 0.06160791674201373,
'name': 'wpa_supplicant',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2929],
'cmdline': ['upowerd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 22.69,
'user': 1.84},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 37236736,
'dirty': 0,
'lib': 0,
'rss': 10051584,
'shared': 7692288,
'text': 81920,
'vms': 326373376},
'memory_percent': 0.0612088371193934,
'name': 'upowerd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1099735],
'cmdline': ['sd_espeak-ng'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.24,
'user': 0.02},
'io_counters': [4096, 0, 4096, 0, 1],
'memory_info': {'data': 20443136,
'dirty': 0,
'lib': 0,
'rss': 9863168,
'shared': 6717440,
'text': 32768,
'vms': 109895680},
'memory_percent': 0.060061483204359944,
'name': 'sd_espeak-ng',
'nice': 0,
'nprocs': 1,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [55223],
'cmdline': ['gvfsd-http'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.04},
'io_counters': [737280, 0, 737280, 0, 1],
'memory_info': {'data': 35053568,
'dirty': 0,
'lib': 0,
'rss': 9682944,
'shared': 8896512,
'text': 20480,
'vms': 328187904},
'memory_percent': 0.05896401424215403,
'name': 'gvfsd-http',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2828],
'cmdline': ['ModemManager'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.67,
'user': 0.45},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 44507136,
'dirty': 0,
'lib': 0,
'rss': 9641984,
'shared': 8200192,
'text': 1196032,
'vms': 401760256},
'memory_percent': 0.058714589478016325,
'name': 'ModemManager',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3552],
'cmdline': ['snmpd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 27.83,
'user': 10.39},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 3874816,
'dirty': 0,
'lib': 0,
'rss': 9510912,
'shared': 8200192,
'text': 12288,
'vms': 26628096},
'memory_percent': 0.057916430232775665,
'name': 'snmpd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'Debian-snmp'},
{'childrens': [3601],
'cmdline': ['gdm3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.04,
'children_user': 0.02,
'iowait': 0.0,
'system': 0.06,
'user': 0.14},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 35098624,
'dirty': 0,
'lib': 0,
'rss': 9285632,
'shared': 8630272,
'text': 233472,
'vms': 322641920},
'memory_percent': 0.05654459403001827,
'name': 'gdm3',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5223],
'cmdline': ['gsd-sound'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.04},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 43753472,
'dirty': 0,
'lib': 0,
'rss': 9191424,
'shared': 8536064,
'text': 8192,
'vms': 403460096},
'memory_percent': 0.05597091707250154,
'name': 'gsd-sound',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [1099678],
'cmdline': ['speech-dispatcher'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.56,
'user': 0.17},
'io_counters': [1142784, 0, 1142784, 0, 1],
'memory_info': {'data': 38137856,
'dirty': 0,
'lib': 0,
'rss': 9183232,
'shared': 5361664,
'text': 122880,
'vms': 123002880},
'memory_percent': 0.055921032119673995,
'name': 'speech-dispatcher',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [8729],
'cmdline': ['gvfsd-recent'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.13,
'user': 0.87},
'io_counters': [2596864, 0, 2596864, 0, 1],
'memory_info': {'data': 44507136,
'dirty': 0,
'lib': 0,
'rss': 8888320,
'shared': 7520256,
'text': 16384,
'vms': 398921728},
'memory_percent': 0.05412517381788251,
'name': 'gvfsd-recent',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [11634],
'cmdline': ['gvfsd-dnssd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.13,
'user': 0.31},
'io_counters': [40960, 0, 40960, 0, 1],
'memory_info': {'data': 43520000,
'dirty': 0,
'lib': 0,
'rss': 8777728,
'shared': 8384512,
'text': 16384,
'vms': 400244736},
'memory_percent': 0.0534517269547107,
'name': 'gvfsd-dnssd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5542],
'cmdline': ['gvfsd-trash'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.52,
'user': 1.54},
'io_counters': [377856, 0, 377856, 0, 1],
'memory_info': {'data': 69439488,
'dirty': 0,
'lib': 0,
'rss': 8761344,
'shared': 7974912,
'text': 24576,
'vms': 624521216},
'memory_percent': 0.05335195704905561,
'name': 'gvfsd-trash',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [11597],
'cmdline': ['gvfsd-network'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.19,
'user': 0.74},
'io_counters': [49152, 0, 49152, 0, 1],
'memory_info': {'data': 60895232,
'dirty': 0,
'lib': 0,
'rss': 8634368,
'shared': 7979008,
'text': 16384,
'vms': 549408768},
'memory_percent': 0.05257874028022872,
'name': 'gvfsd-network',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2636],
'cmdline': ['systemd-logind'],
'cpu_percent': 0,
'cpu_times': {'children_system': 2.77,
'children_user': 0.41,
'iowait': 0.0,
'system': 4.3,
'user': 2.21},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 950272,
'dirty': 0,
'lib': 0,
'rss': 8470528,
'shared': 7811072,
'text': 155648,
'vms': 18632704},
'memory_percent': 0.05158104122367789,
'name': 'systemd-logind',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5429],
'cmdline': ['gvfs-afc-volume-monitor'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.42,
'user': 0.93},
'io_counters': [98304, 0, 98304, 0, 1],
'memory_info': {'data': 43266048,
'dirty': 0,
'lib': 0,
'rss': 8318976,
'shared': 7401472,
'text': 40960,
'vms': 398839808},
'memory_percent': 0.05065816959636838,
'name': 'gvfs-afc-volume-monitor',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2488],
'cmdline': ['systemd-timesyncd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.26,
'user': 0.12},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 9158656,
'dirty': 0,
'lib': 0,
'rss': 8298496,
'shared': 7380992,
'text': 28672,
'vms': 93585408},
'memory_percent': 0.05053345721429952,
'name': 'systemd-timesyncd',
'nice': 0,
'nprocs': 1,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'systemd-timesync'},
{'childrens': [5152],
'cmdline': ['gsd-housekeeping'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.88,
'user': 3.35},
'io_counters': [466944, 0, 466944, 0, 1],
'memory_info': {'data': 52047872,
'dirty': 0,
'lib': 0,
'rss': 8212480,
'shared': 7557120,
'text': 24576,
'vms': 470396928},
'memory_percent': 0.05000966520961034,
'name': 'gsd-housekeeping',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5247],
'cmdline': ['gsd-disk-utility-notify'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.08},
'io_counters': [24576, 0, 24576, 0, 1],
'memory_info': {'data': 36171776,
'dirty': 0,
'lib': 0,
'rss': 8151040,
'shared': 6053888,
'text': 8192,
'vms': 312958976},
'memory_percent': 0.04963552806340378,
'name': 'gsd-disk-utility-notify',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5404],
'cmdline': ['goa-identity-service'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.11,
'user': 0.11},
'io_counters': [200704, 0, 200704, 0, 1],
'memory_info': {'data': 43364352,
'dirty': 0,
'lib': 0,
'rss': 8077312,
'shared': 7815168,
'text': 65536,
'vms': 398757888},
'memory_percent': 0.04918656348795591,
'name': 'goa-identity-service',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5204],
'cmdline': ['gsd-smartcard'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.07},
'io_counters': [98304, 0, 98304, 0, 1],
'memory_info': {'data': 43393024,
'dirty': 0,
'lib': 0,
'rss': 7901184,
'shared': 7507968,
'text': 36864,
'vms': 395452416},
'memory_percent': 0.04811403700216376,
'name': 'gsd-smartcard',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2638],
'cmdline': ['systemd-machined'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.75,
'user': 0.99},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 851968,
'dirty': 0,
'lib': 0,
'rss': 7868416,
'shared': 6950912,
'text': 65536,
'vms': 18010112},
'memory_percent': 0.0479144971908536,
'name': 'systemd-machined',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2624],
'cmdline': ['accounts-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.94,
'user': 1.68},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 34959360,
'dirty': 0,
'lib': 0,
'rss': 7778304,
'shared': 7385088,
'text': 90112,
'vms': 321167360},
'memory_percent': 0.04736576270975063,
'name': 'accounts-daemon',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2486],
'cmdline': ['systemd-oomd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 16.04,
'user': 8.32},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 892928,
'dirty': 0,
'lib': 0,
'rss': 7700480,
'shared': 6914048,
'text': 28672,
'vms': 17977344},
'memory_percent': 0.046891855657888996,
'name': 'systemd-oomd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'systemd-oom'},
{'childrens': [2831],
'cmdline': ['boltd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.33,
'user': 0.52},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 34893824,
'dirty': 0,
'lib': 0,
'rss': 7696384,
'shared': 7434240,
'text': 167936,
'vms': 321400832},
'memory_percent': 0.04686691318147522,
'name': 'boltd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2613],
'cmdline': ['iio-sensor-proxy'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 5.67,
'user': 3.95},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 35188736,
'dirty': 0,
'lib': 0,
'rss': 7692288,
'shared': 6905856,
'text': 36864,
'vms': 321552384},
'memory_percent': 0.04684197070506145,
'name': 'iio-sensor-proxy',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4994],
'cmdline': ['at-spi-bus-launcher'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.06},
'io_counters': [32768, 0, 32768, 0, 1],
'memory_info': {'data': 43323392,
'dirty': 0,
'lib': 0,
'rss': 7675904,
'shared': 7151616,
'text': 12288,
'vms': 392155136},
'memory_percent': 0.04674220079940637,
'name': 'at-spi-bus-launcher',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4766],
'cmdline': ['xdg-document-portal'],
'cpu_percent': 0,
'cpu_times': {'children_system': 2.5,
'children_user': 2.34,
'iowait': 0.0,
'system': 0.28,
'user': 0.6},
'io_counters': [1281024, 0, 1281024, 0, 1],
'memory_info': {'data': 70950912,
'dirty': 0,
'lib': 0,
'rss': 7618560,
'shared': 7225344,
'text': 110592,
'vms': 625213440},
'memory_percent': 0.04639300612961358,
'name': 'xdg-document-portal',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [783],
'cmdline': ['systemd-udevd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 15.76,
'children_user': 8.98,
'iowait': 0.0,
'system': 4.32,
'user': 3.17},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 3833856,
'dirty': 0,
'lib': 0,
'rss': 7585792,
'shared': 4440064,
'text': 864256,
'vms': 31686656},
'memory_percent': 0.046193466318303414,
'name': 'systemd-udevd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4936],
'cmdline': ['gvfsd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 2.5,
'children_user': 2.13,
'iowait': 0.0,
'system': 0.4,
'user': 0.62},
'io_counters': [12357632, 0, 12357632, 0, 1],
'memory_info': {'data': 35004416,
'dirty': 0,
'lib': 0,
'rss': 7499776,
'shared': 7237632,
'text': 16384,
'vms': 322232320},
'memory_percent': 0.045669674313614225,
'name': 'gvfsd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5421],
'cmdline': ['gvfs-goa-volume-monitor'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.12},
'io_counters': [110592, 0, 110592, 0, 1],
'memory_info': {'data': 34852864,
'dirty': 0,
'lib': 0,
'rss': 7471104,
'shared': 6946816,
'text': 45056,
'vms': 318169088},
'memory_percent': 0.04549507697871783,
'name': 'gvfs-goa-volume-monitor',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5103],
'cmdline': ['at-spi2-registryd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.05},
'io_counters': [86016, 0, 86016, 0, 1],
'memory_info': {'data': 26329088,
'dirty': 0,
'lib': 0,
'rss': 7180288,
'shared': 6918144,
'text': 40960,
'vms': 241733632},
'memory_percent': 0.04372416115334011,
'name': 'at-spi2-registryd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5418],
'cmdline': ['gvfsd-metadata'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.3},
'io_counters': [73728, 1978368, 73728, 1978368, 1],
'memory_info': {'data': 26742784,
'dirty': 0,
'lib': 0,
'rss': 7077888,
'shared': 6291456,
'text': 32768,
'vms': 242802688},
'memory_percent': 0.04310059924299584,
'name': 'gvfsd-metadata',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4718, 2607, 5008],
'cmdline': ['dbus-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.08,
'children_user': 0.02,
'system': 10.530000000000001,
'user': 36.910000000000004},
'io_counters': [1019904,
0,
1019904,
0,
1,
0,
0,
0,
0,
0,
4096,
0,
4096,
0,
1,
0,
0,
0,
0,
0,
4096,
0,
4096,
0,
1],
'memory_info': {'data': 8179712,
'rss': 18825216,
'shared': 13586432,
'text': 454656,
'vms': 35287040},
'memory_percent': 0.11463562159769033,
'name': 'dbus-daemon',
'nice': 0,
'nprocs': 3,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': '_'},
{'childrens': [5322],
'cmdline': ['ibus-memconf'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [20480, 0, 20480, 0, 1],
'memory_info': {'data': 26173440,
'dirty': 0,
'lib': 0,
'rss': 6975488,
'shared': 6844416,
'text': 8192,
'vms': 242601984},
'memory_percent': 0.042477037332651575,
'name': 'ibus-memconf',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5182],
'cmdline': ['gsd-rfkill'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.09,
'user': 0.33},
'io_counters': [49152, 0, 49152, 0, 1],
'memory_info': {'data': 60280832,
'dirty': 0,
'lib': 0,
'rss': 6971392,
'shared': 6578176,
'text': 20480,
'vms': 544178176},
'memory_percent': 0.0424520948562378,
'name': 'gsd-rfkill',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5341],
'cmdline': ['ibus-portal'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.14,
'user': 0.5},
'io_counters': [86016, 0, 86016, 0, 1],
'memory_info': {'data': 35115008,
'dirty': 0,
'lib': 0,
'rss': 6922240,
'shared': 6791168,
'text': 28672,
'vms': 318132224},
'memory_percent': 0.04215278513927255,
'name': 'ibus-portal',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4944],
'cmdline': ['gvfsd-fuse'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.01},
'io_counters': [204800, 0, 204800, 0, 1],
'memory_info': {'data': 53944320,
'dirty': 0,
'lib': 0,
'rss': 6852608,
'shared': 6590464,
'text': 24576,
'vms': 471019520},
'memory_percent': 0.041728763040238454,
'name': 'gvfsd-fuse',
'nice': 0,
'nprocs': 1,
'num_threads': 7,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2628],
'cmdline': ['switcheroo-control'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.04},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 34865152,
'dirty': 0,
'lib': 0,
'rss': 6823936,
'shared': 6168576,
'text': 8192,
'vms': 317415424},
'memory_percent': 0.04155416570534205,
'name': 'switcheroo-control',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5146],
'cmdline': ['gsd-a11y-settings'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.04},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 43220992,
'dirty': 0,
'lib': 0,
'rss': 6799360,
'shared': 6537216,
'text': 8192,
'vms': 393097216},
'memory_percent': 0.04140451084685943,
'name': 'gsd-a11y-settings',
'nice': 0,
'nprocs': 1,
'num_threads': 5,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5446],
'cmdline': ['gvfs-mtp-volume-monitor'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.11},
'io_counters': [98304, 0, 98304, 0, 1],
'memory_info': {'data': 34824192,
'dirty': 0,
'lib': 0,
'rss': 6688768,
'shared': 6164480,
'text': 40960,
'vms': 317448192},
'memory_percent': 0.04073106398368762,
'name': 'gvfs-mtp-volume-monitor',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4913],
'cmdline': ['gcr-ssh-agent'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [65536, 0, 65536, 0, 1],
'memory_info': {'data': 17641472,
'dirty': 0,
'lib': 0,
'rss': 6631424,
'shared': 6107136,
'text': 32768,
'vms': 166555648},
'memory_percent': 0.040381869313894835,
'name': 'gcr-ssh-agent',
'nice': 0,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5388],
'cmdline': ['gvfs-gphoto2-volume-monitor'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.13},
'io_counters': [327680, 0, 327680, 0, 1],
'memory_info': {'data': 35246080,
'dirty': 0,
'lib': 0,
'rss': 6615040,
'shared': 6221824,
'text': 45056,
'vms': 318439424},
'memory_percent': 0.04028209940823975,
'name': 'gvfs-gphoto2-volume-monitor',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [1099836],
'cmdline': ['sd_dummy'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.91,
'user': 2.04},
'io_counters': [86016, 0, 86016, 0, 1],
'memory_info': {'data': 17657856,
'dirty': 0,
'lib': 0,
'rss': 6402048,
'shared': 5746688,
'text': 28672,
'vms': 166596608},
'memory_percent': 0.03898509063472367,
'name': 'sd_dummy',
'nice': 0,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5192],
'cmdline': ['gsd-screensaver-proxy'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.06},
'io_counters': [32768, 0, 32768, 0, 1],
'memory_info': {'data': 34693120,
'dirty': 0,
'lib': 0,
'rss': 6287360,
'shared': 6025216,
'text': 8192,
'vms': 317108224},
'memory_percent': 0.03828670129513809,
'name': 'gsd-screensaver-proxy',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4775],
'cmdline': ['xdg-permission-store'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.04},
'io_counters': [86016, 0, 86016, 0, 1],
'memory_info': {'data': 34676736,
'dirty': 0,
'lib': 0,
'rss': 6123520,
'shared': 5992448,
'text': 36864,
'vms': 317140992},
'memory_percent': 0.037289002238587256,
'name': 'xdg-permission-store',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [5130],
'cmdline': ['dconf-service'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.11,
'user': 0.38},
'io_counters': [200704, 3563520, 200704, 3563520, 1],
'memory_info': {'data': 26595328,
'dirty': 0,
'lib': 0,
'rss': 5992448,
'shared': 5337088,
'text': 36864,
'vms': 236101632},
'memory_percent': 0.036490842993346595,
'name': 'dconf-service',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [43204, 3505988],
'cmdline': ['bash'],
'cpu_percent': 0,
'cpu_times': {'children_system': 30.630000000000003,
'children_user': 98.36,
'system': 0.44,
'user': 0.5700000000000001},
'io_counters': [686511104,
1092526080,
686511104,
1092526080,
1,
179200,
8192,
179200,
8192,
1,
179200,
8192,
179200,
8192,
1],
'memory_info': {'data': 5885952,
'rss': 11632640,
'shared': 7569408,
'text': 1957888,
'vms': 22925312},
'memory_percent': 0.07083663301510891,
'name': 'bash',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2619],
'cmdline': ['smartd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.02},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1220608,
'dirty': 0,
'lib': 0,
'rss': 5898240,
'shared': 4980736,
'text': 249856,
'vms': 12292096},
'memory_percent': 0.03591716603582987,
'name': 'smartd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3434],
'cmdline': ['cups-proxyd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.4,
'user': 0.18},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 26611712,
'dirty': 0,
'lib': 0,
'rss': 5894144,
'shared': 5632000,
'text': 28672,
'vms': 247369728},
'memory_percent': 0.0358922235594161,
'name': 'cups-proxyd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4833],
'cmdline': ['gdm-wayland-session'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 26157056,
'dirty': 0,
'lib': 0,
'rss': 5799936,
'shared': 5799936,
'text': 20480,
'vms': 241627136},
'memory_percent': 0.03531854660189937,
'name': 'gdm-wayland-session',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3597292],
'cmdline': ['evinced'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.01},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 26124288,
'dirty': 0,
'lib': 0,
'rss': 5750784,
'shared': 5357568,
'text': 12288,
'vms': 235589632},
'memory_percent': 0.03501923688493412,
'name': 'evinced',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3505977],
'cmdline': ['pet'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.03,
'iowait': 0.0,
'system': 1.95,
'user': 1.29},
'io_counters': [7933952, 94208, 7933952, 94208, 1],
'memory_info': {'data': 2420736,
'dirty': 0,
'lib': 0,
'rss': 5722112,
'shared': 3584000,
'text': 3260416,
'vms': 6492160},
'memory_percent': 0.03484463955003773,
'name': 'pet',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2606],
'cmdline': ['bluetoothd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 38.33,
'user': 26.11},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1327104,
'dirty': 0,
'lib': 0,
'rss': 5640192,
'shared': 5378048,
'text': 995328,
'vms': 14532608},
'memory_percent': 0.034345790021762315,
'name': 'bluetoothd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686474],
'cmdline': ['zed'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 25862144,
'dirty': 0,
'lib': 0,
'rss': 5570560,
'shared': 4653056,
'text': 61440,
'vms': 104570880},
'memory_percent': 0.033921767922728205,
'name': 'zed',
'nice': 0,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4919],
'cmdline': ['gnome-session-ctl'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [20480, 0, 20480, 0, 1],
'memory_info': {'data': 9031680,
'dirty': 0,
'lib': 0,
'rss': 5390336,
'shared': 5128192,
'text': 4096,
'vms': 93683712},
'memory_percent': 0.032824298960522295,
'name': 'gnome-session-ctl',
'nice': 0,
'nprocs': 1,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [43301],
'cmdline': ['ssh-agent'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.3},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 663552,
'dirty': 0,
'lib': 0,
'rss': 5185536,
'shared': 5054464,
'text': 139264,
'vms': 8634368},
'memory_percent': 0.03157717513983376,
'name': 'ssh-agent',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2605, 2701],
'cmdline': ['avahi-daemon'],
'cpu_percent': 0,
'cpu_times': {'system': 4.32, 'user': 4.72},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 1273856,
'rss': 5726208,
'shared': 5066752,
'text': 163840,
'vms': 17698816},
'memory_percent': 0.0348695820264515,
'name': 'avahi-daemon',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'avahi'},
{'childrens': [2773],
'cmdline': ['rsyslogd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.52,
'user': 1.95},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 18923520,
'dirty': 0,
'lib': 0,
'rss': 4427776,
'shared': 3903488,
'text': 454656,
'vms': 227909632},
'memory_percent': 0.02696281700328617,
'name': 'rsyslogd',
'nice': 0,
'nprocs': 1,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'syslog'},
{'childrens': [6292],
'cmdline': ['crashhelper'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.05,
'user': 0.01},
'io_counters': [1377280, 0, 1377280, 0, 1],
'memory_info': {'data': 9740288,
'dirty': 0,
'lib': 0,
'rss': 3387392,
'shared': 3256320,
'text': 1593344,
'vms': 21860352},
'memory_percent': 0.020627427994188405,
'name': 'crashhelper',
'nice': 0,
'nprocs': 1,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [6023],
'cmdline': ['uuidd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.03},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 434176,
'dirty': 0,
'lib': 0,
'rss': 3289088,
'shared': 3158016,
'text': 12288,
'vms': 12046336},
'memory_percent': 0.020028808560257905,
'name': 'uuidd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'uuidd'},
{'childrens': [3691],
'cmdline': ['rtkit-daemon'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.99,
'user': 0.51},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 17211392,
'dirty': 0,
'lib': 0,
'rss': 3248128,
'shared': 2985984,
'text': 28672,
'vms': 23490560},
'memory_percent': 0.0197793837961202,
'name': 'rtkit-daemon',
'nice': 1,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'rtkit'},
{'childrens': [3505454],
'cmdline': ['chrome_crashpad_handler'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.0},
'io_counters': [417792, 352256, 417792, 352256, 1],
'memory_info': {'data': 17649664,
'dirty': 0,
'lib': 0,
'rss': 3190784,
'shared': 2928640,
'text': 1085440,
'vms': 34382123008},
'memory_percent': 0.019430189126327407,
'name': 'chrome_crashpad_handler',
'nice': 0,
'nprocs': 1,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [2627],
'cmdline': ['cron'],
'cpu_percent': 0,
'cpu_times': {'children_system': 1.06,
'children_user': 0.37,
'iowait': 0.0,
'system': 0.13,
'user': 0.04},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 450560,
'dirty': 0,
'lib': 0,
'rss': 2756608,
'shared': 2625536,
'text': 32768,
'vms': 9588736},
'memory_percent': 0.01678628662646771,
'name': 'cron',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3697726],
'cmdline': ['make'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [262144, 0, 262144, 0, 1],
'memory_info': {'data': 520192,
'dirty': 0,
'lib': 0,
'rss': 2670592,
'shared': 2408448,
'text': 172032,
'vms': 8802304},
'memory_percent': 0.016262494621778523,
'name': 'make',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [1099853],
'cmdline': ['sd_openjtalk'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [57344, 0, 57344, 0, 1],
'memory_info': {'data': 397312,
'dirty': 0,
'lib': 0,
'rss': 2613248,
'shared': 2482176,
'text': 24576,
'vms': 5804032},
'memory_percent': 0.015913299951985732,
'name': 'sd_openjtalk',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [4690],
'cmdline': ['(sd-pam)'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 1351680,
'dirty': 0,
'lib': 0,
'rss': 2584576,
'shared': 1892352,
'text': 86016,
'vms': 22138880},
'memory_percent': 0.015738702617089338,
'name': '(sd-pam)',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3575, 3557],
'cmdline': ['kerneloops'],
'cpu_percent': 0,
'cpu_times': {'system': 0.07, 'user': 0.07},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 1064960,
'rss': 4407296,
'shared': 3858432,
'text': 24576,
'vms': 26099712},
'memory_percent': 0.026838104621217315,
'name': 'kerneloops',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'kernoops'},
{'childrens': [4782],
'cmdline': ['fusermount3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 364544,
'dirty': 0,
'lib': 0,
'rss': 1986560,
'shared': 1986560,
'text': 20480,
'vms': 2768896},
'memory_percent': 0.012097101060678808,
'name': 'fusermount3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3689950],
'cmdline': ['sleep'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 364544,
'dirty': 0,
'lib': 0,
'rss': 1957888,
'shared': 1957888,
'text': 16384,
'vms': 3289088},
'memory_percent': 0.011922503725782414,
'name': 'sleep',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3697729],
'cmdline': ['sh'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 1],
'memory_info': {'data': 376832,
'dirty': 0,
'lib': 0,
'rss': 1683456,
'shared': 1683456,
'text': 86016,
'vms': 2871296},
'memory_percent': 0.010251357806059775,
'name': 'sh',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3155, 3156],
'cmdline': ['dnsmasq'],
'cpu_percent': 0,
'cpu_times': {'system': 0.21, 'user': 0.03},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 1040384,
'rss': 2535424,
'shared': 2183168,
'text': 745472,
'vms': 23519232},
'memory_percent': 0.015439392900124088,
'name': 'dnsmasq',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': '_'},
{'childrens': [2959],
'cmdline': ['run-cupsd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.26,
'children_user': 0.01,
'iowait': 0.0,
'system': 0.17,
'user': 0.02},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 372736,
'dirty': 0,
'lib': 0,
'rss': 1429504,
'shared': 1429504,
'text': 81920,
'vms': 2961408},
'memory_percent': 0.00870492426840599,
'name': 'run-cupsd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2955, 3439],
'cmdline': ['run-cups-browse'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.36,
'children_user': 0.01,
'system': 0.19,
'user': 0.02},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {'data': 745472,
'rss': 2269184,
'shared': 2269184,
'text': 163840,
'vms': 5922816},
'memory_percent': 0.013818131933228991,
'name': 'run-cups-browse',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2],
'cmdline': ['kthreadd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.26,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kthreadd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3],
'cmdline': ['pool_workqueue_release'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'pool_workqueue_release',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [4],
'cmdline': ['kworker/R-rcu_gp'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-rcu_gp',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [5],
'cmdline': ['kworker/R-sync_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-sync_wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [6],
'cmdline': ['kworker/R-slub_flushwq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-slub_flushwq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [7],
'cmdline': ['kworker/R-netns'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-netns',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [9],
'cmdline': ['kworker/0:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/0:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [12],
'cmdline': ['kworker/R-mm_percpu_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-mm_percpu_wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [13],
'cmdline': ['rcu_tasks_kthread'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_tasks_kthread',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [14],
'cmdline': ['rcu_tasks_rude_kthread'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_tasks_rude_kthread',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [15],
'cmdline': ['rcu_tasks_trace_kthread'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_tasks_trace_kthread',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [16],
'cmdline': ['ksoftirqd/0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 8.73,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [17],
'cmdline': ['rcu_preempt'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 102.35,
'user': 0.2},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_preempt',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [18],
'cmdline': ['rcu_exp_par_gp_kthread_worker/0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_exp_par_gp_kthread_worker/0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [19],
'cmdline': ['rcu_exp_gp_kthread_worker'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.15,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'rcu_exp_gp_kthread_worker',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [20],
'cmdline': ['migration/0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 10.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [21],
'cmdline': ['idle_inject/0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [22],
'cmdline': ['cpuhp/0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [23],
'cmdline': ['cpuhp/2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [24],
'cmdline': ['idle_inject/2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [25],
'cmdline': ['migration/2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 9.97,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [26],
'cmdline': ['ksoftirqd/2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 5.17,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [28],
'cmdline': ['kworker/2:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/2:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [29],
'cmdline': ['cpuhp/4'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/4',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [30],
'cmdline': ['idle_inject/4'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/4',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [31],
'cmdline': ['migration/4'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 6.1,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/4',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [32],
'cmdline': ['ksoftirqd/4'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.56,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/4',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [34],
'cmdline': ['kworker/4:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/4:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [35],
'cmdline': ['cpuhp/6'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/6',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [36],
'cmdline': ['idle_inject/6'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/6',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [37],
'cmdline': ['migration/6'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 8.14,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/6',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [40],
'cmdline': ['kworker/6:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/6:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [41],
'cmdline': ['cpuhp/8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [42],
'cmdline': ['idle_inject/8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [43],
'cmdline': ['migration/8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 13.68,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [44],
'cmdline': ['ksoftirqd/8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.15,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [46],
'cmdline': ['kworker/8:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/8:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [47],
'cmdline': ['cpuhp/10'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/10',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [48],
'cmdline': ['idle_inject/10'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/10',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [49],
'cmdline': ['migration/10'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 11.31,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/10',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [50],
'cmdline': ['ksoftirqd/10'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.51,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/10',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [52],
'cmdline': ['kworker/10:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/10:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [53],
'cmdline': ['cpuhp/12'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/12',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [54],
'cmdline': ['idle_inject/12'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/12',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [55],
'cmdline': ['migration/12'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 31.74,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/12',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [56],
'cmdline': ['ksoftirqd/12'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.8,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/12',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [58],
'cmdline': ['kworker/12:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/12:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [59],
'cmdline': ['cpuhp/13'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/13',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [60],
'cmdline': ['idle_inject/13'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/13',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [61],
'cmdline': ['migration/13'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 20.3,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/13',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [62],
'cmdline': ['ksoftirqd/13'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.65,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/13',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [64],
'cmdline': ['kworker/13:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/13:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [65],
'cmdline': ['cpuhp/14'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/14',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [66],
'cmdline': ['idle_inject/14'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/14',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [67],
'cmdline': ['migration/14'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 16.41,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/14',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [68],
'cmdline': ['ksoftirqd/14'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.54,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/14',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [70],
'cmdline': ['kworker/14:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/14:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [71],
'cmdline': ['cpuhp/15'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/15',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [72],
'cmdline': ['idle_inject/15'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/15',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [73],
'cmdline': ['migration/15'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 12.67,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/15',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [74],
'cmdline': ['ksoftirqd/15'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.34,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/15',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [76],
'cmdline': ['kworker/15:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/15:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [77],
'cmdline': ['cpuhp/1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [78],
'cmdline': ['idle_inject/1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [79],
'cmdline': ['migration/1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.91,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [80],
'cmdline': ['ksoftirqd/1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.69,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [82],
'cmdline': ['kworker/1:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/1:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [83],
'cmdline': ['cpuhp/3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [84],
'cmdline': ['idle_inject/3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [85],
'cmdline': ['migration/3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.23,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [86],
'cmdline': ['ksoftirqd/3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.55,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [88],
'cmdline': ['kworker/3:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/3:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [89],
'cmdline': ['cpuhp/5'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/5',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [90],
'cmdline': ['idle_inject/5'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/5',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [91],
'cmdline': ['migration/5'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.26,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/5',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [92],
'cmdline': ['ksoftirqd/5'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.26,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/5',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [94],
'cmdline': ['kworker/5:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/5:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [95],
'cmdline': ['cpuhp/7'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/7',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [96],
'cmdline': ['idle_inject/7'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/7',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [97],
'cmdline': ['migration/7'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.78,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/7',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [98],
'cmdline': ['ksoftirqd/7'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 4.16,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/7',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [100],
'cmdline': ['kworker/7:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [101],
'cmdline': ['cpuhp/9'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/9',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [102],
'cmdline': ['idle_inject/9'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/9',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [103],
'cmdline': ['migration/9'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.13,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/9',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [104],
'cmdline': ['ksoftirqd/9'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.26,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/9',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [106],
'cmdline': ['kworker/9:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/9:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [107],
'cmdline': ['cpuhp/11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'cpuhp/11',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [108],
'cmdline': ['idle_inject/11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'idle_inject/11',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [109],
'cmdline': ['migration/11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.11,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'migration/11',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [110],
'cmdline': ['ksoftirqd/11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.43,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksoftirqd/11',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [112],
'cmdline': ['kworker/11:0H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/11:0H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [113],
'cmdline': ['kdevtmpfs'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kdevtmpfs',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [114],
'cmdline': ['kworker/R-inet_frag_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-inet_frag_wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [115],
'cmdline': ['kauditd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 5.61,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kauditd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [116],
'cmdline': ['khungtaskd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.14},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'khungtaskd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [118],
'cmdline': ['oom_reaper'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'oom_reaper',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [120],
'cmdline': ['kworker/R-writeback'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-writeback',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [121],
'cmdline': ['kcompactd0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 46.83,
'user': 0.57},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kcompactd0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [122],
'cmdline': ['ksmd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ksmd',
'nice': 5,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [123],
'cmdline': ['khugepaged'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.12,
'user': 0.03},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'khugepaged',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [124],
'cmdline': ['kworker/R-kintegrityd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kintegrityd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [125],
'cmdline': ['kworker/R-kblockd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kblockd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [126],
'cmdline': ['kworker/R-blkcg_punt_bio'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-blkcg_punt_bio',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [132],
'cmdline': ['kworker/R-tpm_dev_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-tpm_dev_wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [133],
'cmdline': ['kworker/R-ata_sff'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-ata_sff',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [134],
'cmdline': ['kworker/R-md'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-md',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [135],
'cmdline': ['kworker/R-md_bitmap'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-md_bitmap',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [136],
'cmdline': ['kworker/R-edac-poller'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-edac-poller',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [137],
'cmdline': ['kworker/R-devfreq_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-devfreq_wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [138],
'cmdline': ['watchdogd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'watchdogd',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [141],
'cmdline': ['kworker/13:1H-kblockd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.55,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/13:1H-kblockd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [143],
'cmdline': ['kswapd0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 17.36,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kswapd0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [144],
'cmdline': ['ecryptfs-kthread'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'ecryptfs-kthread',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [145],
'cmdline': ['kworker/R-kthrotld'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kthrotld',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [146],
'cmdline': ['irq/123-pciehp'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/123-pciehp',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [148],
'cmdline': ['irq/124-pciehp'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/124-pciehp',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [149],
'cmdline': ['kworker/R-acpi_thermal_pm'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-acpi_thermal_pm',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [151],
'cmdline': ['hwrng'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.78,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'hwrng',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [153],
'cmdline': ['kworker/R-hfi-updates'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-hfi-updates',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [154],
'cmdline': ['kworker/R-mld'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-mld',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [155],
'cmdline': ['kworker/1:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.53,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/1:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [156],
'cmdline': ['kworker/R-ipv6_addrconf'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-ipv6_addrconf',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [164],
'cmdline': ['kworker/R-kstrp'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kstrp',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [176],
'cmdline': ['kworker/R-cryptd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-cryptd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [185],
'cmdline': ['kworker/R-charger_manager'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-charger_manager',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [187],
'cmdline': ['kworker/0:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.67,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/0:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [211],
'cmdline': ['kworker/2:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.62,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/2:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [214],
'cmdline': ['kworker/6:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.1,
'user': 0.01},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/6:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [264],
'cmdline': ['kworker/12:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.34,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/12:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [265],
'cmdline': ['kworker/5:1H-kblockd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.8,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/5:1H-kblockd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [266],
'cmdline': ['kworker/4:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.85,
'user': 0.01},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/4:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [267],
'cmdline': ['kworker/11:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.27,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/11:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [268],
'cmdline': ['kworker/10:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.39,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/10:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [269],
'cmdline': ['kworker/15:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.8,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/15:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [270],
'cmdline': ['kworker/8:1H-kblockd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.13,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/8:1H-kblockd',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [272],
'cmdline': ['kworker/9:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.26,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/9:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [273],
'cmdline': ['kworker/14:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 5.56,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/14:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [274],
'cmdline': ['kworker/3:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.32,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/3:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [275],
'cmdline': ['kworker/7:1H-events_highpri'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.88,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:1H-events_highpri',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [372],
'cmdline': ['irq/178-VEN_04F3:00'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 128.24,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/178-VEN_04F3:00',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [374],
'cmdline': ['kworker/R-nvme-wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-nvme-wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [375],
'cmdline': ['kworker/R-nvme-reset-wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-nvme-reset-wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [376],
'cmdline': ['kworker/R-nvme-delete-wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-nvme-delete-wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [377],
'cmdline': ['kworker/R-nvme-auth-wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-nvme-auth-wq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [378],
'cmdline': ['spi0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'spi0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [380],
'cmdline': ['kworker/R-USBC000:00-con1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-USBC000:00-con1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [424],
'cmdline': ['kworker/R-USBC000:00-con2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-USBC000:00-con2',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [463],
'cmdline': ['kworker/R-uas'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-uas',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [469],
'cmdline': ['kworker/R-USBC000:00-con3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-USBC000:00-con3',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [637],
'cmdline': ['kworker/R-kdmflush/252:0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kdmflush/252:0',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [642],
'cmdline': ['kworker/R-kcryptd_io-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kcryptd_io-252:0-1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [643],
'cmdline': ['kworker/R-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kcryptd-252:0-1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [644],
'cmdline': ['dmcrypt_write/252:0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 11.28,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'dmcrypt_write/252:0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [650],
'cmdline': ['kworker/R-kdmflush/252:1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-kdmflush/252:1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [685],
'cmdline': ['jbd2/dm-1-8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 10.18,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'jbd2/dm-1-8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [686, 1000],
'cmdline': ['kworker/R-ext4-rsv-conversion'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {},
'memory_percent': 0,
'name': 'kworker/R-ext4-rsv-conversion',
'nice': -20,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [805, 1137526],
'cmdline': ['psimon'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {},
'memory_percent': 0,
'name': 'psimon',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [990],
'cmdline': ['kworker/R-cfg80211'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-cfg80211',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [999],
'cmdline': ['jbd2/nvme0n1p2-8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'jbd2/nvme0n1p2-8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1002],
'cmdline': ['irq/199-iwlwifi:default_queue'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 90.51,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/199-iwlwifi:default_queue',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1003],
'cmdline': ['irq/200-iwlwifi:queue_1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.39,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/200-iwlwifi:queue_1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1004],
'cmdline': ['irq/201-iwlwifi:queue_2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.53,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/201-iwlwifi:queue_2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1005],
'cmdline': ['irq/202-iwlwifi:queue_3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 7.58,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/202-iwlwifi:queue_3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1006],
'cmdline': ['irq/203-iwlwifi:queue_4'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.42,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/203-iwlwifi:queue_4',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1007],
'cmdline': ['irq/204-iwlwifi:queue_5'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 197.9,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/204-iwlwifi:queue_5',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1008],
'cmdline': ['irq/205-iwlwifi:queue_6'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 5.46,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/205-iwlwifi:queue_6',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1009],
'cmdline': ['irq/206-iwlwifi:queue_7'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 6.75,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/206-iwlwifi:queue_7',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1010],
'cmdline': ['irq/207-iwlwifi:queue_8'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.77,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/207-iwlwifi:queue_8',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1011],
'cmdline': ['irq/208-iwlwifi:queue_9'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.45,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/208-iwlwifi:queue_9',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1012],
'cmdline': ['irq/209-iwlwifi:queue_10'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.47,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/209-iwlwifi:queue_10',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1013],
'cmdline': ['irq/210-iwlwifi:queue_11'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.59,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/210-iwlwifi:queue_11',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1014],
'cmdline': ['irq/211-iwlwifi:queue_12'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 3.7,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/211-iwlwifi:queue_12',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1015],
'cmdline': ['irq/212-iwlwifi:queue_13'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 12.48,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/212-iwlwifi:queue_13',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1016],
'cmdline': ['irq/213-iwlwifi:queue_14'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.4,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/213-iwlwifi:queue_14',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1017],
'cmdline': ['irq/214-iwlwifi:exception'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/214-iwlwifi:exception',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1043],
'cmdline': ['irq/16-processor_thermal_device_pci'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/16-processor_thermal_device_pci',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1207, 1360],
'cmdline': ['kworker/R-ttm'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {},
'memory_percent': 0,
'name': 'kworker/R-ttm',
'nice': -20,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1227],
'cmdline': ['card1-crtc0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'card1-crtc0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1228],
'cmdline': ['card1-crtc1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'card1-crtc1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1229],
'cmdline': ['card1-crtc2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'card1-crtc2',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1230],
'cmdline': ['card1-crtc3'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'card1-crtc3',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1245, 1337],
'cmdline': ['irq/197-cs35l41 IRQ1 Controller'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {},
'memory_percent': 0,
'name': 'irq/197-cs35l41 IRQ1 Controller',
'nice': 0,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1374],
'cmdline': ['irq/231-AudioDSP'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.72,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/231-AudioDSP',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1611],
'cmdline': ['irq/232-mei_gsc'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/232-mei_gsc',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1618],
'cmdline': ['irq/233-mei_gsc'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.06,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/233-mei_gsc',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1985],
'cmdline': ['spl_system_task'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'spl_system_task',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1986],
'cmdline': ['spl_delay_taskq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'spl_delay_taskq',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1987],
'cmdline': ['spl_dynamic_tas'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'spl_dynamic_tas',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1988, 2038, 2040],
'cmdline': ['spl_kmem_cache'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'spl_kmem_cache',
'nice': -20,
'nprocs': 3,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1989],
'cmdline': ['zvol_tq-0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'zvol_tq-0',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1990],
'cmdline': ['zvol_tq-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'zvol_tq-1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1991],
'cmdline': ['zvol_tq-2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'zvol_tq-2',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1992],
'cmdline': ['arc_prune'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'arc_prune',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1993],
'cmdline': ['arc_evict'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.85,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'arc_evict',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1994],
'cmdline': ['arc_reap'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.98,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'arc_reap',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1995],
'cmdline': ['dbu_evict'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'dbu_evict',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1996],
'cmdline': ['dbuf_evict'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.91,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'dbuf_evict',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1997, 2029, 2030, 2032, 2033, 2034, 2035, 2036, 2037],
'cmdline': ['z_vdev_file'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_vdev_file',
'nice': 19,
'nprocs': 9,
'num_threads': 9,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1998],
'cmdline': ['l2arc_feed'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.46,
'user': 1.06},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'l2arc_feed',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2077],
'cmdline': ['z_null_iss'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_null_iss',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2078],
'cmdline': ['z_null_int'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_null_int',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2079],
'cmdline': ['z_rd_iss'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_rd_iss',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2080, 2107, 2154, 2156],
'cmdline': ['z_rd_int_0'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_rd_int_0',
'nice': -20,
'nprocs': 4,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2081, 2105, 2151, 2152],
'cmdline': ['z_rd_int_1'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_rd_int_1',
'nice': -20,
'nprocs': 4,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2082, 2106, 2141, 2150],
'cmdline': ['z_rd_int_2'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_rd_int_2',
'nice': -20,
'nprocs': 4,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2083,
2166,
2167,
2169,
2170,
2171,
2172,
2174,
2175,
2176,
3658305,
3658306],
'cmdline': ['z_wr_iss'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_wr_iss',
'nice': -19,
'nprocs': 12,
'num_threads': 12,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2084],
'cmdline': ['z_wr_iss_h'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_wr_iss_h',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2085, 3658307, 3658308],
'cmdline': ['z_wr_int_0'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_wr_int_0',
'nice': -20,
'nprocs': 3,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2086, 2179, 3658309, 3658310],
'cmdline': ['z_wr_int_1'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_wr_int_1',
'nice': -20,
'nprocs': 4,
'num_threads': 4,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2087, 3496],
'cmdline': ['z_wr_int_2'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_wr_int_2',
'nice': -20,
'nprocs': 2,
'num_threads': 2,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2088],
'cmdline': ['z_wr_int_h'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_wr_int_h',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2089],
'cmdline': ['z_fr_iss_0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_fr_iss_0',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2090],
'cmdline': ['z_fr_iss_1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_fr_iss_1',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2091],
'cmdline': ['z_fr_iss_2'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_fr_iss_2',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2092],
'cmdline': ['z_fr_int'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_fr_int',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2093],
'cmdline': ['z_cl_iss'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_cl_iss',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2094],
'cmdline': ['z_cl_int'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_cl_int',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2095],
'cmdline': ['z_ioctl_iss'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_ioctl_iss',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2096],
'cmdline': ['z_ioctl_int'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_ioctl_int',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2097],
'cmdline': ['z_trim_iss'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_trim_iss',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2098],
'cmdline': ['z_trim_int'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_trim_int',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2099],
'cmdline': ['z_zvol'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_zvol',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2100, 3658337, 3658378],
'cmdline': ['z_metaslab'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'z_metaslab',
'nice': -20,
'nprocs': 3,
'num_threads': 3,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2101],
'cmdline': ['z_prefetch'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_prefetch',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2102],
'cmdline': ['z_upgrade'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_upgrade',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2108,
2109,
2110,
2111,
2112,
2113,
2114,
2115,
2116,
2117,
2118,
2119],
'cmdline': ['dp_sync_taskq'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'dp_sync_taskq',
'nice': 19,
'nprocs': 12,
'num_threads': 12,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2120,
2121,
2122,
2123,
2124,
2125,
2126,
2127,
2128,
2129,
2130,
2131,
2132,
2133,
2134,
2135],
'cmdline': ['dp_zil_clean_ta'],
'cpu_percent': 0,
'cpu_times': {},
'io_counters': [0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0],
'memory_info': {},
'memory_percent': 0,
'name': 'dp_zil_clean_ta',
'nice': 19,
'nprocs': 16,
'num_threads': 16,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2136],
'cmdline': ['z_zrele'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_zrele',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2137],
'cmdline': ['z_unlinked_drai'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_unlinked_drai',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2159],
'cmdline': ['txg_quiesce'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.53},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'txg_quiesce',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2160],
'cmdline': ['txg_sync'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.05,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'txg_sync',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2161],
'cmdline': ['mmp'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 2.12,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'mmp',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2162],
'cmdline': ['z_indirect_cond'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_indirect_cond',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2163],
'cmdline': ['z_livelist_dest'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_livelist_dest',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2164],
'cmdline': ['z_livelist_cond'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_livelist_cond',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [2165],
'cmdline': ['z_checkpoint_di'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'z_checkpoint_di',
'nice': 19,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3888],
'cmdline': ['krfcommd'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'krfcommd',
'nice': -10,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [1099704],
'cmdline': ['sd_espeak-ng-mb'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.01},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'sd_espeak-ng-mb',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'Z',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'},
{'childrens': [3637155],
'cmdline': ['kworker/14:3-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 1.78,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/14:3-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3672980],
'cmdline': ['kworker/2:3-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.25,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/2:3-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3676844],
'cmdline': ['kworker/13:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.2,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/13:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3676894],
'cmdline': ['kworker/2:4-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.37,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/2:4-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3678468],
'cmdline': ['kworker/11:2-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/11:2-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3678981],
'cmdline': ['kworker/5:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.09,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/5:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3681104],
'cmdline': ['kworker/10:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.41,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/10:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3683512],
'cmdline': ['kworker/14:0-i915-unordered'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.33,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/14:0-i915-unordered',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3683589],
'cmdline': ['kworker/12:1-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.13,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/12:1-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3683591],
'cmdline': ['kworker/9:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.05,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/9:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3684194],
'cmdline': ['kworker/0:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.2,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/0:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3684225],
'cmdline': ['kworker/15:1-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.09,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/15:1-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3684342],
'cmdline': ['kworker/u64:15-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.86,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:15-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686143],
'cmdline': ['kworker/u64:25-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.46,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:25-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686146],
'cmdline': ['kworker/u64:28-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.61,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:28-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686153],
'cmdline': ['kworker/u64:35-i915'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.42,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:35-i915',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686155],
'cmdline': ['kworker/u64:37-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.3,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:37-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686157],
'cmdline': ['kworker/u64:39-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.56,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:39-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686161],
'cmdline': ['kworker/u64:44-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.27,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:44-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686174],
'cmdline': ['kworker/u64:57-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.38,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:57-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686181],
'cmdline': ['irq/198-mei_me'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'irq/198-mei_me',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'S',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686184],
'cmdline': ['kworker/7:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3686782],
'cmdline': ['kworker/R-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/R-wg-crypt-proton0',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3688395],
'cmdline': ['kworker/13:1-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/13:1-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3689203],
'cmdline': ['kworker/15:2-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/15:2-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3689375],
'cmdline': ['kworker/6:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/6:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3689678],
'cmdline': ['kworker/3:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/3:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3690095],
'cmdline': ['kworker/12:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.09,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/12:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3690096],
'cmdline': ['kworker/4:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.16,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/4:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3690664],
'cmdline': ['kworker/8:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/8:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3690738],
'cmdline': ['kworker/5:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/5:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3690751],
'cmdline': ['kworker/1:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/1:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3691172],
'cmdline': ['kworker/u64:0-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.37,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:0-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3691187],
'cmdline': ['kworker/0:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.11,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/0:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3691216],
'cmdline': ['kworker/u64:1-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.35,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:1-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3692473],
'cmdline': ['kworker/9:1-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/9:1-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3692474],
'cmdline': ['kworker/4:4-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.15,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/4:4-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3692476],
'cmdline': ['kworker/u64:3-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.23,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:3-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3692477],
'cmdline': ['kworker/u64:4-kcryptd-252:0-1'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u64:4-kcryptd-252:0-1',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693001],
'cmdline': ['kworker/1:2-mm_percpu_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/1:2-mm_percpu_wq',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693111],
'cmdline': ['kworker/8:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/8:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693846],
'cmdline': ['kworker/3:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.05,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/3:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693870],
'cmdline': ['kworker/11:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/11:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693896],
'cmdline': ['kworker/u65:0-rb_allocator'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.44,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u65:0-rb_allocator',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3693911],
'cmdline': ['kworker/6:2-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/6:2-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3694654],
'cmdline': ['kworker/7:3-mm_percpu_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.02,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:3-mm_percpu_wq',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3694858],
'cmdline': ['kworker/10:0-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/10:0-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3695024],
'cmdline': ['kworker/4:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.07,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/4:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3695987],
'cmdline': ['kworker/u65:1-rb_allocator'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.79,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/u65:1-rb_allocator',
'nice': -20,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696005],
'cmdline': ['kworker/14:1-i915-unordered'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.33,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/14:1-i915-unordered',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696035],
'cmdline': ['kworker/5:0-mm_percpu_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/5:0-mm_percpu_wq',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696053],
'cmdline': ['kworker/15:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/15:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696099],
'cmdline': ['kworker/3:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/3:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696116],
'cmdline': ['kworker/12:2-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/12:2-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696163],
'cmdline': ['kworker/11:0-mm_percpu_wq'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/11:0-mm_percpu_wq',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696276],
'cmdline': ['kworker/2:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.03,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/2:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696320],
'cmdline': ['kworker/6:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.04,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/6:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696362],
'cmdline': ['kworker/8:1-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.05,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/8:1-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696486],
'cmdline': ['kworker/9:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/9:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696571],
'cmdline': ['kworker/1:0-wg-crypt-proton0'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/1:0-wg-crypt-proton0',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3696971],
'cmdline': ['kworker/7:0-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:0-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3697312],
'cmdline': ['kworker/13:0-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/13:0-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3697439],
'cmdline': ['kworker/10:2-i915-unordered'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.01,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/10:2-i915-unordered',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'},
{'childrens': [3697749],
'cmdline': ['kworker/7:2-events'],
'cpu_percent': 0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 0.0,
'user': 0.0},
'io_counters': [0, 0, 0, 0, 0],
'memory_info': {'data': 0,
'dirty': 0,
'lib': 0,
'rss': 0,
'shared': 0,
'text': 0,
'vms': 0},
'memory_percent': 0,
'name': 'kworker/7:2-events',
'nice': 0,
'nprocs': 1,
'num_threads': 1,
'pid': '_',
'status': 'I',
'time_since_update': 0.5464632511138916,
'username': 'root'}]
Programlist fields description:
* pid: Process identifier (ID)
* name: Process name
* cmdline: Command line with arguments
* username: Process owner
* num_threads: Number of threads
* cpu_percent: Process CPU consumption
* memory_percent: Process memory consumption
* memory_info: Process memory information (dict with rss, vms, shared, text, lib, data, dirty keys)
* status: Process status
* nice: Process nice value
* cpu_times: Process CPU times (dict with user, system, iowait keys)
* gids: Process group IDs (dict with real, effective, saved keys)
* io_counters: Process IO counters (list with read_count, write_count, read_bytes, write_bytes, io_tag keys)
Programlist limits:
.. code-block:: python
>>> gl.programlist.limits
{'history_size': 1200.0}
Glances gpu
-----------
Gpu stats:
.. code-block:: python
>>> gl.gpu
Return a <class 'glances.plugins.gpu.GpuPlugin'> object
>>> gl.gpu
[]
Gpu fields description:
* gpu_id: GPU identification
* name: GPU name
* mem: Memory consumption
* proc: GPU processor consumption
* temperature: GPU temperature
* fan_speed: GPU fan speed
Gpu limits:
.. code-block:: python
>>> gl.gpu.limits
{'gpu_disable': ['False'],
'gpu_mem_careful': 50.0,
'gpu_mem_critical': 90.0,
'gpu_mem_warning': 70.0,
'gpu_proc_careful': 50.0,
'gpu_proc_critical': 90.0,
'gpu_proc_warning': 70.0,
'gpu_temperature_careful': 60.0,
'gpu_temperature_critical': 80.0,
'gpu_temperature_warning': 70.0,
'history_size': 1200.0}
Glances percpu
--------------
Percpu stats:
.. code-block:: python
>>> gl.percpu
Return a <class 'glances.plugins.percpu.PercpuPlugin'> object
>>> gl.percpu
Return a dict of dict with key=<cpu_number>
>>> gl.percpu.keys()
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]
>>> gl.percpu["0"]
{'cpu_number': 0,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 39.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 7.0,
'total': 61.0,
'user': 3.0}
Percpu fields description:
* cpu_number: CPU number
* total: Sum of CPU percentages (except idle) for current CPU number.
* system: Percent time spent in kernel space. System CPU time is the time spent running code in the Operating System kernel.
* user: CPU percent time spent in user space. User CPU time is the time spent on the processor running your program's code (or code in libraries).
* iowait: *(Linux)*: percent time spent by the CPU waiting for I/O operations to complete.
* idle: percent of CPU used by any program. Every program or task that runs on a computer system occupies a certain amount of processing time on the CPU. If the CPU has completed all tasks it is idle.
* irq: *(Linux and BSD)*: percent time spent servicing/handling hardware/software interrupts. Time servicing interrupts (hardware + software).
* nice: *(Unix)*: percent time occupied by user level processes with a positive nice value. The time the CPU has spent running users' processes that have been *niced*.
* steal: *(Linux)*: percentage of time a virtual CPU waits for a real CPU while the hypervisor is servicing another virtual processor.
* guest: *(Linux)*: percent of time spent running a virtual CPU for guest operating systems under the control of the Linux kernel.
* guest_nice: *(Linux)*: percent of time spent running a niced guest (virtual CPU).
* softirq: *(Linux)*: percent of time spent handling software interrupts.
* dpc: *(Windows)*: percent of time spent handling deferred procedure calls.
* interrupt: *(Windows)*: percent of time spent handling software interrupts.
Percpu limits:
.. code-block:: python
>>> gl.percpu.limits
{'history_size': 1200.0,
'percpu_disable': ['False'],
'percpu_iowait_careful': 50.0,
'percpu_iowait_critical': 90.0,
'percpu_iowait_warning': 70.0,
'percpu_max_cpu_display': 4.0,
'percpu_system_careful': 50.0,
'percpu_system_critical': 90.0,
'percpu_system_warning': 70.0,
'percpu_user_careful': 50.0,
'percpu_user_critical': 90.0,
'percpu_user_warning': 70.0}
Glances system
--------------
System stats:
.. code-block:: python
>>> gl.system
Return a <class 'glances.plugins.system.SystemPlugin'> object
>>> gl.system
{'hostname': 'nicolargo-xps15',
'hr_name': 'Ubuntu 24.04 64bit / Linux 6.11.0-29-generic',
'linux_distro': 'Ubuntu 24.04',
'os_name': 'Linux',
'os_version': '6.11.0-29-generic',
'platform': '64bit'}
>>> gl.system.keys()
['os_name', 'hostname', 'platform', 'os_version', 'linux_distro', 'hr_name']
>>> gl.system["os_name"]
'Linux'
System fields description:
* os_name: Operating system name
* hostname: Hostname
* platform: Platform (32 or 64 bits)
* linux_distro: Linux distribution
* os_version: Operating system version
* hr_name: Human readable operating system name
System limits:
.. code-block:: python
>>> gl.system.limits
{'history_size': 1200.0, 'system_disable': ['False'], 'system_refresh': 60}
Glances network
---------------
Network stats:
.. code-block:: python
>>> gl.network
Return a <class 'glances.plugins.network.NetworkPlugin'> object
>>> gl.network
Return a dict of dict with key=<interface_name>
>>> gl.network.keys()
['wlp0s20f3', 'ipv6leakintrf0', 'proton0']
>>> gl.network["wlp0s20f3"]
{'alias': None,
'bytes_all': 0,
'bytes_all_gauge': 17335060599,
'bytes_all_rate_per_sec': 0.0,
'bytes_recv': 0,
'bytes_recv_gauge': 15722032495,
'bytes_recv_rate_per_sec': 0.0,
'bytes_sent': 0,
'bytes_sent_gauge': 1613028104,
'bytes_sent_rate_per_sec': 0.0,
'interface_name': 'wlp0s20f3',
'key': 'interface_name',
'speed': 0,
'time_since_update': 0.11367225646972656}
Network fields description:
* interface_name: Interface name.
* alias: Interface alias name (optional).
* bytes_recv: Number of bytes received.
* bytes_sent: Number of bytes sent.
* bytes_all: Number of bytes received and sent.
* speed: Maximum interface speed (in bit per second). Can return 0 on some operating-system.
* is_up: Is the interface up ?
Network limits:
.. code-block:: python
>>> gl.network.limits
{'history_size': 1200.0,
'network_disable': ['False'],
'network_hide': ['docker.*', 'lo'],
'network_hide_no_ip': ['True'],
'network_hide_no_up': ['True'],
'network_hide_zero': ['False'],
'network_rx_careful': 70.0,
'network_rx_critical': 90.0,
'network_rx_warning': 80.0,
'network_tx_careful': 70.0,
'network_tx_critical': 90.0,
'network_tx_warning': 80.0}
Glances cpu
-----------
Cpu stats:
.. code-block:: python
>>> gl.cpu
Return a <class 'glances.plugins.cpu.CpuPlugin'> object
>>> gl.cpu
{'cpucore': 16,
'ctx_switches': 418936478,
'guest': 0.0,
'idle': 78.5,
'interrupts': 387038047,
'iowait': 0.9,
'irq': 0.0,
'nice': 0.0,
'soft_interrupts': 147533465,
'steal': 0.0,
'syscalls': 0,
'system': 6.1,
'total': 15.8,
'user': 14.4}
>>> gl.cpu.keys()
['total', 'user', 'nice', 'system', 'idle', 'iowait', 'irq', 'steal', 'guest', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls', 'cpucore']
>>> gl.cpu["total"]
15.8
Cpu fields description:
* total: Sum of all CPU percentages (except idle).
* system: Percent time spent in kernel space. System CPU time is the time spent running code in the Operating System kernel.
* user: CPU percent time spent in user space. User CPU time is the time spent on the processor running your program's code (or code in libraries).
* iowait: *(Linux)*: percent time spent by the CPU waiting for I/O operations to complete.
* dpc: *(Windows)*: time spent servicing deferred procedure calls (DPCs)
* idle: percent of CPU used by any program. Every program or task that runs on a computer system occupies a certain amount of processing time on the CPU. If the CPU has completed all tasks it is idle.
* irq: *(Linux and BSD)*: percent time spent servicing/handling hardware/software interrupts. Time servicing interrupts (hardware + software).
* nice: *(Unix)*: percent time occupied by user level processes with a positive nice value. The time the CPU has spent running users' processes that have been *niced*.
* steal: *(Linux)*: percentage of time a virtual CPU waits for a real CPU while the hypervisor is servicing another virtual processor.
* guest: *(Linux)*: time spent running a virtual CPU for guest operating systems under the control of the Linux kernel.
* ctx_switches: number of context switches (voluntary + involuntary) per second. A context switch is a procedure that a computer's CPU (central processing unit) follows to change from one task (or process) to another while ensuring that the tasks do not conflict.
* interrupts: number of interrupts per second.
* soft_interrupts: number of software interrupts per second. Always set to 0 on Windows and SunOS.
* syscalls: number of system calls per second. Always 0 on Linux OS.
* cpucore: Total number of CPU core.
* time_since_update: Number of seconds since last update.
Cpu limits:
.. code-block:: python
>>> gl.cpu.limits
{'cpu_ctx_switches_careful': 640000.0,
'cpu_ctx_switches_critical': 800000.0,
'cpu_ctx_switches_warning': 720000.0,
'cpu_disable': ['False'],
'cpu_iowait_careful': 5.0,
'cpu_iowait_critical': 6.25,
'cpu_iowait_warning': 5.625,
'cpu_steal_careful': 50.0,
'cpu_steal_critical': 90.0,
'cpu_steal_warning': 70.0,
'cpu_system_careful': 50.0,
'cpu_system_critical': 90.0,
'cpu_system_log': ['False'],
'cpu_system_warning': 70.0,
'cpu_total_careful': 65.0,
'cpu_total_critical': 85.0,
'cpu_total_log': ['True'],
'cpu_total_warning': 75.0,
'cpu_user_careful': 50.0,
'cpu_user_critical': 90.0,
'cpu_user_log': ['False'],
'cpu_user_warning': 70.0,
'history_size': 1200.0}
Glances amps
------------
Amps stats:
.. code-block:: python
>>> gl.amps
Return a <class 'glances.plugins.amps.AmpsPlugin'> object
>>> gl.amps
Return a dict of dict with key=<name>
>>> gl.amps.keys()
['Dropbox', 'Python', 'Conntrack', 'Nginx', 'Systemd', 'SystemV']
>>> gl.amps["Dropbox"]
{'count': 0,
'countmax': None,
'countmin': 1.0,
'key': 'name',
'name': 'Dropbox',
'refresh': 3.0,
'regex': True,
'result': None,
'timer': 0.2958996295928955}
Amps fields description:
* name: AMP name.
* result: AMP result (a string).
* refresh: AMP refresh interval.
* timer: Time until next refresh.
* count: Number of matching processes.
* countmin: Minimum number of matching processes.
* countmax: Maximum number of matching processes.
Amps limits:
.. code-block:: python
>>> gl.amps.limits
{'amps_disable': ['False'], 'history_size': 1200.0}
Glances processlist
-------------------
Processlist stats:
.. code-block:: python
>>> gl.processlist
Return a <class 'glances.plugins.processlist.ProcesslistPlugin'> object
>>> gl.processlist
Return a dict of dict with key=<pid>
>>> gl.processlist.keys()
[7109, 3697730, 6208, 4995, 6462, 3505645, 129, 43195, 5145, 5629, 3532052, 737065, 6493, 3505605, 5503, 3679004, 38, 3506727, 3505550, 3556897, 3689810, 3667423, 7116, 7112, 3505433, 7374, 1076749, 3505655, 93349, 3505976, 8243, 3600011, 3505656, 8352, 3597284, 3597863, 3505732, 3506781, 6467, 1132942, 5940, 3506170, 3506076, 5230, 3696202, 3696854, 3697185, 5979, 3505497, 5131, 5952, 3686598, 3506134, 3506133, 3505435, 3505436, 6926, 3506130, 6448, 3532635, 11995, 5581, 5438, 3548, 3506270, 2621, 5387, 746, 4705, 8117, 5474, 5601, 5169, 5324, 5162, 5645, 5143, 5122, 2705, 5976, 3544, 2976, 5225, 5147, 4947, 1, 2651, 5155, 2487, 4848, 2655, 4683, 5394, 4704, 2610, 2653, 5623, 4700, 2616, 6546, 4660, 2970, 5875, 5149, 5254, 3018, 5174, 5199, 2946, 3530, 4708, 2707, 2929, 1099735, 55223, 2828, 3552, 3601, 5223, 1099678, 8729, 11634, 5542, 11597, 2636, 5429, 2488, 5152, 5247, 5404, 5204, 2638, 2624, 5803, 2486, 2831, 2613, 4994, 4766, 783, 4936, 5421, 5103, 5418, 4718, 5322, 5182, 5341, 2607, 4944, 2628, 5146, 5446, 4913, 5388, 1099836, 3433, 5192, 4775, 5130, 43204, 2619, 3434, 4833, 3597292, 3505977, 3505988, 2606, 3686474, 4919, 43301, 5008, 4701, 2605, 2773, 6292, 6023, 3691, 3505454, 2627, 3697726, 1099853, 4690, 3575, 3557, 4782, 3689950, 3697729, 3155, 2959, 2955, 2701, 3156, 3439, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 64, 65, 66, 67, 68, 70, 71, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 94, 95, 96, 97, 98, 100, 101, 102, 103, 104, 106, 107, 108, 109, 110, 112, 113, 114, 115, 116, 118, 120, 121, 122, 123, 124, 125, 126, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 145, 146, 148, 149, 151, 153, 154, 155, 156, 164, 176, 185, 187, 211, 214, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 372, 374, 375, 376, 377, 378, 380, 424, 463, 469, 637, 642, 643, 644, 650, 685, 686, 805, 990, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1043, 1207, 1227, 1228, 1229, 1230, 1245, 1337, 1360, 1374, 1611, 1618, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2029, 2030, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2040, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2141, 2150, 2151, 2152, 2154, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2169, 2170, 2171, 2172, 2174, 2175, 2176, 2179, 3496, 3888, 1099704, 1137526, 3637155, 3658305, 3658306, 3658307, 3658308, 3658309, 3658310, 3658337, 3658378, 3672980, 3676844, 3676894, 3678468, 3678981, 3681104, 3683512, 3683589, 3683591, 3684194, 3684225, 3684342, 3686143, 3686146, 3686153, 3686155, 3686157, 3686161, 3686174, 3686181, 3686184, 3686782, 3688395, 3689203, 3689375, 3689678, 3690095, 3690096, 3690664, 3690738, 3690751, 3691172, 3691187, 3691216, 3692473, 3692474, 3692476, 3692477, 3693001, 3693111, 3693846, 3693870, 3693896, 3693911, 3694654, 3694858, 3695024, 3695987, 3696005, 3696035, 3696053, 3696099, 3696116, 3696163, 3696276, 3696320, 3696362, 3696486, 3696571, 3696971, 3697312, 3697439, 3697749]
>>> gl.processlist["7109"]
{'cmdline': ['/snap/firefox/6316/usr/lib/firefox/firefox',
'-contentproc',
'-isForBrowser',
'-prefsHandle',
'0:41962',
'-prefMapHandle',
'1:272266',
'-jsInitHandle',
'2:245828',
'-parentBuildID',
'20250609225024',
'-sandboxReporter',
'3',
'-chrootClient',
'4',
'-ipcHandle',
'5',
'-initialChannelId',
'{fda0875f-34ab-4aad-96d0-fb03539c8fac}',
'-parentPid',
'6208',
'-crashReporter',
'6',
'-crashHelperPid',
'6292',
'-greomni',
'/snap/firefox/6316/usr/lib/firefox/omni.ja',
'-appomni',
'/snap/firefox/6316/usr/lib/firefox/browser/omni.ja',
'-appDir',
'/snap/firefox/6316/usr/lib/firefox/browser',
'6',
'tab'],
'cpu_percent': 96.0,
'cpu_times': {'children_system': 0.0,
'children_user': 0.0,
'iowait': 0.0,
'system': 180.53,
'user': 2371.23},
'gids': {'effective': 1000, 'real': 1000, 'saved': 1000},
'io_counters': [19594240,
0,
19594240,
0,
1,
77824,
0,
77824,
0,
1,
172032,
0,
172032,
0,
1,
0,
2678784,
0,
2678784,
1,
7809024,
0,
7809024,
0,
1,
57624576,
0,
57624576,
0,
1,
376832,
83787776,
376832,
83787776,
1,
0,
0,
0,
0,
1,
21426176,
0,
21426176,
0,
1,
14822400,
0,
14822400,
0,
1,
77824,
0,
77824,
0,
1,
172032,
0,
172032,
0,
1,
0,
2678784,
0,
2678784,
1,
7809024,
0,
7809024,
0,
1,
57624576,
0,
57624576,
0,
1,
376832,
83787776,
376832,
83787776,
1,
0,
0,
0,
0,
1,
21426176,
0,
21426176,
0,
1,
14822400,
0,
14822400,
0,
1],
'key': 'pid',
'memory_info': {'data': 1252728832,
'dirty': 0,
'lib': 0,
'rss': 865968128,
'shared': 143536128,
'text': 868352,
'vms': 3963052032},
'memory_percent': 5.273288478446583,
'name': 'Isolated Web Co',
'nice': 0,
'num_threads': 31,
'pid': 7109,
'status': 'R',
'time_since_update': 0.5464632511138916,
'username': 'nicolargo'}
Processlist fields description:
* pid: Process identifier (ID)
* name: Process name
* cmdline: Command line with arguments
* username: Process owner
* num_threads: Number of threads
* cpu_percent: Process CPU consumption
* memory_percent: Process memory consumption
* memory_info: Process memory information (dict with rss, vms, shared, text, lib, data, dirty keys)
* status: Process status
* nice: Process nice value
* cpu_times: Process CPU times (dict with user, system, iowait keys)
* gids: Process group IDs (dict with real, effective, saved keys)
* io_counters: Process IO counters (list with read_count, write_count, read_bytes, write_bytes, io_tag keys)
Processlist limits:
.. code-block:: python
>>> gl.processlist.limits
{'history_size': 1200.0,
'processlist_cpu_careful': 50.0,
'processlist_cpu_critical': 90.0,
'processlist_cpu_warning': 70.0,
'processlist_disable': ['False'],
'processlist_mem_careful': 50.0,
'processlist_mem_critical': 90.0,
'processlist_mem_warning': 70.0,
'processlist_nice_warning': ['-20',
'-19',
'-18',
'-17',
'-16',
'-15',
'-14',
'-13',
'-12',
'-11',
'-10',
'-9',
'-8',
'-7',
'-6',
'-5',
'-4',
'-3',
'-2',
'-1',
'1',
'2',
'3',
'4',
'5',
'6',
'7',
'8',
'9',
'10',
'11',
'12',
'13',
'14',
'15',
'16',
'17',
'18',
'19'],
'processlist_status_critical': ['Z', 'D'],
'processlist_status_ok': ['R', 'W', 'P', 'I']}
Glances load
------------
Load stats:
.. code-block:: python
>>> gl.load
Return a <class 'glances.plugins.load.LoadPlugin'> object
>>> gl.load
{'cpucore': 16,
'min1': 1.4404296875,
'min15': 0.7431640625,
'min5': 1.00244140625}
>>> gl.load.keys()
['min1', 'min5', 'min15', 'cpucore']
>>> gl.load["min1"]
1.4404296875
Load fields description:
* min1: Average sum of the number of processes waiting in the run-queue plus the number currently executing over 1 minute.
* min5: Average sum of the number of processes waiting in the run-queue plus the number currently executing over 5 minutes.
* min15: Average sum of the number of processes waiting in the run-queue plus the number currently executing over 15 minutes.
* cpucore: Total number of CPU core.
Load limits:
.. code-block:: python
>>> gl.load.limits
{'history_size': 1200.0,
'load_careful': 0.7,
'load_critical': 5.0,
'load_disable': ['False'],
'load_warning': 1.0}
Glances sensors
---------------
Sensors stats:
.. code-block:: python
>>> gl.sensors
Return a <class 'glances.plugins.sensors.SensorsPlugin'> object
>>> gl.sensors
Return a dict of dict with key=<label>
>>> gl.sensors.keys()
['Ambient', 'Ambient 3', 'Ambient 5', 'Ambient 6', 'CPU', 'Composite', 'Core 0', 'Core 4', 'Core 8', 'Core 12', 'Core 16', 'Core 20', 'Core 28', 'Core 29', 'Core 30', 'Core 31', 'HDD', 'Package id 0', 'SODIMM', 'Sensor 1', 'Sensor 2', 'dell_smm 0', 'dell_smm 1', 'dell_smm 2', 'dell_smm 3', 'dell_smm 4', 'dell_smm 5', 'dell_smm 6', 'dell_smm 7', 'dell_smm 8', 'dell_smm 9', 'iwlwifi_1 0', 'spd5118 0', 'CPU Fan', 'Video Fan', 'BAT BAT0']
>>> gl.sensors["Ambient"]
{'critical': None,
'key': 'label',
'label': 'Ambient',
'type': 'temperature_core',
'unit': 'C',
'value': 37,
'warning': 0}
Sensors fields description:
* label: Sensor label
* unit: Sensor unit
* value: Sensor value
* warning: Warning threshold
* critical: Critical threshold
* type: Sensor type (one of battery, temperature_core, fan_speed)
Sensors limits:
.. code-block:: python
>>> gl.sensors.limits
{'history_size': 1200.0,
'sensors_battery_careful': 70.0,
'sensors_battery_critical': 90.0,
'sensors_battery_warning': 80.0,
'sensors_disable': ['False'],
'sensors_hide': ['unknown.*'],
'sensors_refresh': 6.0,
'sensors_temperature_hdd_careful': 45.0,
'sensors_temperature_hdd_critical': 60.0,
'sensors_temperature_hdd_warning': 52.0}
Glances uptime
--------------
Uptime stats:
.. code-block:: python
>>> gl.uptime
Return a <class 'glances.plugins.uptime.UptimePlugin'> object
>>> gl.uptime
'12 days, 5:30:41'
Uptime limits:
.. code-block:: python
>>> gl.uptime.limits
{'history_size': 1200.0}
Glances now
-----------
Now stats:
.. code-block:: python
>>> gl.now
Return a <class 'glances.plugins.now.NowPlugin'> object
>>> gl.now
{'custom': '2025-08-01 17:18:28 CEST', 'iso': '2025-08-01T17:18:28+02:00'}
>>> gl.now.keys()
['iso', 'custom']
>>> gl.now["iso"]
'2025-08-01T17:18:28+02:00'
Now fields description:
* custom: Current date in custom format.
* iso: Current date in ISO 8601 format.
Now limits:
.. code-block:: python
>>> gl.now.limits
{'history_size': 1200.0}
Glances fs
----------
Fs stats:
.. code-block:: python
>>> gl.fs
Return a <class 'glances.plugins.fs.FsPlugin'> object
>>> gl.fs
Return a dict of dict with key=<mnt_point>
>>> gl.fs.keys()
['/', '/zsfpool']
>>> gl.fs["/"]
{'device_name': '/dev/mapper/ubuntu--vg-ubuntu--lv',
'free': 736430780416,
'fs_type': 'ext4',
'key': 'mnt_point',
'mnt_point': '/',
'options': 'rw,relatime',
'percent': 22.7,
'size': 1003736440832,
'used': 216243154944}
Fs fields description:
* device_name: Device name.
* fs_type: File system type.
* mnt_point: Mount point.
* options: Mount options.
* size: Total size.
* used: Used size.
* free: Free size.
* percent: File system usage in percent.
Fs limits:
.. code-block:: python
>>> gl.fs.limits
{'fs_careful': 50.0,
'fs_critical': 90.0,
'fs_disable': ['False'],
'fs_hide': ['/boot.*', '.*/snap.*'],
'fs_warning': 70.0,
'history_size': 1200.0}
Glances wifi
------------
Wifi stats:
.. code-block:: python
>>> gl.wifi
Return a <class 'glances.plugins.wifi.WifiPlugin'> object
>>> gl.wifi
Return a dict of dict with key=<ssid>
>>> gl.wifi.keys()
['wlp0s20f3']
>>> gl.wifi["wlp0s20f3"]
{'key': 'ssid',
'quality_level': -58.0,
'quality_link': 52.0,
'ssid': 'wlp0s20f3'}
Wifi limits:
.. code-block:: python
>>> gl.wifi.limits
{'history_size': 1200.0,
'wifi_careful': -65.0,
'wifi_critical': -85.0,
'wifi_disable': ['False'],
'wifi_warning': -75.0}
Glances ip
----------
Ip stats:
.. code-block:: python
>>> gl.ip
Return a <class 'glances.plugins.ip.IpPlugin'> object
>>> gl.ip
{'address': '192.168.1.26',
'mask': '255.255.255.0',
'mask_cidr': 24,
'public_address': '',
'public_info_human': ''}
>>> gl.ip.keys()
['address', 'mask', 'mask_cidr', 'public_address', 'public_info_human']
>>> gl.ip["address"]
'192.168.1.26'
Ip fields description:
* address: Private IP address
* mask: Private IP mask
* mask_cidr: Private IP mask in CIDR format
* gateway: Private IP gateway
* public_address: Public IP address
* public_info_human: Public IP information
Ip limits:
.. code-block:: python
>>> gl.ip.limits
{'history_size': 1200.0,
'ip_disable': ['False'],
'ip_public_api': ['https://ipv4.ipleak.net/json/'],
'ip_public_disabled': ['True'],
'ip_public_field': ['ip'],
'ip_public_refresh_interval': 300.0,
'ip_public_template': ['{continent_name}/{country_name}/{city_name}']}
Glances help
------------
Help stats:
.. code-block:: python
>>> gl.help
Return a <class 'glances.plugins.help.HelpPlugin'> object
>>> gl.help
None
Help limits:
.. code-block:: python
>>> gl.help.limits
{'history_size': 1200.0}
Glances version
---------------
Version stats:
.. code-block:: python
>>> gl.version
Return a <class 'glances.plugins.version.VersionPlugin'> object
>>> gl.version
'4.4.0_dev1'
Version limits:
.. code-block:: python
>>> gl.version.limits
{'history_size': 1200.0}
Glances psutilversion
---------------------
Psutilversion stats:
.. code-block:: python
>>> gl.psutilversion
Return a <class 'glances.plugins.psutilversion.PsutilversionPlugin'> object
>>> gl.psutilversion
'7.0.0'
Psutilversion limits:
.. code-block:: python
>>> gl.psutilversion.limits
{'history_size': 1200.0}
Glances core
------------
Core stats:
.. code-block:: python
>>> gl.core
Return a <class 'glances.plugins.core.CorePlugin'> object
>>> gl.core
{'log': 16, 'phys': 10}
>>> gl.core.keys()
['phys', 'log']
>>> gl.core["phys"]
10
Core fields description:
* phys: Number of physical cores (hyper thread CPUs are excluded).
* log: Number of logical CPU cores. A logical CPU is the number of physical cores multiplied by the number of threads that can run on each core.
Core limits:
.. code-block:: python
>>> gl.core.limits
{'history_size': 1200.0}
Glances mem
-----------
Mem stats:
.. code-block:: python
>>> gl.mem
Return a <class 'glances.plugins.mem.MemPlugin'> object
>>> gl.mem
{'active': 8431759360,
'available': 4989526016,
'buffers': 192905216,
'cached': 5601996800,
'free': 4989526016,
'inactive': 4355743744,
'percent': 69.6,
'shared': 2127405056,
'total': 16421785600,
'used': 11432259584}
>>> gl.mem.keys()
['total', 'available', 'percent', 'used', 'free', 'active', 'inactive', 'buffers', 'cached', 'shared']
>>> gl.mem["total"]
16421785600
Mem fields description:
* total: Total physical memory available.
* available: The actual amount of available memory that can be given instantly to processes that request more memory in bytes; this is calculated by summing different memory values depending on the platform (e.g. free + buffers + cached on Linux) and it is supposed to be used to monitor actual memory usage in a cross platform fashion.
* percent: The percentage usage calculated as (total - available) / total * 100.
* used: Memory used, calculated differently depending on the platform and designed for informational purposes only.
* free: Memory not being used at all (zeroed) that is readily available; note that this doesn't reflect the actual memory available (use 'available' instead).
* active: *(UNIX)*: memory currently in use or very recently used, and so it is in RAM.
* inactive: *(UNIX)*: memory that is marked as not used.
* buffers: *(Linux, BSD)*: cache for things like file system metadata.
* cached: *(Linux, BSD)*: cache for various things.
* wired: *(BSD, macOS)*: memory that is marked to always stay in RAM. It is never moved to disk.
* shared: *(BSD)*: memory that may be simultaneously accessed by multiple processes.
Mem limits:
.. code-block:: python
>>> gl.mem.limits
{'history_size': 1200.0,
'mem_careful': 50.0,
'mem_critical': 90.0,
'mem_disable': ['False'],
'mem_warning': 70.0}
Glances folders
---------------
Folders stats:
.. code-block:: python
>>> gl.folders
Return a <class 'glances.plugins.folders.FoldersPlugin'> object
>>> gl.folders
[]
Folders fields description:
* path: Absolute path.
* size: Folder size in bytes.
* refresh: Refresh interval in seconds.
* errno: Return code when retrieving folder size (0 is no error).
* careful: Careful threshold in MB.
* warning: Warning threshold in MB.
* critical: Critical threshold in MB.
Folders limits:
.. code-block:: python
>>> gl.folders.limits
{'folders_disable': ['False'], 'history_size': 1200.0}
Glances quicklook
-----------------
Quicklook stats:
.. code-block:: python
>>> gl.quicklook
Return a <class 'glances.plugins.quicklook.QuicklookPlugin'> object
>>> gl.quicklook
{'cpu': 15.8,
'cpu_hz': 4475000000.0,
'cpu_hz_current': 872175812.5,
'cpu_log_core': 16,
'cpu_name': '13th Gen Intel(R) Core(TM) i7-13620H',
'cpu_phys_core': 10,
'load': 4.6,
'mem': 69.6,
'percpu': [{'cpu_number': 0,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 39.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 7.0,
'total': 61.0,
'user': 3.0},
{'cpu_number': 1,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 50.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 50.0,
'user': 0.0},
{'cpu_number': 2,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 44.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 4.0,
'total': 56.0,
'user': 3.0},
{'cpu_number': 3,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 51.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 49.0,
'user': 0.0},
{'cpu_number': 4,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 29.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 2.0,
'total': 71.0,
'user': 20.0},
{'cpu_number': 5,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 32.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 68.0,
'user': 19.0},
{'cpu_number': 6,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 14.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 10.0,
'total': 86.0,
'user': 26.0},
{'cpu_number': 7,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 51.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 49.0,
'user': 0.0},
{'cpu_number': 8,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 37.0,
'interrupt': None,
'iowait': 2.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 2.0,
'total': 63.0,
'user': 10.0},
{'cpu_number': 9,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 51.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 49.0,
'user': 0.0},
{'cpu_number': 10,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 44.0,
'interrupt': None,
'iowait': 1.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 4.0,
'total': 56.0,
'user': 1.0},
{'cpu_number': 11,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 51.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 49.0,
'user': 0.0},
{'cpu_number': 12,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 47.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 1.0,
'total': 53.0,
'user': 3.0},
{'cpu_number': 13,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 48.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 1.0,
'total': 52.0,
'user': 2.0},
{'cpu_number': 14,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 50.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 50.0,
'user': 1.0},
{'cpu_number': 15,
'dpc': None,
'guest': 0.0,
'guest_nice': 0.0,
'idle': 49.0,
'interrupt': None,
'iowait': 0.0,
'irq': 0.0,
'key': 'cpu_number',
'nice': 0.0,
'softirq': 0.0,
'steal': 0.0,
'system': 0.0,
'total': 51.0,
'user': 1.0}],
'swap': 26.4}
>>> gl.quicklook.keys()
['cpu_name', 'cpu_hz_current', 'cpu_hz', 'cpu', 'percpu', 'mem', 'swap', 'cpu_log_core', 'cpu_phys_core', 'load']
>>> gl.quicklook["cpu_name"]
'13th Gen Intel(R) Core(TM) i7-13620H'
Quicklook fields description:
* cpu: CPU percent usage
* mem: MEM percent usage
* swap: SWAP percent usage
* load: LOAD percent usage
* cpu_log_core: Number of logical CPU core
* cpu_phys_core: Number of physical CPU core
* cpu_name: CPU name
* cpu_hz_current: CPU current frequency
* cpu_hz: CPU max frequency
Quicklook limits:
.. code-block:: python
>>> gl.quicklook.limits
{'history_size': 1200.0,
'quicklook_bar_char': ['|'],
'quicklook_cpu_careful': 50.0,
'quicklook_cpu_critical': 90.0,
'quicklook_cpu_warning': 70.0,
'quicklook_disable': ['False'],
'quicklook_list': ['cpu', 'mem', 'load'],
'quicklook_load_careful': 70.0,
'quicklook_load_critical': 500.0,
'quicklook_load_warning': 100.0,
'quicklook_mem_careful': 50.0,
'quicklook_mem_critical': 90.0,
'quicklook_mem_warning': 70.0,
'quicklook_swap_careful': 50.0,
'quicklook_swap_critical': 90.0,
'quicklook_swap_warning': 70.0}
Glances memswap
---------------
Memswap stats:
.. code-block:: python
>>> gl.memswap
Return a <class 'glances.plugins.memswap.MemswapPlugin'> object
>>> gl.memswap
{'free': 3161976832,
'percent': 26.4,
'sin': 510033920,
'sout': 2266681344,
'time_since_update': 0.449798583984375,
'total': 4294963200,
'used': 1132986368}
>>> gl.memswap.keys()
['total', 'used', 'free', 'percent', 'sin', 'sout', 'time_since_update']
>>> gl.memswap["total"]
4294963200
Memswap fields description:
* total: Total swap memory.
* used: Used swap memory.
* free: Free swap memory.
* percent: Used swap memory in percentage.
* sin: The number of bytes the system has swapped in from disk (cumulative).
* sout: The number of bytes the system has swapped out from disk (cumulative).
* time_since_update: Number of seconds since last update.
Memswap limits:
.. code-block:: python
>>> gl.memswap.limits
{'history_size': 1200.0,
'memswap_careful': 50.0,
'memswap_critical': 90.0,
'memswap_disable': ['False'],
'memswap_warning': 70.0}