From 45c3c489a033061f68c798243b3dd5d2980996a8 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Wed, 9 Jul 2025 17:37:24 +0200 Subject: [PATCH 001/134] On the road of Glances 4.4.0 (after 4.3.3) --- glances/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glances/__init__.py b/glances/__init__.py index c210bff5..97398847 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -19,7 +19,7 @@ import tracemalloc # Global name # Version should start and end with a numerical char # See https://packaging.python.org/specifications/core-metadata/#version -__version__ = "4.3.3" +__version__ = "4.4.0_dev1" __apiversion__ = '4' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3' From 65393b0771ba7bf1c274ff012f791a2d0e0075da Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 6 Jul 2025 22:03:58 +0200 Subject: [PATCH 002/134] First version of the API --- Makefile | 3 ++ glances/globals.py | 7 +++++ glances/plugins/plugin/model.py | 50 +++++++++++++++++++++++++++++---- 3 files changed, 55 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 9c716a71..65ce98ed 100644 --- a/Makefile +++ b/Makefile @@ -91,6 +91,9 @@ test: ## Run All unit tests test-core: ## Run Core unit tests $(PYTEST) tests/test_core.py +test-api: ## Run API unit tests + $(PYTEST) tests/test_api.py + test-memoryleak: ## Run Memory-leak unit tests $(PYTEST) tests/test_memoryleak.py diff --git a/glances/globals.py b/glances/globals.py index f3b09326..d964a2c4 100644 --- a/glances/globals.py +++ b/glances/globals.py @@ -375,6 +375,13 @@ def json_loads(data: Union[str, bytes, bytearray]) -> Union[dict, list]: return json.loads(data) +def list_to_dict(data): + """Convert a list of dict (with key in 'key') to a dict with key as key and value as value.""" + if not isinstance(data, list): + return None + return {item[item['key']]: item for item in data if 'key' in item} + + def dictlist(data, item): if isinstance(data, dict): try: diff --git a/glances/plugins/plugin/model.py b/glances/plugins/plugin/model.py index 6ffc195b..628af23b 100644 --- a/glances/plugins/plugin/model.py +++ b/glances/plugins/plugin/model.py @@ -17,7 +17,17 @@ import re from glances.actions import GlancesActions from glances.events_list import glances_events -from glances.globals import dictlist, dictlist_json_dumps, iterkeys, itervalues, json_dumps, listkeys, mean, nativestr +from glances.globals import ( + dictlist, + dictlist_json_dumps, + iterkeys, + itervalues, + json_dumps, + list_to_dict, + listkeys, + mean, + nativestr, +) from glances.history import GlancesHistory from glances.logger import logger from glances.outputs.glances_unicode import unicode_message @@ -128,14 +138,44 @@ class GlancesPluginModel: self.stats_previous = None self.reset() - def __repr__(self): - """Return the raw stats.""" - return str(self.stats) - def __str__(self): """Return the human-readable stats.""" return str(self.stats) + def __repr__(self): + """Return the raw stats.""" + if isinstance(self.stats, list): + return str(list_to_dict(self.stats)) + return str(self.stats) + + def __getitem__(self, item): + """Return the stats item.""" + if self.stats is not None: + # Stats is a dict try, to return the item + if isinstance(self.stats, dict) and item in self.stats: + return self.stats[item] + if isinstance(self.stats, list): + ltd = list_to_dict(self.stats) + if item in ltd: + return ltd[item] + + raise KeyError(f"'{self.__class__.__name__}' object has no key '{item}'") + + def keys(self): + """Return the keys of the stats.""" + if isinstance(self.stats, dict): + return listkeys(self.stats) + if isinstance(self.stats, list): + return listkeys(list_to_dict(self.stats)) + return [] + + def get(self, item, default=None): + """Return the stats item or default if not found.""" + try: + return self[item] + except KeyError: + return default + def get_init_value(self): """Return a copy of the init value.""" return copy.copy(self.stats_init_value) From 660b94e99d58a0c683e69f0737a909d645cbab39 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 6 Jul 2025 22:04:17 +0200 Subject: [PATCH 003/134] First version of the API --- glances/api.py | 24 +++++++++++++++++++++ tests/test_api.py | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 79 insertions(+) create mode 100644 glances/api.py create mode 100755 tests/test_api.py diff --git a/glances/api.py b/glances/api.py new file mode 100644 index 00000000..1d94051d --- /dev/null +++ b/glances/api.py @@ -0,0 +1,24 @@ +# +# Glances - An eye on your system +# +# SPDX-FileCopyrightText: 2025 Nicolas Hennion +# +# SPDX-License-Identifier: LGPL-3.0-only +# + +from glances import __version__ as glances_version +from glances.main import GlancesMain +from glances.stats import GlancesStats + + +class GlancesAPI: + def __init__(self): + self.__version__ = glances_version.split('.')[0] # Get the major version + + core = GlancesMain(args_begin_at=2) + self._stats = GlancesStats(config=core.get_config(), args=core.get_args()) + + for p in self._stats.getPluginsList(): + plugin = self._stats.get_plugin(p) + if plugin is not None: + setattr(self, p, plugin) diff --git a/tests/test_api.py b/tests/test_api.py new file mode 100755 index 00000000..21e3cf93 --- /dev/null +++ b/tests/test_api.py @@ -0,0 +1,55 @@ +#!/usr/bin/env python +# +# Glances - An eye on your system +# +# SPDX-FileCopyrightText: 2025 Nicolas Hennion +# +# SPDX-License-Identifier: LGPL-3.0-only +# + +"""Glances API unitary tests suite.""" + +from glances import __version__, api + +# Global variables +# ================= + +# Init Glances API +# test_config = core.get_config() +# test_args = core.get_args() +gl = api.GlancesAPI() + + +# Pytest functions to test the Glances API version +def test_glances_api_version(): + assert gl.__version__ == __version__.split('.')[0] + + +def test_glances_api_plugin_cpu(): + # Check that the cpu plugin is available + assert gl.cpu is not None + # Update stats + gl.cpu.update() + # Get list of keys (cpu stat fields) + keys = gl.cpu.keys() + # Check that the keys are not empty + assert len(keys) > 0 + # Check that the cpu plugin has a total item + assert gl.cpu['total'] is not None + # and is a float + assert isinstance(gl.cpu['total'], float) + # test the get method + assert isinstance(gl.cpu.get('total'), float) + + +def test_glances_api_plugin_network(): + # Check that the network plugin is available + assert gl.network is not None + # Update stats + gl.network.update() + # Get list of keys (interfaces) + keys = gl.network.keys() + # Check that the keys are not empty + assert len(keys) > 0 + # Check that the first item is a dictionary + assert isinstance(gl.network[keys[0]], dict) From 365a670c1257decfd47794848113612695f924be Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 6 Jul 2025 22:47:33 +0200 Subject: [PATCH 004/134] Processlist ok --- tests/test_api.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/tests/test_api.py b/tests/test_api.py index 21e3cf93..7a11023d 100755 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -53,3 +53,22 @@ def test_glances_api_plugin_network(): assert len(keys) > 0 # Check that the first item is a dictionary assert isinstance(gl.network[keys[0]], dict) + + +def test_glances_api_plugin_process(): + gl.processcount.update() + # Get list of keys (processes) + keys = gl.processcount.keys() + # Check that the keys are not empty + assert len(keys) > 0 + # Check that processcount total is > 0 + assert gl.processcount['total'] > 0 + + # Note should be done after processcount update + gl.processlist.update() + # Get list of keys (processes) + keys = gl.processlist.keys() + # Check that first key is an integer (PID) + assert isinstance(keys[0], int) + # Check that the first item is a dictionary + assert isinstance(gl.processlist[keys[0]], dict) From 3d263bc7d4e70875cf015289ca26d302dacc46a0 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sat, 12 Jul 2025 18:16:43 +0200 Subject: [PATCH 005/134] Create a Glances API in order to use Glances as a Python lib #3237 --- Makefile | 3 +- NEWS.rst | 16 +- conf/glances.conf | 2 +- docker-compose/glances.conf | 2 +- docs/aoa/actions.rst | 2 +- docs/{ => api}/openapi.json | 0 docs/api/python.rst | 14183 ++++++++++++++++ docs/{api.rst => api/restful.rst} | 783 +- docs/config.rst | 2 +- docs/index.rst | 3 +- docs/man/glances.1 | 4 +- generate_openapi.py | 2 +- glances/__init__.py | 4 +- glances/api.py | 41 +- glances/main.py | 13 +- glances/outputs/glances_restful_api.py | 2 +- glances/outputs/glances_stdout_api_doc.py | 175 + ...c.py => glances_stdout_api_restful_doc.py} | 16 +- glances/plugins/plugin/model.py | 15 +- glances/standalone.py | 11 +- glances/stats.py | 6 +- tests/test_api.py | 26 +- 22 files changed, 14839 insertions(+), 472 deletions(-) rename docs/{ => api}/openapi.json (100%) create mode 100644 docs/api/python.rst rename docs/{api.rst => api/restful.rst} (84%) create mode 100644 glances/outputs/glances_stdout_api_doc.py rename glances/outputs/{glances_stdout_apidoc.py => glances_stdout_api_restful_doc.py} (97%) diff --git a/Makefile b/Makefile index 65ce98ed..ca8f34a3 100644 --- a/Makefile +++ b/Makefile @@ -211,8 +211,9 @@ trivy: ## Run Trivy to find vulnerabilities in container images # =================================================================== docs: ## Create the documentation + $(PYTHON) -m glances -C $(CONF) --api-doc > ./docs/api/python.rst $(PYTHON) ./generate_openapi.py - $(PYTHON) -m glances -C $(CONF) --api-doc > ./docs/api.rst + $(PYTHON) -m glances -C $(CONF) --api-restful-doc > ./docs/api/restful.rst cd docs && ./build.sh && cd .. docs-server: docs ## Start a Web server to serve the documentation diff --git a/NEWS.rst b/NEWS.rst index 814a2a01..67b61adc 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -424,7 +424,7 @@ See release note in Wiki format: https://github.com/nicolargo/glances/wiki/Glanc **BREAKING CHANGES:** * The minimal Python version is 3.8 -* The Glances API version 3 is replaced by the version 4. So Restfull API URL is now /api/4/ #2610 +* The Glances API version 3 is replaced by the version 4. So Restful API URL is now /api/4/ #2610 * Alias definition change in the configuration file #1735 Glances version 3.x and lower: @@ -449,9 +449,9 @@ Minimal requirements for Glances version 4 are: * packaging * ujson * pydantic -* fastapi (for WebUI / RestFull API) -* uvicorn (for WebUI / RestFull API) -* jinja2 (for WebUI / RestFull API) +* fastapi (for WebUI / RestFul API) +* uvicorn (for WebUI / RestFul API) +* jinja2 (for WebUI / RestFul API) Majors changes between Glances version 3 and version 4: @@ -511,7 +511,7 @@ Bug corrected: CI and documentation: * New logo for Glances version 4.0 #2713 -* Update api.rst documentation #2496 +* Update api-restful.rst documentation #2496 * Change Renovate config #2729 * Docker compose password unrecognized arguments when applying docs #2698 * Docker includes OS Release Volume mount info #2473 @@ -889,7 +889,7 @@ Bugs corrected: * Threading.Event.isSet is deprecated in Python 3.10 #2017 * Fix code scanning alert - Clear-text logging of sensitive information security #2006 * The gpu temperature unit are displayed incorrectly in web ui bug #2002 -* Doc for 'alert' Restfull/JSON API response documentation #1994 +* Doc for 'alert' Restful/JSON API response documentation #1994 * Show the spinning state of a disk documentation #1993 * Web server status check endpoint enhancement #1988 * --time parameter being ignored for client/server mode bug #1978 @@ -984,7 +984,7 @@ Bugs corrected: * [3.2.0/3.2.1] keybinding not working anymore #1904 * InfluxDB/InfluxDB2 Export object has no attribute hostname #1899 -Documentation: The "make docs" generate RestFull/API documentation file. +Documentation: The "make docs" generate RestFul/API documentation file. =============== Version 3.2.1 @@ -2011,7 +2011,7 @@ Version 2.1 * Add Glances log message (in the /tmp/glances.log file) The default log level is INFO, you can switch to the DEBUG mode using the -d option on the command line. * Add RESTful API to the Web server mode - RESTful API doc: https://github.com/nicolargo/glances/wiki/The-Glances-RESTFULL-JSON-API + RESTful API doc: https://github.com/nicolargo/glances/wiki/The-Glances-RESTFUL-JSON-API * Improve SNMP fallback mode for Cisco IOS, VMware ESXi * Add --theme-white feature to optimize display for white background * Experimental history feature (--enable-history option on the command line) diff --git a/conf/glances.conf b/conf/glances.conf index 643552d3..5d8fe40d 100644 --- a/conf/glances.conf +++ b/conf/glances.conf @@ -49,7 +49,7 @@ history_size=1200 # You can download it in a specific folder # thanks to https://github.com/nicolargo/glances/issues/2021 # then configure this folder with the webui_root_path key -# Default is folder where glances_restfull_api.py is hosted +# Default is folder where glances_restful_api.py is hosted #webui_root_path= # CORS options # Comma separated list of origins that should be permitted to make cross-origin requests. diff --git a/docker-compose/glances.conf b/docker-compose/glances.conf index 072526ee..d41da4aa 100755 --- a/docker-compose/glances.conf +++ b/docker-compose/glances.conf @@ -49,7 +49,7 @@ max_processes_display=25 # You can download it in a specific folder # thanks to https://github.com/nicolargo/glances/issues/2021 # then configure this folder with the webui_root_path key -# Default is folder where glances_restfull_api.py is hosted +# Default is folder where glances_restful_api.py is hosted #webui_root_path= # CORS options # Comma separated list of origins that should be permitted to make cross-origin requests. diff --git a/docs/aoa/actions.rst b/docs/aoa/actions.rst index 65030cd1..778b2cb0 100644 --- a/docs/aoa/actions.rst +++ b/docs/aoa/actions.rst @@ -63,7 +63,7 @@ Within ``/etc/glances/actions.d/fs-critical.py``: .. note:: You can use all the stats for the current plugin. See - https://github.com/nicolargo/glances/wiki/The-Glances-RESTFULL-JSON-API + https://github.com/nicolargo/glances/wiki/The-Glances-RESTFUL-JSON-API for the stats list. It is also possible to repeat action until the end of the alert. diff --git a/docs/openapi.json b/docs/api/openapi.json similarity index 100% rename from docs/openapi.json rename to docs/api/openapi.json diff --git a/docs/api/python.rst b/docs/api/python.rst new file mode 100644 index 00000000..8352ed1c --- /dev/null +++ b/docs/api/python.rst @@ -0,0 +1,14183 @@ +.. _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': 1509164271, + 'guest': 0.0, + 'idle': 92.7, + 'interrupts': 814674461, + 'iowait': 0.8, + 'irq': 0.0, + 'nice': 0.0, + 'soft_interrupts': 281158828, + 'steal': 0.0, + 'syscalls': 0, + 'system': 4.3, + 'total': 6.3, + 'user': 2.2} + >>> gl.cpu["total"] + 6.3 + +If the stats return a list of items (like network interfaces or processes), you can +access them by their name: + +.. code-block:: python + + ['wlp0s20f3', 'veth620fda1'] + >>> gl.network["wlp0s20f3"] + {'alias': None, + 'bytes_all': 106, + 'bytes_all_gauge': 8061991911, + 'bytes_all_rate_per_sec': 1395.0, + 'bytes_recv': 0, + 'bytes_recv_gauge': 6204039145, + 'bytes_recv_rate_per_sec': 0.0, + 'bytes_sent': 106, + 'bytes_sent_gauge': 1857952766, + 'bytes_sent_rate_per_sec': 1395.0, + 'interface_name': 'wlp0s20f3', + 'key': 'interface_name', + 'speed': 0, + 'time_since_update': 0.0759739875793457} + +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 object + >>> gl.alert + [{'avg': 99.9650001192094, + 'begin': 1752336666, + 'count': 2, + 'desc': '', + 'end': -1, + 'global_msg': 'High swap (paging) usage', + 'max': 99.9650001192094, + 'min': 99.9650001192094, + 'sort': 'memory_percent', + 'state': 'CRITICAL', + 'sum': 199.9300002384188, + 'top': ['code', 'cloudcode_cli', 'code'], + 'type': 'MEMSWAP'}, + {'avg': 71.70715598215824, + 'begin': 1752336666, + 'count': 2, + 'desc': '', + 'end': -1, + 'global_msg': 'High swap (paging) usage', + 'max': 71.79275809148201, + 'min': 71.62155387283447, + 'sort': 'memory_percent', + 'state': 'WARNING', + 'sum': 143.41431196431648, + 'top': [], + 'type': 'MEM'}] + +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 object + >>> gl.ports + [{'description': 'DefaultGateway', + 'host': '192.168.0.254', + 'indice': 'port_0', + 'port': 0, + 'refresh': 30, + 'rtt_warning': None, + 'status': 0.003253, + 'timeout': 3}] + +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 object + >>> gl.diskio + Return a dict of dict with key= + >>> gl.diskio.keys() + ['nvme0n1', 'nvme0n1p1', 'nvme0n1p2', 'nvme0n1p3', 'dm-0', 'dm-1'] + >>> gl.diskio["nvme0n1"] + {'disk_name': 'nvme0n1', + 'key': 'disk_name', + 'read_bytes': 39259638784, + 'read_count': 2278902, + 'write_bytes': 78744810496, + 'write_count': 6597606} + +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 object + >>> gl.containers + Return a dict of dict with key= + >>> gl.containers.keys() + ['timescaledb-for-glances'] + >>> gl.containers["timescaledb-for-glances"] + {'command': '/docker-entrypoint.sh postgres', + 'cpu': {'total': 0.0}, + 'cpu_percent': 0.0, + 'created': '2025-06-22T15:43:18.364042094Z', + 'engine': 'docker', + 'id': '454a8c7f059271f0e7fbb757375014115db3b6e0df2c039e66bb2647f717f67e', + 'image': ('timescale/timescaledb-ha:pg17',), + 'io': {}, + 'io_rx': None, + 'io_wx': None, + 'key': 'name', + 'memory': {}, + 'memory_inactive_file': None, + 'memory_limit': None, + 'memory_percent': None, + 'memory_usage': None, + 'name': 'timescaledb-for-glances', + 'network': {}, + 'network_rx': None, + 'network_tx': None, + 'status': 'running', + 'uptime': '2 weeks'} + +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 object + >>> gl.processcount + {'pid_max': 0, 'running': 2, 'sleeping': 444, 'thread': 2425, 'total': 584} + >>> gl.processcount.keys() + ['total', 'running', 'sleeping', 'thread', 'pid_max'] + >>> gl.processcount["total"] + 584 + +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 object + >>> gl.programlist + [{'childrens': [1827846, + 1828367, + 344538, + 1828895, + 1828151, + 344413, + 344606, + 1828611, + 1827902, + 1827918, + 1828267, + 1827911, + 1827905, + 344607, + 344509, + 344729, + 344492, + 344416, + 344415], + 'cmdline': ['code'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 10390.78, + 'children_user': 11276.86, + 'system': 3614.3500000000004, + 'user': 18706.13}, + 'io_counters': [795103232, + 1112543232, + 795103232, + 1112543232, + 1, + 60156928, + 487424, + 60156928, + 487424, + 1, + 321114112, + 413696, + 321114112, + 413696, + 1, + 73252864, + 0, + 73252864, + 0, + 1, + 9914368, + 0, + 9914368, + 0, + 1, + 3016840192, + 3984044032, + 3016840192, + 3984044032, + 1, + 99940352, + 2323279872, + 99940352, + 2323279872, + 1, + 5242880, + 0, + 5242880, + 0, + 1, + 4038656, + 0, + 4038656, + 0, + 1, + 2678784, + 0, + 2678784, + 0, + 1, + 1073152, + 0, + 1073152, + 0, + 1, + 2113536, + 0, + 2113536, + 0, + 1, + 3657728, + 0, + 3657728, + 0, + 1, + 112676864, + 0, + 112676864, + 0, + 1, + 27665408, + 0, + 27665408, + 0, + 1, + 8881152, + 0, + 8881152, + 0, + 1, + 34509824, + 24477696, + 34509824, + 24477696, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 60156928, + 487424, + 60156928, + 487424, + 1, + 321114112, + 413696, + 321114112, + 413696, + 1, + 73252864, + 0, + 73252864, + 0, + 1, + 9914368, + 0, + 9914368, + 0, + 1, + 3016840192, + 3984044032, + 3016840192, + 3984044032, + 1, + 99940352, + 2323279872, + 99940352, + 2323279872, + 1, + 5242880, + 0, + 5242880, + 0, + 1, + 4038656, + 0, + 4038656, + 0, + 1, + 2678784, + 0, + 2678784, + 0, + 1, + 1073152, + 0, + 1073152, + 0, + 1, + 2113536, + 0, + 2113536, + 0, + 1, + 3657728, + 0, + 3657728, + 0, + 1, + 112676864, + 0, + 112676864, + 0, + 1, + 27665408, + 0, + 27665408, + 0, + 1, + 8881152, + 0, + 8881152, + 0, + 1, + 34509824, + 24477696, + 34509824, + 24477696, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1], + 'memory_info': {'data': 19238379520, + 'rss': 5184180224, + 'shared': 1004412928, + 'text': 2715746304, + 'vms': 22686622609408}, + 'memory_percent': 31.56874595154651, + 'name': 'code', + 'nice': 0, + 'nprocs': 19, + 'num_threads': 360, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1828815], + 'cmdline': ['cloudcode_cli'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 23.42, + 'user': 258.33}, + 'io_counters': [397549568, 0, 397549568, 0, 1], + 'memory_info': {'data': 1679380480, + 'dirty': 0, + 'lib': 0, + 'rss': 1489678336, + 'shared': 13934592, + 'text': 33955840, + 'vms': 2934251520}, + 'memory_percent': 9.071304412025501, + 'name': 'cloudcode_cli', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 20, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9654], + 'cmdline': ['WebExtensions'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 305.85, + 'user': 2104.28}, + 'io_counters': [107953152, 0, 107953152, 0, 1], + 'memory_info': {'data': 1327452160, + 'dirty': 0, + 'lib': 0, + 'rss': 545476608, + 'shared': 82657280, + 'text': 868352, + 'vms': 25558700032}, + 'memory_percent': 3.3216461844331366, + 'name': 'WebExtensions', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 28, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9314], + 'cmdline': ['firefox'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 930.05, + 'children_user': 4998.94, + 'iowait': 0.0, + 'system': 2507.7, + 'user': 8244.73}, + 'io_counters': [4584155136, 16426987520, 4584155136, 16426987520, 1], + 'memory_info': {'data': 1179914240, + 'dirty': 0, + 'lib': 0, + 'rss': 486514688, + 'shared': 149811200, + 'text': 868352, + 'vms': 30317293568}, + 'memory_percent': 2.9626012066605028, + 'name': 'firefox', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 160, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9738, + 9730, + 530850, + 1598259, + 989892, + 990436, + 2986770, + 516128, + 3031795, + 515729, + 9734, + 1487793, + 1488319], + 'cmdline': ['Isolated Web Co'], + 'cpu_percent': 0, + 'cpu_times': {'system': 714.6800000000001, 'user': 3569.6900000000005}, + 'io_counters': [427404288, + 0, + 427404288, + 0, + 1, + 184769536, + 0, + 184769536, + 0, + 1, + 14154752, + 0, + 14154752, + 0, + 1, + 12118016, + 0, + 12118016, + 0, + 1, + 10641408, + 0, + 10641408, + 0, + 1, + 50187264, + 0, + 50187264, + 0, + 1, + 813056, + 0, + 813056, + 0, + 1, + 67727360, + 0, + 67727360, + 0, + 1, + 407552, + 0, + 407552, + 0, + 1, + 28490752, + 0, + 28490752, + 0, + 1, + 147435520, + 0, + 147435520, + 0, + 1, + 524288, + 0, + 524288, + 0, + 1, + 348160, + 0, + 348160, + 0, + 1, + 184769536, + 0, + 184769536, + 0, + 1, + 14154752, + 0, + 14154752, + 0, + 1, + 12118016, + 0, + 12118016, + 0, + 1, + 10641408, + 0, + 10641408, + 0, + 1, + 50187264, + 0, + 50187264, + 0, + 1, + 813056, + 0, + 813056, + 0, + 1, + 67727360, + 0, + 67727360, + 0, + 1, + 407552, + 0, + 407552, + 0, + 1, + 28490752, + 0, + 28490752, + 0, + 1, + 147435520, + 0, + 147435520, + 0, + 1, + 524288, + 0, + 524288, + 0, + 1, + 348160, + 0, + 348160, + 0, + 1], + 'memory_info': {'data': 4770000896, + 'rss': 2648248320, + 'shared': 1168273408, + 'text': 11288576, + 'vms': 37959864320}, + 'memory_percent': 16.126344922126272, + 'name': 'Isolated Web Co', + 'nice': 0, + 'nprocs': 13, + 'num_threads': 389, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7367], + 'cmdline': ['gnome-shell'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 9.31, + 'children_user': 46.9, + 'iowait': 0.0, + 'system': 2791.39, + 'user': 5194.46}, + 'io_counters': [815425536, 3166208, 815425536, 3166208, 1], + 'memory_info': {'data': 531615744, + 'dirty': 0, + 'lib': 0, + 'rss': 284688384, + 'shared': 77656064, + 'text': 8192, + 'vms': 6041333760}, + 'memory_percent': 1.7335923678436376, + 'name': 'gnome-shell', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 40, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1601041], + 'cmdline': ['dropbox'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.18, + 'children_user': 0.06, + 'iowait': 0.0, + 'system': 11.0, + 'user': 56.25}, + 'io_counters': [74903552, 19456000, 74903552, 19456000, 1], + 'memory_info': {'data': 863043584, + 'dirty': 0, + 'lib': 0, + 'rss': 226242560, + 'shared': 43945984, + 'text': 4096, + 'vms': 7255990272}, + 'memory_percent': 1.377690124853869, + 'name': 'dropbox', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 91, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2765], + 'cmdline': ['multipassd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.39, + 'children_user': 0.03, + 'iowait': 0.0, + 'system': 56.54, + 'user': 95.72}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 1650638848, + 'dirty': 0, + 'lib': 0, + 'rss': 214110208, + 'shared': 17600512, + 'text': 11100160, + 'vms': 3565547520}, + 'memory_percent': 1.3038109151169783, + 'name': 'multipassd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 26, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [9692], + 'cmdline': ['Privileged Cont'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 86.04, + 'user': 289.53}, + 'io_counters': [29863936, 0, 29863936, 0, 1], + 'memory_info': {'data': 498208768, + 'dirty': 0, + 'lib': 0, + 'rss': 192598016, + 'shared': 75702272, + 'text': 868352, + 'vms': 3168825344}, + 'memory_percent': 1.1728137478184806, + 'name': 'Privileged Cont', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 29, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8728], + 'cmdline': ['protonvpn-app'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 73.8, + 'children_user': 23.17, + 'iowait': 0.0, + 'system': 23.45, + 'user': 169.7}, + 'io_counters': [306638848, 2677944320, 306638848, 2677944320, 1], + 'memory_info': {'data': 317861888, + 'dirty': 0, + 'lib': 0, + 'rss': 140484608, + 'shared': 22032384, + 'text': 3026944, + 'vms': 2420948992}, + 'memory_percent': 0.8554723617676835, + 'name': 'protonvpn-app', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 31, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1828296, 2556756, 3049439, 1828300, 1828299], + 'cmdline': ['python'], + 'cpu_percent': 73.5, + 'cpu_times': {'children_system': 0.25, + 'children_user': 0.13, + 'system': 9.44, + 'user': 77.74}, + 'io_counters': [48398336, + 100282368, + 48398336, + 100282368, + 1, + 1998848, + 8192, + 1998848, + 8192, + 1, + 0, + 8192, + 0, + 4096, + 1, + 10285056, + 0, + 10285056, + 0, + 1, + 3575808, + 0, + 3575808, + 0, + 1, + 1998848, + 8192, + 1998848, + 8192, + 1, + 0, + 8192, + 0, + 4096, + 1, + 10285056, + 0, + 10285056, + 0, + 1, + 3575808, + 0, + 3575808, + 0, + 1], + 'memory_info': {'data': 527208448, + 'rss': 343298048, + 'shared': 69488640, + 'text': 15134720, + 'vms': 2589278208}, + 'memory_percent': 2.090492304415268, + 'name': 'python', + 'nice': 0, + 'nprocs': 5, + 'num_threads': 26, + 'pid': '_', + 'status': '_', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8137], + 'cmdline': ['xdg-desktop-portal-gnome'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.44, + 'user': 14.11}, + 'io_counters': [56729600, 1531904, 56729600, 1531904, 1], + 'memory_info': {'data': 202391552, + 'dirty': 0, + 'lib': 0, + 'rss': 97587200, + 'shared': 29159424, + 'text': 245760, + 'vms': 2041200640}, + 'memory_percent': 0.5942512396966313, + 'name': 'xdg-desktop-portal-gnome', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 10, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [10697], + 'cmdline': ['terminator'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 296.66, + 'children_user': 675.63, + 'iowait': 0.0, + 'system': 28.86, + 'user': 312.59}, + 'io_counters': [2627931136, 2338590720, 2627931136, 2338590720, 1], + 'memory_info': {'data': 126222336, + 'dirty': 0, + 'lib': 0, + 'rss': 92553216, + 'shared': 41373696, + 'text': 3026944, + 'vms': 745091072}, + 'memory_percent': 0.5635971043939173, + 'name': 'terminator', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3046198], + 'cmdline': ['Isolated Servic'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.07, + 'user': 0.09}, + 'io_counters': [0, 0, 0, 0, 1], + 'memory_info': {'data': 60796928, + 'dirty': 0, + 'lib': 0, + 'rss': 92090368, + 'shared': 75886592, + 'text': 868352, + 'vms': 2510499840}, + 'memory_percent': 0.5607786200251569, + 'name': 'Isolated Servic', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 30, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3368], + 'cmdline': ['dockerd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 30.09, + 'children_user': 69.49, + 'iowait': 0.0, + 'system': 61.98, + 'user': 153.82}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 615432192, + 'dirty': 0, + 'lib': 0, + 'rss': 91803648, + 'shared': 12095488, + 'text': 32280576, + 'vms': 6396882944}, + 'memory_percent': 0.5590326562568981, + 'name': 'dockerd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 44, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3046994, 3047677, 3048024], + 'cmdline': ['Web Content'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.12, 'user': 0.1}, + 'io_counters': [0, + 0, + 0, + 0, + 1, + 22528, + 0, + 22528, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 22528, + 0, + 22528, + 0, + 1, + 0, + 0, + 0, + 0, + 1], + 'memory_info': {'data': 100958208, + 'rss': 248041472, + 'shared': 204394496, + 'text': 2605056, + 'vms': 7449989120}, + 'memory_percent': 1.5104332559206257, + 'name': 'Web Content', + 'nice': 0, + 'nprocs': 3, + 'num_threads': 57, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2442358, 8101, 7508], + 'cmdline': ['gjs'], + 'cpu_percent': 0, + 'cpu_times': {'children_user': 0.01, 'system': 0.34, 'user': 1.85}, + 'io_counters': [0, + 0, + 0, + 0, + 1, + 3715072, + 0, + 3715072, + 0, + 1, + 3940352, + 0, + 3940352, + 0, + 1, + 3715072, + 0, + 3715072, + 0, + 1, + 3940352, + 0, + 3940352, + 0, + 1], + 'memory_info': {'data': 200753152, + 'rss': 86753280, + 'shared': 64970752, + 'text': 24576, + 'vms': 9213624320}, + 'memory_percent': 0.5282787515959979, + 'name': 'gjs', + 'nice': 0, + 'nprocs': 3, + 'num_threads': 37, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8341], + 'cmdline': ['Xwayland'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.01, + 'iowait': 0.0, + 'system': 629.39, + 'user': 735.38}, + 'io_counters': [59015168, 12288, 59015168, 12288, 1], + 'memory_info': {'data': 85196800, + 'dirty': 0, + 'lib': 0, + 'rss': 47202304, + 'shared': 25862144, + 'text': 1691648, + 'vms': 661254144}, + 'memory_percent': 0.2874355209344797, + 'name': 'Xwayland', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [727], + 'cmdline': ['systemd-journald'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 7.35, + 'user': 4.43}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 27000832, + 'dirty': 0, + 'lib': 0, + 'rss': 40472576, + 'shared': 40210432, + 'text': 114688, + 'vms': 102965248}, + 'memory_percent': 0.24645525705949273, + 'name': 'systemd-journald', + 'nice': -1, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048395], + 'cmdline': ['libvirtd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.15, + 'children_user': 0.05, + 'iowait': 0.0, + 'system': 0.19, + 'user': 0.22}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 201904128, + 'dirty': 0, + 'lib': 0, + 'rss': 38289408, + 'shared': 22716416, + 'text': 253952, + 'vms': 1745756160}, + 'memory_percent': 0.23316099008117985, + 'name': 'libvirtd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 20, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [299076, + 299083, + 299209, + 298909, + 299080, + 299081, + 299077, + 299082, + 299079], + 'cmdline': ['postgres'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 206.34, + 'children_user': 86.93, + 'system': 51.720000000000006, + 'user': 11.690000000000003}, + 'io_counters': [53235712, + 18612224, + 53235712, + 18612224, + 1, + 3411968, + 446464, + 3411968, + 446464, + 1, + 4444160, + 294912, + 4444160, + 294912, + 1, + 179892224, + 92766208, + 179892224, + 92766208, + 1, + 6627328, + 0, + 6627328, + 0, + 1, + 12288, + 0, + 12288, + 0, + 1, + 8192, + 0, + 8192, + 0, + 1, + 221184, + 0, + 221184, + 0, + 1, + 1044480, + 2908160, + 1044480, + 2908160, + 1, + 3411968, + 446464, + 3411968, + 446464, + 1, + 4444160, + 294912, + 4444160, + 294912, + 1, + 179892224, + 92766208, + 179892224, + 92766208, + 1, + 6627328, + 0, + 6627328, + 0, + 1, + 12288, + 0, + 12288, + 0, + 1, + 8192, + 0, + 8192, + 0, + 1, + 221184, + 0, + 221184, + 0, + 1, + 1044480, + 2908160, + 1044480, + 2908160, + 1], + 'memory_info': {'data': 25038848, + 'rss': 97665024, + 'shared': 89800704, + 'text': 61894656, + 'vms': 39104008192}, + 'memory_percent': 0.5947251441480157, + 'name': 'postgres', + 'nice': 0, + 'nprocs': 9, + 'num_threads': 9, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7793], + 'cmdline': ['evolution-calendar-factory'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.38, + 'user': 15.16}, + 'io_counters': [79888384, 10420224, 79888384, 10420224, 1], + 'memory_info': {'data': 200462336, + 'dirty': 0, + 'lib': 0, + 'rss': 37511168, + 'shared': 11214848, + 'text': 45056, + 'vms': 2400235520}, + 'memory_percent': 0.22842194556733472, + 'name': 'evolution-calendar-factory', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 16, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9659], + 'cmdline': ['RDD Process'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 35.01, + 'user': 42.49}, + 'io_counters': [57179136, 0, 57179136, 0, 1], + 'memory_info': {'data': 190009344, + 'dirty': 0, + 'lib': 0, + 'rss': 36098048, + 'shared': 31440896, + 'text': 868352, + 'vms': 726364160}, + 'memory_percent': 0.21981683842377384, + 'name': 'RDD Process', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 19, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1041237], + 'cmdline': ['fwupd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.04, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.85, + 'user': 5.62}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 174047232, + 'dirty': 0, + 'lib': 0, + 'rss': 29552640, + 'shared': 21884928, + 'text': 36864, + 'vms': 609792000}, + 'memory_percent': 0.17995897982838174, + 'name': 'fwupd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2437], + 'cmdline': ['snapd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 2.95, + 'children_user': 13.03, + 'iowait': 0.0, + 'system': 22.51, + 'user': 30.64}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 266227712, + 'dirty': 0, + 'lib': 0, + 'rss': 28311552, + 'shared': 14626816, + 'text': 12210176, + 'vms': 3029598208}, + 'memory_percent': 0.1724014509457761, + 'name': 'snapd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 24, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [8071], + 'cmdline': ['tracker-miner-fs-3'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 3.1, + 'children_user': 67.67, + 'iowait': 0.0, + 'system': 4.42, + 'user': 17.49}, + 'io_counters': [1524445184, 709468160, 1524445184, 709468160, 1], + 'memory_info': {'data': 142823424, + 'dirty': 0, + 'lib': 0, + 'rss': 26361856, + 'shared': 8716288, + 'text': 151552, + 'vms': 912617472}, + 'memory_percent': 0.16052889732161674, + 'name': 'tracker-miner-fs-3', + 'nice': 19, + 'nprocs': 1, + 'num_threads': 8, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [10425], + 'cmdline': ['Utility Process'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 9.06, + 'user': 20.74}, + 'io_counters': [8687616, 0, 8687616, 0, 1], + 'memory_info': {'data': 64200704, + 'dirty': 0, + 'lib': 0, + 'rss': 26112000, + 'shared': 24166400, + 'text': 868352, + 'vms': 379219968}, + 'memory_percent': 0.159007414609277, + 'name': 'Utility Process', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9638], + 'cmdline': ['Socket Process'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.37, + 'user': 0.42}, + 'io_counters': [1351680, 0, 1351680, 0, 1], + 'memory_info': {'data': 14684160, + 'dirty': 0, + 'lib': 0, + 'rss': 26095616, + 'shared': 25309184, + 'text': 868352, + 'vms': 231690240}, + 'memory_percent': 0.1589076452510908, + 'name': 'Socket Process', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1086491], + 'cmdline': ['eog'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.36, + 'user': 4.42}, + 'io_counters': [2973696, 1466368, 2973696, 1466368, 1], + 'memory_info': {'data': 122929152, + 'dirty': 0, + 'lib': 0, + 'rss': 24969216, + 'shared': 19607552, + 'text': 4096, + 'vms': 825688064}, + 'memory_percent': 0.15204850187578867, + 'name': 'eog', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 7, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8382], + 'cmdline': ['mutter-x11-frames'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 17.48, + 'user': 35.1}, + 'io_counters': [10485760, 0, 10485760, 0, 1], + 'memory_info': {'data': 122552320, + 'dirty': 0, + 'lib': 0, + 'rss': 24084480, + 'shared': 14807040, + 'text': 12288, + 'vms': 1229979648}, + 'memory_percent': 0.14666095653373315, + 'name': 'mutter-x11-frames', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 10, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2779], + 'cmdline': ['containerd'], + 'cpu_percent': 4.2, + 'cpu_times': {'children_system': 0.78, + 'children_user': 0.79, + 'iowait': 0.0, + 'system': 112.86, + 'user': 154.53}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 204816384, + 'dirty': 0, + 'lib': 0, + 'rss': 20459520, + 'shared': 6344704, + 'text': 20078592, + 'vms': 2602999808}, + 'memory_percent': 0.12458698603503351, + 'name': 'containerd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 18, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7489], + 'cmdline': ['evolution-source-registry'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.94, + 'user': 2.33}, + 'io_counters': [30703616, 8192, 30703616, 8192, 1], + 'memory_info': {'data': 86740992, + 'dirty': 0, + 'lib': 0, + 'rss': 19369984, + 'shared': 15970304, + 'text': 45056, + 'vms': 1487007744}, + 'memory_percent': 0.11795232371565034, + 'name': 'evolution-source-registry', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1828319], + 'cmdline': ['ruff'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.96, + 'user': 4.8}, + 'io_counters': [18681856, 0, 18681856, 0, 1], + 'memory_info': {'data': 114159616, + 'dirty': 0, + 'lib': 0, + 'rss': 18169856, + 'shared': 9318400, + 'text': 22511616, + 'vms': 1087123456}, + 'memory_percent': 0.11064421822851024, + 'name': 'ruff', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 9, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8840], + 'cmdline': ['update-notifier'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 2.19, + 'children_user': 6.49, + 'iowait': 0.0, + 'system': 2.56, + 'user': 2.45}, + 'io_counters': [95084544, 102400, 95084544, 102400, 1], + 'memory_info': {'data': 66498560, + 'dirty': 0, + 'lib': 0, + 'rss': 16596992, + 'shared': 12562432, + 'text': 40960, + 'vms': 583843840}, + 'memory_percent': 0.10106635984263379, + 'name': 'update-notifier', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1561526], + 'cmdline': ['cups-browsed'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.11}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 27582464, + 'dirty': 0, + 'lib': 0, + 'rss': 15810560, + 'shared': 13582336, + 'text': 118784, + 'vms': 275333120}, + 'memory_percent': 0.09627743064969556, + 'name': 'cups-browsed', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'cups-browsed'}, + {'childrens': [2426], + 'cmdline': ['polkitd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 7.33, + 'user': 11.06}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 51974144, + 'dirty': 0, + 'lib': 0, + 'rss': 14495744, + 'shared': 5656576, + 'text': 65536, + 'vms': 403415040}, + 'memory_percent': 0.08827093965525197, + 'name': 'polkitd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'polkitd'}, + {'childrens': [7728], + 'cmdline': ['goa-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.29, + 'user': 9.6}, + 'io_counters': [13058048, 0, 13058048, 0, 1], + 'memory_info': {'data': 83779584, + 'dirty': 0, + 'lib': 0, + 'rss': 13889536, + 'shared': 9465856, + 'text': 24576, + 'vms': 1047326720}, + 'memory_percent': 0.08457947340236209, + 'name': 'goa-daemon', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7581], + 'cmdline': ['evolution-alarm-notify'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.33, + 'user': 1.05}, + 'io_counters': [12840960, 0, 12840960, 0, 1], + 'memory_info': {'data': 107311104, + 'dirty': 0, + 'lib': 0, + 'rss': 13672448, + 'shared': 10702848, + 'text': 20480, + 'vms': 1447522304}, + 'memory_percent': 0.08325752940639476, + 'name': 'evolution-alarm-notify', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 8, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1, 7042], + 'cmdline': ['systemd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 6144.74, + 'children_user': 13683.06, + 'system': 19.25, + 'user': 48.96}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 10321920, + 'rss': 20574208, + 'shared': 10747904, + 'text': 90112, + 'vms': 49012736}, + 'memory_percent': 0.12528537154233702, + 'name': 'systemd', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': '_'}, + {'childrens': [1120849, 1120396], + 'cmdline': ['snapd-desktop-integration'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.19, + 'children_user': 0.05, + 'system': 0.15000000000000002, + 'user': 0.1}, + 'io_counters': [14453760, + 45056, + 14453760, + 45056, + 1, + 5046272, + 40960, + 5046272, + 40960, + 1, + 5046272, + 40960, + 5046272, + 40960, + 1], + 'memory_info': {'data': 54255616, + 'rss': 18817024, + 'shared': 16568320, + 'text': 589824, + 'vms': 480763904}, + 'memory_percent': 0.11458510787686566, + 'name': 'snapd-desktop-integration', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9791], + 'cmdline': ['snap'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 1.33, + 'children_user': 0.97, + 'iowait': 0.0, + 'system': 3.42, + 'user': 5.85}, + 'io_counters': [34811904, 0, 34811904, 0, 1], + 'memory_info': {'data': 150134784, + 'dirty': 0, + 'lib': 0, + 'rss': 10293248, + 'shared': 4018176, + 'text': 8765440, + 'vms': 2186620928}, + 'memory_percent': 0.06268009928048833, + 'name': 'snap', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 13, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1561481, 3252], + 'cmdline': ['cupsd'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.33, 'user': 0.02}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 10600448, + 'rss': 11100160, + 'shared': 9658368, + 'text': 614400, + 'vms': 104325120}, + 'memory_percent': 0.06759374017115932, + 'name': 'cupsd', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7532], + 'cmdline': ['gsd-media-keys'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.53, + 'user': 2.06}, + 'io_counters': [5046272, 0, 5046272, 0, 1], + 'memory_info': {'data': 54235136, + 'dirty': 0, + 'lib': 0, + 'rss': 9703424, + 'shared': 7868416, + 'text': 102400, + 'vms': 676274176}, + 'memory_percent': 0.059088402385784666, + 'name': 'gsd-media-keys', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2519], + 'cmdline': ['NetworkManager'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.02, + 'children_user': 0.11, + 'iowait': 0.0, + 'system': 13.84, + 'user': 22.0}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 37314560, + 'dirty': 0, + 'lib': 0, + 'rss': 9248768, + 'shared': 6889472, + 'text': 2555904, + 'vms': 346103808}, + 'memory_percent': 0.056319802696117256, + 'name': 'NetworkManager', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1828152, 1828176], + 'cmdline': ['docker-language-server-linux-amd64'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.19, 'user': 2.02}, + 'io_counters': [18698240, + 0, + 18698240, + 0, + 1, + 2543616, + 0, + 2543616, + 0, + 1, + 2543616, + 0, + 2543616, + 0, + 1], + 'memory_info': {'data': 111665152, + 'rss': 16912384, + 'shared': 2654208, + 'text': 28393472, + 'vms': 2575196160}, + 'memory_percent': 0.10298691998771839, + 'name': 'docker-language-server-linux-amd64', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 34, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7481], + 'cmdline': ['gnome-shell-calendar-server'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.41, + 'user': 2.25}, + 'io_counters': [10248192, 0, 10248192, 0, 1], + 'memory_info': {'data': 89317376, + 'dirty': 0, + 'lib': 0, + 'rss': 7880704, + 'shared': 5726208, + 'text': 16384, + 'vms': 1091321856}, + 'memory_percent': 0.04798906128756846, + 'name': 'gnome-shell-calendar-server', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 7, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7062], + 'cmdline': ['wireplumber'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.35, + 'user': 0.96}, + 'io_counters': [13131776, 155648, 13131776, 155648, 1], + 'memory_info': {'data': 54792192, + 'dirty': 0, + 'lib': 0, + 'rss': 7856128, + 'shared': 6021120, + 'text': 8192, + 'vms': 416247808}, + 'memory_percent': 0.047839407250289144, + 'name': 'wireplumber', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2820], + 'cmdline': ['colord'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.13, + 'children_user': 0.11, + 'iowait': 0.0, + 'system': 0.05, + 'user': 0.18}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 65282048, + 'dirty': 0, + 'lib': 0, + 'rss': 7737344, + 'shared': 6123520, + 'text': 94208, + 'vms': 957288448}, + 'memory_percent': 0.0471160794034391, + 'name': 'colord', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'colord'}, + {'childrens': [847752], + 'cmdline': ['gvfsd-dnssd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.15, + 'user': 0.34}, + 'io_counters': [499712, 0, 499712, 0, 1], + 'memory_info': {'data': 43520000, + 'dirty': 0, + 'lib': 0, + 'rss': 7622656, + 'shared': 7098368, + 'text': 16384, + 'vms': 400244736}, + 'memory_percent': 0.04641769389613561, + 'name': 'gvfsd-dnssd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8127], + 'cmdline': ['xdg-desktop-portal'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 1.46, + 'children_user': 0.46, + 'iowait': 0.0, + 'system': 2.46, + 'user': 3.37}, + 'io_counters': [29459456, 0, 29459456, 0, 1], + 'memory_info': {'data': 86933504, + 'dirty': 0, + 'lib': 0, + 'rss': 7553024, + 'shared': 6373376, + 'text': 450560, + 'vms': 718868480}, + 'memory_percent': 0.045993674123844204, + 'name': 'xdg-desktop-portal', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 8, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [445239], + 'cmdline': ['gvfsd-http'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.02, + 'user': 0.06}, + 'io_counters': [1171456, 0, 1171456, 0, 1], + 'memory_info': {'data': 35061760, + 'dirty': 0, + 'lib': 0, + 'rss': 7311360, + 'shared': 7180288, + 'text': 20480, + 'vms': 328196096}, + 'memory_percent': 0.044522076090597565, + 'name': 'gvfsd-http', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7010], + 'cmdline': ['gdm-session-worker'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 1.24, + 'children_user': 1.26, + 'iowait': 0.0, + 'system': 0.35, + 'user': 0.46}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 55345152, + 'dirty': 0, + 'lib': 0, + 'rss': 7135232, + 'shared': 5038080, + 'text': 131072, + 'vms': 477376512}, + 'memory_percent': 0.04344955549009577, + 'name': 'gdm-session-worker', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [847735], + 'cmdline': ['gvfsd-network'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.13, + 'user': 0.45}, + 'io_counters': [1236992, 0, 1236992, 0, 1], + 'memory_info': {'data': 52273152, + 'dirty': 0, + 'lib': 0, + 'rss': 7081984, + 'shared': 6688768, + 'text': 16384, + 'vms': 473890816}, + 'memory_percent': 0.043125305075990585, + 'name': 'gvfsd-network', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2417, 7076, 7380], + 'cmdline': ['dbus-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.08, + 'children_user': 0.02, + 'system': 19.94, + 'user': 67.19}, + 'io_counters': [0, + 0, + 0, + 0, + 0, + 4292608, + 0, + 4292608, + 0, + 1, + 188416, + 0, + 188416, + 0, + 1, + 4292608, + 0, + 4292608, + 0, + 1, + 188416, + 0, + 188416, + 0, + 1], + 'memory_info': {'data': 8122368, + 'rss': 14913536, + 'shared': 7782400, + 'text': 454656, + 'vms': 35229696}, + 'memory_percent': 0.0908150582890004, + 'name': 'dbus-daemon', + 'nice': 0, + 'nprocs': 3, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': '_'}, + {'childrens': [2520], + 'cmdline': ['wpa_supplicant'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.59, + 'user': 2.69}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 1437696, + 'dirty': 0, + 'lib': 0, + 'rss': 6987776, + 'shared': 5939200, + 'text': 2387968, + 'vms': 18829312}, + 'memory_percent': 0.04255163126641985, + 'name': 'wpa_supplicant', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2462], + 'cmdline': ['udisksd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.47, + 'user': 3.26}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 54394880, + 'dirty': 0, + 'lib': 0, + 'rss': 6946816, + 'shared': 5242880, + 'text': 319488, + 'vms': 482140160}, + 'memory_percent': 0.042302207870954324, + 'name': 'udisksd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [788], + 'cmdline': ['systemd-udevd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 30.39, + 'children_user': 17.76, + 'iowait': 0.0, + 'system': 9.06, + 'user': 5.59}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 3887104, + 'dirty': 0, + 'lib': 0, + 'rss': 6811648, + 'shared': 2748416, + 'text': 864256, + 'vms': 31739904}, + 'memory_percent': 0.04147911066591806, + 'name': 'systemd-udevd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1134521], + 'cmdline': ['flatpak-session-helper'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.1, + 'user': 0.33}, + 'io_counters': [368640, 0, 368640, 0, 1], + 'memory_info': {'data': 34680832, + 'dirty': 0, + 'lib': 0, + 'rss': 6795264, + 'shared': 6402048, + 'text': 24576, + 'vms': 317431808}, + 'memory_percent': 0.041379341307731854, + 'name': 'flatpak-session-helper', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2733], + 'cmdline': ['upowerd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 52.85, + 'user': 4.39}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 38453248, + 'dirty': 0, + 'lib': 0, + 'rss': 6787072, + 'shared': 3772416, + 'text': 81920, + 'vms': 327639040}, + 'memory_percent': 0.041329456628638746, + 'name': 'upowerd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7064], + 'cmdline': ['pipewire-pulse'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 16.04, + 'user': 8.35}, + 'io_counters': [11993088, 0, 11993088, 0, 1], + 'memory_info': {'data': 34181120, + 'dirty': 0, + 'lib': 0, + 'rss': 6705152, + 'shared': 5152768, + 'text': 4096, + 'vms': 128905216}, + 'memory_percent': 0.04083060983770768, + 'name': 'pipewire-pulse', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7065], + 'cmdline': ['gnome-keyring-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.11, + 'user': 3.51}, + 'io_counters': [14848000, 1658880, 14848000, 1658880, 1], + 'memory_info': {'data': 52649984, + 'dirty': 0, + 'lib': 0, + 'rss': 6541312, + 'shared': 5623808, + 'text': 577536, + 'vms': 476000256}, + 'memory_percent': 0.03983291625584555, + 'name': 'gnome-keyring-daemon', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1760787], + 'cmdline': ['sd_espeak-ng'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.21, + 'user': 0.02}, + 'io_counters': [45056, 0, 45056, 0, 1], + 'memory_info': {'data': 20443136, + 'dirty': 0, + 'lib': 0, + 'rss': 6520832, + 'shared': 5341184, + 'text': 32768, + 'vms': 109895680}, + 'memory_percent': 0.03970820455811278, + 'name': 'sd_espeak-ng', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8152], + 'cmdline': ['xdg-desktop-portal-gtk'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.0, + 'user': 2.16}, + 'io_counters': [5832704, 0, 5832704, 0, 1], + 'memory_info': {'data': 49020928, + 'dirty': 0, + 'lib': 0, + 'rss': 6463488, + 'shared': 4628480, + 'text': 135168, + 'vms': 428937216}, + 'memory_percent': 0.03935901180446104, + 'name': 'xdg-desktop-portal-gtk', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7537], + 'cmdline': ['gsd-power'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.43, + 'user': 4.95}, + 'io_counters': [4022272, 0, 4022272, 0, 1], + 'memory_info': {'data': 63365120, + 'dirty': 0, + 'lib': 0, + 'rss': 6422528, + 'shared': 4587520, + 'text': 45056, + 'vms': 612855808}, + 'memory_percent': 0.039109588408995505, + 'name': 'gsd-power', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7723], + 'cmdline': ['gvfs-udisks2-volume-monitor'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 6.07, + 'user': 28.48}, + 'io_counters': [4284416, 0, 4284416, 0, 1], + 'memory_info': {'data': 46563328, + 'dirty': 0, + 'lib': 0, + 'rss': 6381568, + 'shared': 4808704, + 'text': 94208, + 'vms': 400773120}, + 'memory_percent': 0.03886016501352997, + 'name': 'gvfs-udisks2-volume-monitor', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8353], + 'cmdline': ['gsd-xsettings'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.02, + 'children_user': 0.01, + 'iowait': 0.0, + 'system': 2.21, + 'user': 3.89}, + 'io_counters': [11833344, 0, 11833344, 0, 1], + 'memory_info': {'data': 70983680, + 'dirty': 0, + 'lib': 0, + 'rss': 6307840, + 'shared': 4952064, + 'text': 32768, + 'vms': 794730496}, + 'memory_percent': 0.03841120290169201, + 'name': 'gsd-xsettings', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 7, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [298878], + 'cmdline': ['containerd-shim-runc-v2'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.06, + 'children_user': 0.08, + 'iowait': 0.0, + 'system': 18.23, + 'user': 34.15}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 47071232, + 'dirty': 0, + 'lib': 0, + 'rss': 6209536, + 'shared': 2920448, + 'text': 5615616, + 'vms': 1268256768}, + 'memory_percent': 0.037812586752574734, + 'name': 'containerd-shim-runc-v2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 12, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [999564, 2665207, 1828422, 1828195, 345099, 344745], + 'cmdline': ['bash'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 154.56, + 'children_user': 384.63000000000005, + 'system': 1.6500000000000001, + 'user': 1.9300000000000002}, + 'io_counters': [1249145856, + 951214080, + 1249145856, + 951214080, + 1, + 211952640, + 43139072, + 211952640, + 43139072, + 1, + 102400, + 16384, + 102400, + 16384, + 1, + 1610752, + 4096, + 1610752, + 4096, + 1, + 139264, + 16384, + 139264, + 16384, + 1, + 351232, + 4096, + 351232, + 4096, + 1, + 211952640, + 43139072, + 211952640, + 43139072, + 1, + 102400, + 16384, + 102400, + 16384, + 1, + 1610752, + 4096, + 1610752, + 4096, + 1, + 139264, + 16384, + 139264, + 16384, + 1, + 351232, + 4096, + 351232, + 4096, + 1], + 'memory_info': {'data': 15011840, + 'rss': 23511040, + 'shared': 19709952, + 'text': 5873664, + 'vms': 62631936}, + 'memory_percent': 0.14316902899721567, + 'name': 'bash', + 'nice': 0, + 'nprocs': 6, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7684], + 'cmdline': ['ibus-extension-gtk3'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.39, + 'user': 20.86}, + 'io_counters': [7598080, 0, 7598080, 0, 1], + 'memory_info': {'data': 53723136, + 'dirty': 0, + 'lib': 0, + 'rss': 6098944, + 'shared': 4227072, + 'text': 81920, + 'vms': 431816704}, + 'memory_percent': 0.0371391435848178, + 'name': 'ibus-extension-gtk3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8012], + 'cmdline': ['gvfsd-trash'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.4, + 'user': 1.32}, + 'io_counters': [2675712, 0, 2675712, 0, 1], + 'memory_info': {'data': 69492736, + 'dirty': 0, + 'lib': 0, + 'rss': 5959680, + 'shared': 4517888, + 'text': 24576, + 'vms': 624525312}, + 'memory_percent': 0.03629110404023499, + 'name': 'gvfsd-trash', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7511], + 'cmdline': ['ibus-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 37.28, + 'user': 138.62}, + 'io_counters': [2760704, 8192, 2760704, 8192, 1], + 'memory_info': {'data': 48001024, + 'dirty': 0, + 'lib': 0, + 'rss': 5955584, + 'shared': 4403200, + 'text': 110592, + 'vms': 398450688}, + 'memory_percent': 0.036266161700688436, + 'name': 'ibus-daemon', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [8376], + 'cmdline': ['ibus-x11'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.48, + 'user': 1.15}, + 'io_counters': [2191360, 0, 2191360, 0, 1], + 'memory_info': {'data': 32051200, + 'dirty': 0, + 'lib': 0, + 'rss': 5853184, + 'shared': 4599808, + 'text': 77824, + 'vms': 273600512}, + 'memory_percent': 0.0356426032120246, + 'name': 'ibus-x11', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1760744], + 'cmdline': ['speech-dispatcher'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.47, + 'user': 0.16}, + 'io_counters': [4603904, 0, 4603904, 0, 1], + 'memory_info': {'data': 38137856, + 'dirty': 0, + 'lib': 0, + 'rss': 5844992, + 'shared': 4636672, + 'text': 122880, + 'vms': 123002880}, + 'memory_percent': 0.03559271853293149, + 'name': 'speech-dispatcher', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7327, 7218], + 'cmdline': ['gnome-session-binary'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.19, + 'children_user': 0.35, + 'system': 0.42000000000000004, + 'user': 1.27}, + 'io_counters': [13094912, + 4096, + 13094912, + 4096, + 1, + 3801088, + 0, + 3801088, + 0, + 1, + 3801088, + 0, + 3801088, + 0, + 1], + 'memory_info': {'data': 88784896, + 'rss': 7012352, + 'shared': 5570560, + 'text': 303104, + 'vms': 915087360}, + 'memory_percent': 0.04270128530369917, + 'name': 'gnome-session-binary', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 9, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2446], + 'cmdline': ['switcheroo-control'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.04, + 'user': 0.04}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 34906112, + 'dirty': 0, + 'lib': 0, + 'rss': 5525504, + 'shared': 5132288, + 'text': 8192, + 'vms': 317456384}, + 'memory_percent': 0.03364721604830034, + 'name': 'switcheroo-control', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [982823], + 'cmdline': ['bluetoothd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 46.08, + 'user': 29.14}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 1327104, + 'dirty': 0, + 'lib': 0, + 'rss': 5455872, + 'shared': 5062656, + 'text': 995328, + 'vms': 14532608}, + 'memory_percent': 0.033223196276008934, + 'name': 'bluetoothd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1760860], + 'cmdline': ['sd_dummy'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.81, + 'user': 1.27}, + 'io_counters': [319488, 0, 319488, 0, 1], + 'memory_info': {'data': 17657856, + 'dirty': 0, + 'lib': 0, + 'rss': 5234688, + 'shared': 4841472, + 'text': 28672, + 'vms': 166596608}, + 'memory_percent': 0.03187630994049506, + 'name': 'sd_dummy', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7870], + 'cmdline': ['evolution-addressbook-factory'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.32, + 'user': 0.93}, + 'io_counters': [8585216, 36864, 8585216, 36864, 1], + 'memory_info': {'data': 87879680, + 'dirty': 0, + 'lib': 0, + 'rss': 5206016, + 'shared': 3895296, + 'text': 4096, + 'vms': 778473472}, + 'memory_percent': 0.03170171356366919, + 'name': 'evolution-addressbook-factory', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 7, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2442126], + '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': 5189632, + 'shared': 4272128, + 'text': 61440, + 'vms': 104570880}, + 'memory_percent': 0.03160194420548298, + 'name': 'zed', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7314], + 'cmdline': ['gvfsd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 1.35, + 'children_user': 1.24, + 'iowait': 0.0, + 'system': 0.28, + 'user': 0.57}, + 'io_counters': [18927616, 0, 18927616, 0, 1], + 'memory_info': {'data': 34992128, + 'dirty': 0, + 'lib': 0, + 'rss': 5132288, + 'shared': 4476928, + 'text': 16384, + 'vms': 322220032}, + 'memory_percent': 0.03125275145183123, + 'name': 'gvfsd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7523], + 'cmdline': ['gsd-housekeeping'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.0, + 'user': 11.43}, + 'io_counters': [4636672, 0, 4636672, 0, 1], + 'memory_info': {'data': 43782144, + 'dirty': 0, + 'lib': 0, + 'rss': 5095424, + 'shared': 4571136, + 'text': 24576, + 'vms': 395153408}, + 'memory_percent': 0.031028270395912248, + 'name': 'gsd-housekeeping', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7516], + 'cmdline': ['gsd-color'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.41, + 'user': 0.77}, + 'io_counters': [2883584, 0, 2883584, 0, 1], + 'memory_info': {'data': 45178880, + 'dirty': 0, + 'lib': 0, + 'rss': 5074944, + 'shared': 4288512, + 'text': 24576, + 'vms': 423743488}, + 'memory_percent': 0.030903558698179488, + 'name': 'gsd-color', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2628], + 'cmdline': ['ModemManager'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.8, + 'user': 0.72}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 44478464, + 'dirty': 0, + 'lib': 0, + 'rss': 5029888, + 'shared': 4243456, + 'text': 1196032, + 'vms': 401731584}, + 'memory_percent': 0.0306291929631674, + 'name': 'ModemManager', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2298], + 'cmdline': ['systemd-resolved'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 24.29, + 'user': 35.42}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 3997696, + 'dirty': 0, + 'lib': 0, + 'rss': 5025792, + 'shared': 3846144, + 'text': 360448, + 'vms': 24125440}, + 'memory_percent': 0.030604250623620845, + 'name': 'systemd-resolved', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'systemd-resolve'}, + {'childrens': [7058, 7059], + 'cmdline': ['pipewire'], + 'cpu_percent': 0, + 'cpu_times': {'system': 8.95, 'user': 5.4399999999999995}, + 'io_counters': [9170944, + 0, + 9170944, + 0, + 1, + 139264, + 0, + 139264, + 0, + 1, + 139264, + 0, + 139264, + 0, + 1], + 'memory_info': {'data': 51273728, + 'rss': 5820416, + 'shared': 4771840, + 'text': 8192, + 'vms': 221249536}, + 'memory_percent': 0.035443064495652175, + 'name': 'pipewire', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 6, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3420], + 'cmdline': ['gdm3'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.03, + 'children_user': 0.02, + 'iowait': 0.0, + 'system': 0.08, + 'user': 0.21}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 43622400, + 'dirty': 0, + 'lib': 0, + 'rss': 4866048, + 'shared': 4210688, + 'text': 233472, + 'vms': 398143488}, + 'memory_percent': 0.029631499381305267, + 'name': 'gdm3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7130], + 'cmdline': ['xdg-document-portal'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 1.39, + 'children_user': 0.18, + 'iowait': 0.0, + 'system': 0.32, + 'user': 0.82}, + 'io_counters': [28891136, 0, 28891136, 0, 1], + 'memory_info': {'data': 80531456, + 'dirty': 0, + 'lib': 0, + 'rss': 4853760, + 'shared': 4591616, + 'text': 110592, + 'vms': 701771776}, + 'memory_percent': 0.02955667236266561, + 'name': 'xdg-document-portal', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 9, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7571], + 'cmdline': ['gsd-wacom'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.1, + 'user': 0.33}, + 'io_counters': [1933312, 0, 1933312, 0, 1], + 'memory_info': {'data': 45592576, + 'dirty': 0, + 'lib': 0, + 'rss': 4669440, + 'shared': 4014080, + 'text': 12288, + 'vms': 422973440}, + 'memory_percent': 0.02843426708307071, + 'name': 'gsd-wacom', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2449], + 'cmdline': ['systemd-logind'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 3.57, + 'children_user': 0.58, + 'iowait': 0.0, + 'system': 5.17, + 'user': 2.77}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 974848, + 'dirty': 0, + 'lib': 0, + 'rss': 4616192, + 'shared': 3743744, + 'text': 155648, + 'vms': 18657280}, + 'memory_percent': 0.02811001666896552, + 'name': 'systemd-logind', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7602], + 'cmdline': ['gsd-disk-utility-notify'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.05, + 'user': 0.19}, + 'io_counters': [1355776, 0, 1355776, 0, 1], + 'memory_info': {'data': 36093952, + 'dirty': 0, + 'lib': 0, + 'rss': 4612096, + 'shared': 3825664, + 'text': 8192, + 'vms': 312958976}, + 'memory_percent': 0.028085074329418966, + 'name': 'gsd-disk-utility-notify', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3350], + 'cmdline': ['thermald'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 5.72, + 'user': 5.75}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 43520000, + 'dirty': 0, + 'lib': 0, + 'rss': 4608000, + 'shared': 4083712, + 'text': 348160, + 'vms': 435200000}, + 'memory_percent': 0.028060131989872412, + 'name': 'thermald', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7531], + 'cmdline': ['gsd-keyboard'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.08, + 'user': 0.33}, + 'io_counters': [1228800, 0, 1228800, 0, 1], + 'memory_info': {'data': 45027328, + 'dirty': 0, + 'lib': 0, + 'rss': 4591616, + 'shared': 3936256, + 'text': 12288, + 'vms': 421982208}, + 'memory_percent': 0.0279603626316862, + 'name': 'gsd-keyboard', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7971], + 'cmdline': ['ibus-engine-simple'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 13.18, + 'user': 48.88}, + 'io_counters': [1343488, 0, 1343488, 0, 1], + 'memory_info': {'data': 26705920, + 'dirty': 0, + 'lib': 0, + 'rss': 4591616, + 'shared': 4067328, + 'text': 4096, + 'vms': 243126272}, + 'memory_percent': 0.0279603626316862, + 'name': 'ibus-engine-simple', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7742], + 'cmdline': ['gsd-printer'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.13}, + 'io_counters': [802816, 0, 802816, 0, 1], + 'memory_info': {'data': 43978752, + 'dirty': 0, + 'lib': 0, + 'rss': 4526080, + 'shared': 3870720, + 'text': 12288, + 'vms': 426344448}, + 'memory_percent': 0.027561285198941347, + 'name': 'gsd-printer', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7462], + 'cmdline': ['at-spi2-registryd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.21}, + 'io_counters': [532480, 0, 532480, 0, 1], + 'memory_info': {'data': 26329088, + 'dirty': 0, + 'lib': 0, + 'rss': 4505600, + 'shared': 4112384, + 'text': 40960, + 'vms': 241733632}, + 'memory_percent': 0.02743657350120858, + 'name': 'at-spi2-registryd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7554], + 'cmdline': ['gsd-sharing'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.3, + 'user': 9.56}, + 'io_counters': [1265664, 0, 1265664, 0, 1], + 'memory_info': {'data': 61206528, + 'dirty': 0, + 'lib': 0, + 'rss': 4485120, + 'shared': 3960832, + 'text': 16384, + 'vms': 556736512}, + 'memory_percent': 0.027311861803475817, + 'name': 'gsd-sharing', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7490], + 'cmdline': ['dconf-service'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.09, + 'user': 0.29}, + 'io_counters': [1122304, 4055040, 1122304, 4055040, 1], + 'memory_info': {'data': 26583040, + 'dirty': 0, + 'lib': 0, + 'rss': 4448256, + 'shared': 3792896, + 'text': 36864, + 'vms': 236089344}, + 'memory_percent': 0.027087380747556837, + 'name': 'dconf-service', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7542], + 'cmdline': ['gsd-print-notifications'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.09, + 'user': 0.21}, + 'io_counters': [2646016, 0, 2646016, 0, 1], + 'memory_info': {'data': 35250176, + 'dirty': 0, + 'lib': 0, + 'rss': 4325376, + 'shared': 4194304, + 'text': 20480, + 'vms': 331649024}, + 'memory_percent': 0.02633911056116024, + 'name': 'gsd-print-notifications', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7805], + 'cmdline': ['gvfs-goa-volume-monitor'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.19}, + 'io_counters': [958464, 0, 958464, 0, 1], + 'memory_info': {'data': 34983936, + 'dirty': 0, + 'lib': 0, + 'rss': 4276224, + 'shared': 4014080, + 'text': 45056, + 'vms': 318300160}, + 'memory_percent': 0.0260398024866016, + 'name': 'gvfs-goa-volume-monitor', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7570], + 'cmdline': ['gsd-sound'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.22}, + 'io_counters': [397312, 0, 397312, 0, 1], + 'memory_info': {'data': 43753472, + 'dirty': 0, + 'lib': 0, + 'rss': 4145152, + 'shared': 3620864, + 'text': 8192, + 'vms': 403460096}, + 'memory_percent': 0.025241647621111894, + 'name': 'gsd-sound', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2440], + 'cmdline': ['accounts-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.98, + 'user': 2.72}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 34955264, + 'dirty': 0, + 'lib': 0, + 'rss': 4128768, + 'shared': 3604480, + 'text': 90112, + 'vms': 321163264}, + 'memory_percent': 0.02514187826292568, + 'name': 'accounts-daemon', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7864], + 'cmdline': ['gvfs-mtp-volume-monitor'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.07, + 'user': 0.2}, + 'io_counters': [618496, 0, 618496, 0, 1], + 'memory_info': {'data': 34693120, + 'dirty': 0, + 'lib': 0, + 'rss': 4083712, + 'shared': 3690496, + 'text': 40960, + 'vms': 317317120}, + 'memory_percent': 0.0248675125279136, + 'name': 'gvfs-mtp-volume-monitor', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2420], + 'cmdline': ['gnome-remote-desktop-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.07, + 'user': 0.19}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 35786752, + 'dirty': 0, + 'lib': 0, + 'rss': 4046848, + 'shared': 3391488, + 'text': 352256, + 'vms': 374247424}, + 'memory_percent': 0.02464303147199462, + 'name': 'gnome-remote-desktop-daemon', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'gnome-remote-desktop'}, + {'childrens': [2632], + 'cmdline': ['boltd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.69, + 'user': 1.22}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 34893824, + 'dirty': 0, + 'lib': 0, + 'rss': 4046848, + 'shared': 3784704, + 'text': 167936, + 'vms': 321400832}, + 'memory_percent': 0.02464303147199462, + 'name': 'boltd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7783], + 'cmdline': ['gvfs-gphoto2-volume-monitor'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.2}, + 'io_counters': [1069056, 0, 1069056, 0, 1], + 'memory_info': {'data': 35115008, + 'dirty': 0, + 'lib': 0, + 'rss': 4009984, + 'shared': 3878912, + 'text': 45056, + 'vms': 318308352}, + 'memory_percent': 0.02441855041607564, + 'name': 'gvfs-gphoto2-volume-monitor', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [111279], + 'cmdline': ['dart:firmware-n'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.53, + 'children_user': 0.08, + 'iowait': 0.0, + 'system': 2.7, + 'user': 0.75}, + 'io_counters': [43667456, 0, 43667456, 0, 1], + 'memory_info': {'data': 10579968, + 'dirty': 0, + 'lib': 0, + 'rss': 3907584, + 'shared': 2740224, + 'text': 2752512, + 'vms': 287809536}, + 'memory_percent': 0.023794991927411805, + 'name': 'dart:firmware-n', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7519], + 'cmdline': ['gsd-datetime'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.06, + 'user': 0.22}, + 'io_counters': [286720, 0, 286720, 0, 1], + 'memory_info': {'data': 43700224, + 'dirty': 0, + 'lib': 0, + 'rss': 3846144, + 'shared': 3584000, + 'text': 20480, + 'vms': 442413056}, + 'memory_percent': 0.023420856834213508, + 'name': 'gsd-datetime', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2423], + 'cmdline': ['iio-sensor-proxy'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 15.95, + 'user': 10.29}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 35188736, + 'dirty': 0, + 'lib': 0, + 'rss': 3796992, + 'shared': 3403776, + 'text': 36864, + 'vms': 321552384}, + 'memory_percent': 0.023121548759654866, + 'name': 'iio-sensor-proxy', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7764], + 'cmdline': ['goa-identity-service'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.28, + 'user': 0.28}, + 'io_counters': [770048, 0, 770048, 0, 1], + 'memory_info': {'data': 43364352, + 'dirty': 0, + 'lib': 0, + 'rss': 3751936, + 'shared': 3620864, + 'text': 65536, + 'vms': 398757888}, + 'memory_percent': 0.02284718302464278, + 'name': 'goa-identity-service', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7683], + 'cmdline': ['ibus-memconf'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.01, + 'user': 0.0}, + 'io_counters': [544768, 0, 544768, 0, 1], + 'memory_info': {'data': 26173440, + 'dirty': 0, + 'lib': 0, + 'rss': 3739648, + 'shared': 3477504, + 'text': 8192, + 'vms': 242601984}, + 'memory_percent': 0.022772356006003122, + 'name': 'ibus-memconf', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2450], + 'cmdline': ['systemd-machined'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.26, + 'user': 1.56}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 851968, + 'dirty': 0, + 'lib': 0, + 'rss': 3715072, + 'shared': 3321856, + 'text': 65536, + 'vms': 18010112}, + 'memory_percent': 0.0226227019687238, + 'name': 'systemd-machined', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7544], + 'cmdline': ['gsd-rfkill'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.2, + 'user': 0.69}, + 'io_counters': [155648, 0, 155648, 0, 1], + 'memory_info': {'data': 60280832, + 'dirty': 0, + 'lib': 0, + 'rss': 3706880, + 'shared': 3313664, + 'text': 20480, + 'vms': 544178176}, + 'memory_percent': 0.022572817289630696, + 'name': 'gsd-rfkill', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7212], + '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.01}, + 'io_counters': [114688, 0, 114688, 0, 1], + 'memory_info': {'data': 26157056, + 'dirty': 0, + 'lib': 0, + 'rss': 3698688, + 'shared': 3436544, + 'text': 20480, + 'vms': 241627136}, + 'memory_percent': 0.02252293261053759, + 'name': 'gdm-wayland-session', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7513], + 'cmdline': ['gsd-a11y-settings'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.07, + 'user': 0.2}, + 'io_counters': [299008, 0, 299008, 0, 1], + 'memory_info': {'data': 43220992, + 'dirty': 0, + 'lib': 0, + 'rss': 3698688, + 'shared': 3436544, + 'text': 8192, + 'vms': 393097216}, + 'memory_percent': 0.02252293261053759, + 'name': 'gsd-a11y-settings', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7759], + 'cmdline': ['gvfsd-metadata'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.01, + 'user': 0.05}, + 'io_counters': [614400, 159744, 614400, 159744, 1], + 'memory_info': {'data': 26570752, + 'dirty': 0, + 'lib': 0, + 'rss': 3678208, + 'shared': 3547136, + 'text': 32768, + 'vms': 242593792}, + 'memory_percent': 0.02239822091280482, + 'name': 'gvfsd-metadata', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7137], + 'cmdline': ['xdg-permission-store'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.02, + 'user': 0.04}, + 'io_counters': [638976, 0, 638976, 0, 1], + 'memory_info': {'data': 34676736, + 'dirty': 0, + 'lib': 0, + 'rss': 3653632, + 'shared': 3522560, + 'text': 36864, + 'vms': 317140992}, + 'memory_percent': 0.022248566875525504, + 'name': 'xdg-permission-store', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7365], + 'cmdline': ['at-spi-bus-launcher'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.02, + 'user': 0.07}, + 'io_counters': [483328, 0, 483328, 0, 1], + 'memory_info': {'data': 43323392, + 'dirty': 0, + 'lib': 0, + 'rss': 3616768, + 'shared': 3485696, + 'text': 12288, + 'vms': 392155136}, + 'memory_percent': 0.022024085819606527, + 'name': 'at-spi-bus-launcher', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7324], + 'cmdline': ['gvfsd-fuse'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.01, + 'user': 0.01}, + 'io_counters': [864256, 0, 864256, 0, 1], + 'memory_info': {'data': 53948416, + 'dirty': 0, + 'lib': 0, + 'rss': 3596288, + 'shared': 3465216, + 'text': 24576, + 'vms': 471019520}, + 'memory_percent': 0.021899374121873757, + 'name': 'gvfsd-fuse', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 7, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7833], + 'cmdline': ['gvfs-afc-volume-monitor'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 6.3, + 'user': 2.33}, + 'io_counters': [983040, 0, 983040, 0, 1], + 'memory_info': {'data': 43266048, + 'dirty': 0, + 'lib': 0, + 'rss': 3538944, + 'shared': 3276800, + 'text': 40960, + 'vms': 398839808}, + 'memory_percent': 0.021550181368222013, + 'name': 'gvfs-afc-volume-monitor', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7547], + 'cmdline': ['gsd-screensaver-proxy'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.12, + 'user': 0.47}, + 'io_counters': [352256, 0, 352256, 0, 1], + 'memory_info': {'data': 34832384, + 'dirty': 0, + 'lib': 0, + 'rss': 3534848, + 'shared': 3272704, + 'text': 8192, + 'vms': 317239296}, + 'memory_percent': 0.02152523902867546, + 'name': 'gsd-screensaver-proxy', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7688], + 'cmdline': ['ibus-portal'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.2, + 'user': 0.68}, + 'io_counters': [749568, 0, 749568, 0, 1], + 'memory_info': {'data': 35311616, + 'dirty': 0, + 'lib': 0, + 'rss': 3534848, + 'shared': 3141632, + 'text': 28672, + 'vms': 318263296}, + 'memory_percent': 0.02152523902867546, + 'name': 'ibus-portal', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7565], + 'cmdline': ['gsd-smartcard'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.09, + 'user': 0.23}, + 'io_counters': [536576, 0, 536576, 0, 1], + 'memory_info': {'data': 43393024, + 'dirty': 0, + 'lib': 0, + 'rss': 3526656, + 'shared': 3395584, + 'text': 36864, + 'vms': 395452416}, + 'memory_percent': 0.02147535434958235, + 'name': 'gsd-smartcard', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 5, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2299], + 'cmdline': ['systemd-timesyncd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.64, + 'user': 0.26}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 9158656, + 'dirty': 0, + 'lib': 0, + 'rss': 3256320, + 'shared': 2994176, + 'text': 28672, + 'vms': 93585408}, + 'memory_percent': 0.019829159939509837, + 'name': 'systemd-timesyncd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'systemd-timesync'}, + {'childrens': [2403521], + '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': 3067904, + 'shared': 2936832, + 'text': 12288, + 'vms': 12046336}, + 'memory_percent': 0.018681812320368387, + 'name': 'uuidd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'uuidd'}, + {'childrens': [1760864], + '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': [73728, 0, 73728, 0, 1], + 'memory_info': {'data': 397312, + 'dirty': 0, + 'lib': 0, + 'rss': 2699264, + 'shared': 2568192, + 'text': 24576, + 'vms': 5804032}, + 'memory_percent': 0.016437001761178596, + 'name': 'sd_openjtalk', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3371], + 'cmdline': ['snmpd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 80.06, + 'user': 29.15}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 3866624, + 'dirty': 0, + 'lib': 0, + 'rss': 2637824, + 'shared': 1982464, + 'text': 12288, + 'vms': 26619904}, + 'memory_percent': 0.016062866667980298, + 'name': 'snmpd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'Debian-snmp'}, + {'childrens': [3049435], + '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': [0, 0, 0, 0, 1], + 'memory_info': {'data': 520192, + 'dirty': 0, + 'lib': 0, + 'rss': 2637824, + 'shared': 2375680, + 'text': 172032, + 'vms': 8802304}, + 'memory_percent': 0.016062866667980298, + 'name': 'make', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [16589], + 'cmdline': ['ssh-agent'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.14, + 'user': 2.76}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 663552, + 'dirty': 0, + 'lib': 0, + 'rss': 2326528, + 'shared': 1933312, + 'text': 139264, + 'vms': 8634368}, + 'memory_percent': 0.01416724886244225, + 'name': 'ssh-agent', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2415, 2509], + 'cmdline': ['avahi-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'system': 7.41, 'user': 6.92}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 1273856, + 'rss': 3174400, + 'shared': 2908160, + 'text': 163840, + 'vms': 17698816}, + 'memory_percent': 0.019330313148578776, + 'name': 'avahi-daemon', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'avahi'}, + {'childrens': [2295], + 'cmdline': ['systemd-oomd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 38.98, + 'user': 25.79}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 892928, + 'dirty': 0, + 'lib': 0, + 'rss': 2244608, + 'shared': 2113536, + 'text': 28672, + 'vms': 17977344}, + 'memory_percent': 0.013668402071511184, + 'name': 'systemd-oomd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'systemd-oom'}, + {'childrens': [3253], + 'cmdline': ['cups-proxyd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.75, + 'user': 0.46}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 26611712, + 'dirty': 0, + 'lib': 0, + 'rss': 2244608, + 'shared': 1982464, + 'text': 28672, + 'vms': 247369728}, + 'memory_percent': 0.013668402071511184, + 'name': 'cups-proxyd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2767], + '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': 2215936, + 'shared': 1298432, + 'text': 3026944, + 'vms': 120745984}, + 'memory_percent': 0.01349380569468531, + 'name': 'unattended-upgr', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3505], + 'cmdline': ['rtkit-daemon'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.1, + 'user': 1.04}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 17346560, + 'dirty': 0, + 'lib': 0, + 'rss': 2027520, + 'shared': 1896448, + 'text': 28672, + 'vms': 90599424}, + 'memory_percent': 0.01234645807554386, + 'name': 'rtkit-daemon', + 'nice': 1, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'rtkit'}, + {'childrens': [2961, 2962], + 'cmdline': ['dnsmasq'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.29, 'user': 0.08}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 1040384, + 'rss': 2449408, + 'shared': 2404352, + 'text': 745472, + 'vms': 23519232}, + 'memory_percent': 0.014915519048838848, + 'name': 'dnsmasq', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': '_'}, + {'childrens': [2433], + 'cmdline': ['smartd'], + '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': 1220608, + 'dirty': 0, + 'lib': 0, + 'rss': 1953792, + 'shared': 1822720, + 'text': 249856, + 'vms': 12292096}, + 'memory_percent': 0.011897495963705903, + 'name': 'smartd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3379, 3394], + 'cmdline': ['kerneloops'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.16, 'user': 0.24}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 1064960, + 'rss': 3653632, + 'shared': 3059712, + 'text': 24576, + 'vms': 26099712}, + 'memory_percent': 0.022248566875525504, + 'name': 'kerneloops', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'kernoops'}, + {'childrens': [2581], + 'cmdline': ['rsyslogd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.96, + 'user': 1.52}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 18845696, + 'dirty': 0, + 'lib': 0, + 'rss': 1835008, + 'shared': 1703936, + 'text': 454656, + 'vms': 227909632}, + 'memory_percent': 0.011174168116855858, + 'name': 'rsyslogd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 4, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'syslog'}, + {'childrens': [2868521], + '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': 1822720, + 'shared': 1822720, + 'text': 16384, + 'vms': 3289088}, + 'memory_percent': 0.011099341098216198, + 'name': 'sleep', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3049438], + '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': 1650688, + 'shared': 1650688, + 'text': 86016, + 'vms': 2871296}, + 'memory_percent': 0.01005176283726096, + 'name': 'sh', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [3257, 2759], + 'cmdline': ['run-cups-browse'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.19, + 'children_user': 0.03, + 'system': 0.29000000000000004, + 'user': 0.01}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 745472, + 'rss': 2023424, + 'shared': 2023424, + 'text': 163840, + 'vms': 5922816}, + 'memory_percent': 0.01232151573599731, + 'name': 'run-cups-browse', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2443], + 'cmdline': ['cron'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 2.56, + 'children_user': 0.97, + 'iowait': 0.0, + 'system': 0.37, + 'user': 0.07}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 450560, + 'dirty': 0, + 'lib': 0, + 'rss': 1380352, + 'shared': 1380352, + 'text': 32768, + 'vms': 9588736}, + 'memory_percent': 0.008405568427188446, + 'name': 'cron', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2466], + 'cmdline': ['virtlogd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.02, + 'user': 0.04}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 1241088, + 'dirty': 0, + 'lib': 0, + 'rss': 1253376, + 'shared': 860160, + 'text': 40960, + 'vms': 75591680}, + 'memory_percent': 0.007632355901245297, + 'name': 'virtlogd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2465], + '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': 1220608, + 'shared': 958464, + 'text': 40960, + 'vms': 75587584}, + 'memory_percent': 0.00743281718487287, + 'name': 'virtlockd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [7292], + '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': 1175552, + 'shared': 1044480, + 'text': 32768, + 'vms': 166555648}, + 'memory_percent': 0.007158451449860785, + 'name': 'gcr-ssh-agent', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7048], + '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': 1355776, + 'dirty': 0, + 'lib': 0, + 'rss': 1159168, + 'shared': 856064, + 'text': 86016, + 'vms': 22142976}, + 'memory_percent': 0.007058682091674572, + 'name': '(sd-pam)', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7297], + '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': 1028096, + 'shared': 1028096, + 'text': 4096, + 'vms': 93683712}, + 'memory_percent': 0.006260527226184868, + 'name': 'gnome-session-ctl', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [1134526], + 'cmdline': ['p11-kit-server'], + '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': 425984, + 'dirty': 0, + 'lib': 0, + 'rss': 864256, + 'shared': 688128, + 'text': 24576, + 'vms': 4542464}, + 'memory_percent': 0.005262833644322736, + 'name': 'p11-kit-server', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [344435], + 'cmdline': ['chrome_crashpad_handler'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.1, + 'user': 0.01}, + 'io_counters': [8881152, 1204224, 8881152, 1204224, 1], + 'memory_info': {'data': 17641472, + 'dirty': 0, + 'lib': 0, + 'rss': 692224, + 'shared': 561152, + 'text': 1085440, + 'vms': 34382123008}, + 'memory_percent': 0.0042152553833675, + 'name': 'chrome_crashpad_handler', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 3, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [7144], + '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': 675840, + 'shared': 675840, + 'text': 20480, + 'vms': 2768896}, + 'memory_percent': 0.004115486025181287, + 'name': 'fusermount3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [9484], + 'cmdline': ['crashhelper'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.11, + 'user': 0.05}, + 'io_counters': [3441664, 0, 3441664, 0, 1], + 'memory_info': {'data': 9740288, + 'dirty': 0, + 'lib': 0, + 'rss': 634880, + 'shared': 634880, + 'text': 1593344, + 'vms': 21860352}, + 'memory_percent': 0.0038660626297157548, + 'name': 'crashhelper', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [298855, 298848], + 'cmdline': ['docker-proxy'], + 'cpu_percent': 0, + 'cpu_times': {'system': 0.31, 'user': 0.16999999999999998}, + 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + 'memory_info': {'data': 209883136, + 'rss': 1118208, + 'shared': 856064, + 'text': 1712128, + 'vms': 3649425408}, + 'memory_percent': 0.006809258696209039, + 'name': 'docker-proxy', + 'nice': 0, + 'nprocs': 2, + 'num_threads': 17, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2763], + 'cmdline': ['run-cupsd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.45, + 'children_user': 0.04, + 'iowait': 0.0, + 'system': 0.19, + 'user': 0.02}, + 'io_counters': [0, 0, 0, 0, 0], + 'memory_info': {'data': 372736, + 'dirty': 0, + 'lib': 0, + 'rss': 262144, + 'shared': 262144, + 'text': 81920, + 'vms': 2961408}, + 'memory_percent': 0.0015963097309794083, + 'name': 'run-cupsd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2], + 'cmdline': ['kthreadd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kthreadd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.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': 'ksoftirqd/0', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [17], + 'cmdline': ['rcu_preempt'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 224.8, + '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': 'rcu_preempt', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.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': 'rcu_exp_gp_kthread_worker', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [20], + 'cmdline': ['migration/0'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 17.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': 'migration/0', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [25], + 'cmdline': ['migration/2'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 16.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': 'migration/2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [26], + 'cmdline': ['ksoftirqd/2'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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': 'ksoftirqd/2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [31], + 'cmdline': ['migration/4'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 10.63, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [32], + 'cmdline': ['ksoftirqd/4'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.76, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [37], + 'cmdline': ['migration/6'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 10.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': 'migration/6', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [38], + 'cmdline': ['ksoftirqd/6'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.76, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [43], + 'cmdline': ['migration/8'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 29.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': 'migration/8', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [44], + 'cmdline': ['ksoftirqd/8'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.29, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [46], + 'cmdline': ['kworker/8:0H-kblockd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.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': 'kworker/8:0H-kblockd', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [49], + 'cmdline': ['migration/10'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 21.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/10', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [50], + 'cmdline': ['ksoftirqd/10'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.29, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [55], + 'cmdline': ['migration/12'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 57.76, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [56], + 'cmdline': ['ksoftirqd/12'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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': 'ksoftirqd/12', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [61], + 'cmdline': ['migration/13'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 37.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/13', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [62], + 'cmdline': ['ksoftirqd/13'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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': 'ksoftirqd/13', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [67], + 'cmdline': ['migration/14'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 29.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': 'migration/14', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [68], + 'cmdline': ['ksoftirqd/14'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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': 'ksoftirqd/14', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [73], + 'cmdline': ['migration/15'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 21.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/15', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [74], + 'cmdline': ['ksoftirqd/15'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.93, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [79], + 'cmdline': ['migration/1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.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': 'migration/1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.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': 'ksoftirqd/1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [85], + 'cmdline': ['migration/3'], + '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': 'migration/3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [86], + 'cmdline': ['ksoftirqd/3'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'ksoftirqd/3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.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': 'migration/5', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [92], + 'cmdline': ['ksoftirqd/5'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.64, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.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': 'migration/7', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [98], + 'cmdline': ['ksoftirqd/7'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'ksoftirqd/7', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [103], + 'cmdline': ['migration/9'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.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': 'migration/9', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [104], + 'cmdline': ['ksoftirqd/9'], + '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': 'ksoftirqd/9', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.89, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [110], + 'cmdline': ['ksoftirqd/11'], + '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': 'ksoftirqd/11', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [116], + 'cmdline': ['kauditd'], + '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': 'kauditd', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [117], + 'cmdline': ['khungtaskd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.67, + 'user': 0.04}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [121], + 'cmdline': ['kcompactd0'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 155.27, + 'user': 0.27}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [123], + 'cmdline': ['khugepaged'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.66, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [127], + 'cmdline': ['irq/9-acpi'], + 'cpu_percent': 8.1, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 125.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/9-acpi', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [140], + 'cmdline': ['kworker/13:1H-events_highpri'], + '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': 'kworker/13:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [141], + 'cmdline': ['kswapd0'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 48.22, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [142], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [143], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [144], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [145], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [146], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [148], + 'cmdline': ['hwrng'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.5, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [149], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [151], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [152], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [153], + 'cmdline': ['kworker/4:1H-kblockd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.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': 'kworker/4:1H-kblockd', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [161], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [172], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [181], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [182], + 'cmdline': ['kworker/0:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.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/0:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [207], + 'cmdline': ['kworker/12:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.63, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [210], + 'cmdline': ['kworker/15:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 9.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/15:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [212], + 'cmdline': ['kworker/3:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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/3:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [240], + 'cmdline': ['kworker/1:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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/1:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [242], + 'cmdline': ['kworker/14:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 15.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/14:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [244], + 'cmdline': ['kworker/9:1H-events_highpri'], + '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': 'kworker/9:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [266], + 'cmdline': ['kworker/11:1H-kblockd'], + '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': 'kworker/11:1H-kblockd', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [268], + 'cmdline': ['kworker/2:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.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': 'kworker/2:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [269], + 'cmdline': ['kworker/10:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.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': 'kworker/10:1H-events_highpri', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [270], + 'cmdline': ['kworker/6:1H-kblockd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.82, + 'user': 0.0}, + 'io_counters': [0, 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-kblockd', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [271], + 'cmdline': ['kworker/5:1H-kblockd'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/5:1H-kblockd', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [272], + 'cmdline': ['kworker/7:1H-events_highpri'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.08, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [273], + 'cmdline': ['kworker/8:1H'], + '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:1H', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [366], + 'cmdline': ['irq/178-VEN_04F3:00'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 25.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': 'irq/178-VEN_04F3:00', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [371], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [372], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [373], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [374], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [375], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [450], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [455], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [456], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [618], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [623], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [624], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [625], + 'cmdline': ['dmcrypt_write/252:0'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 46.5, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [631], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [667], + 'cmdline': ['jbd2/dm-1-8'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 44.64, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [668, 987], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [797, 2404016], + 'cmdline': ['psimon'], + 'cpu_percent': 0, + 'cpu_times': {'user': 0.01}, + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [982], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [986], + 'cmdline': ['jbd2/nvme0n1p2-8'], + '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': 'jbd2/nvme0n1p2-8', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1003], + 'cmdline': ['irq/199-iwlwifi:default_queue'], + 'cpu_percent': 4.1, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 85.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/199-iwlwifi:default_queue', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1004], + 'cmdline': ['irq/200-iwlwifi:queue_1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.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': 'irq/200-iwlwifi:queue_1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1005], + 'cmdline': ['irq/201-iwlwifi:queue_2'], + 'cpu_percent': 0, + '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': 'irq/201-iwlwifi:queue_2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1006], + 'cmdline': ['irq/202-iwlwifi:queue_3'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 25.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': 'irq/202-iwlwifi:queue_3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1007], + 'cmdline': ['irq/203-iwlwifi:queue_4'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 8.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/203-iwlwifi:queue_4', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1008], + 'cmdline': ['irq/204-iwlwifi:queue_5'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 31.66, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1009], + 'cmdline': ['irq/205-iwlwifi:queue_6'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 7.08, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1010], + 'cmdline': ['irq/206-iwlwifi:queue_7'], + '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': 'irq/206-iwlwifi:queue_7', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1011], + 'cmdline': ['irq/207-iwlwifi:queue_8'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 11.57, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1012], + 'cmdline': ['irq/208-iwlwifi:queue_9'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.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/208-iwlwifi:queue_9', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1013], + 'cmdline': ['irq/209-iwlwifi:queue_10'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 5.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': 'irq/209-iwlwifi:queue_10', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1014], + 'cmdline': ['irq/210-iwlwifi:queue_11'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 9.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': 'irq/210-iwlwifi:queue_11', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1015], + 'cmdline': ['irq/211-iwlwifi:queue_12'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 11.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/211-iwlwifi:queue_12', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1016], + 'cmdline': ['irq/212-iwlwifi:queue_13'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 6.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/212-iwlwifi:queue_13', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1017], + 'cmdline': ['irq/213-iwlwifi:queue_14'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 5.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/213-iwlwifi:queue_14', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1018], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1203], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1271, 1306], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1317, 1381], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1320], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1321], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1322], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1323], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1382], + 'cmdline': ['irq/231-AudioDSP'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'irq/231-AudioDSP', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1459], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1466], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1796], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1797], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1798], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1799, 1844], + '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], + 'memory_info': {}, + 'memory_percent': 0, + 'name': 'spl_kmem_cache', + 'nice': -20, + 'nprocs': 2, + 'num_threads': 2, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1800], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1801], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1802], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1803], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1804], + 'cmdline': ['arc_evict'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.82, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1805], + 'cmdline': ['arc_reap'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 5.22, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1806], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1807], + 'cmdline': ['dbuf_evict'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 4.89, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1808, 1842, 1843, 1845, 1846, 1847, 1848, 1849, 1914, 1915], + '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, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0], + 'memory_info': {}, + 'memory_percent': 0, + 'name': 'z_vdev_file', + 'nice': 19, + 'nprocs': 10, + 'num_threads': 10, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1809], + 'cmdline': ['l2arc_feed'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 2.09, + 'user': 1.84}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1886], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1887], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1888], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1889, 1919, 1964, 1966], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1890, 1916, 1920, 1963], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1891, 1917, 1918, 1962], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1892, 1977, 1978, 1981, 1982, 1983, 1984, 1985, 1987], + '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], + 'memory_info': {}, + 'memory_percent': 0, + 'name': 'z_wr_iss', + 'nice': -19, + 'nprocs': 9, + 'num_threads': 9, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1893], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1894, 1988, 1992], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1895, 3311, 3312, 3313], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1896, 1980], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1897], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1898], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1899], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1900], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1901], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1902], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1903], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1904], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1905], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1906], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1907], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1908], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1909, 4554, 4585], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1910], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1911], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1921, + 1922, + 1923, + 1924, + 1925, + 1926, + 1927, + 1928, + 1929, + 1930, + 1931, + 1932], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1933, + 1934, + 1935, + 1936, + 1937, + 1938, + 1939, + 1940, + 1941, + 1942, + 1943, + 1944, + 1945, + 1946, + 1947, + 1948], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1949], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1950], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1970], + 'cmdline': ['txg_quiesce'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.0, + 'user': 1.38}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [1971], + 'cmdline': ['txg_sync'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 5.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': 'txg_sync', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1972], + 'cmdline': ['mmp'], + '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': 'mmp', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'S', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [1973], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1974], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1975], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1976], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [3762], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [1760757], + 'cmdline': ['sd_espeak-ng-mb'], + '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': 'sd_espeak-ng-mb', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'Z', + 'time_since_update': 0.2516055107116699, + 'username': 'nicolargo'}, + {'childrens': [2426002], + 'cmdline': ['kworker/2:0-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/2:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2439914], + 'cmdline': ['kworker/12:0-mm_percpu_wq'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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/12:0-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2441839], + 'cmdline': ['kworker/u64:38-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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/u64:38-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2441865], + '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.2516055107116699, + 'username': 'root'}, + {'childrens': [2442150], + 'cmdline': ['kworker/5:0-events'], + '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/5:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2519125], + 'cmdline': ['kworker/3:0-events'], + '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': 'kworker/3:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2530070], + 'cmdline': ['kworker/15:0-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.83, + 'user': 0.0}, + 'io_counters': [0, 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-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2563843], + 'cmdline': ['kworker/9: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/9:0-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2671682], + 'cmdline': ['kworker/15:1-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/15:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2708146], + 'cmdline': ['kworker/11:2-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:2-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2723662], + 'cmdline': ['kworker/4:2-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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/4:2-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2733585], + 'cmdline': ['kworker/u64:2-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.93, + 'user': 0.0}, + 'io_counters': [0, 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:2-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2858915], + 'cmdline': ['kworker/0:0-events'], + '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': 'kworker/0:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2865794], + '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.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/u64:0-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2877566], + 'cmdline': ['kworker/14:2-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.92, + 'user': 0.0}, + 'io_counters': [0, 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:2-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2897676], + 'cmdline': ['kworker/10:1-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/10:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2905215], + 'cmdline': ['kworker/8:1-mm_percpu_wq'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.64, + 'user': 0.0}, + 'io_counters': [0, 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-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2906922], + 'cmdline': ['kworker/6:2-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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/6:2-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2931708], + 'cmdline': ['kworker/u64:1-events_unbound'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.96, + 'user': 0.0}, + 'io_counters': [0, 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-events_unbound', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2931709], + 'cmdline': ['kworker/u64:5-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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:5-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2949915], + 'cmdline': ['kworker/7:0-mm_percpu_wq'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/7:0-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2957483], + 'cmdline': ['kworker/u64:8-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 1.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': 'kworker/u64:8-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2958454], + 'cmdline': ['kworker/13: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/13:2-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [2964207], + 'cmdline': ['kworker/14: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/14:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3025799], + 'cmdline': ['kworker/2:1-events'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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/2:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3033224], + 'cmdline': ['kworker/u65:0-hci0'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 3.6, + 'user': 0.0}, + 'io_counters': [0, 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-hci0', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3033335], + 'cmdline': ['kworker/u65:1-rb_allocator'], + 'cpu_percent': 4.3, + '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': 'kworker/u65:1-rb_allocator', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3033859], + 'cmdline': ['kworker/13:0-mm_percpu_wq'], + '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/13:0-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3034873], + 'cmdline': ['kworker/3:1-mm_percpu_wq'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/3:1-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3035674], + '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.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': 'kworker/u64:3-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3035874], + '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.84, + 'user': 0.0}, + 'io_counters': [0, 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.2516055107116699, + 'username': 'root'}, + {'childrens': [3036509], + 'cmdline': ['kworker/u64:6-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/u64:6-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3036510], + 'cmdline': ['kworker/u64:7-kcryptd-252:0-1'], + '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': 'kworker/u64:7-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037075], + 'cmdline': ['kworker/0:1-cgroup_destroy'], + '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:1-cgroup_destroy', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037152], + 'cmdline': ['kworker/u64:9-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/u64:9-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037261], + '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.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:2-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037370], + 'cmdline': ['kworker/u64:10-kcryptd-252:0-1'], + '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': 'kworker/u64:10-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037371], + 'cmdline': ['kworker/u64:11-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:11-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3037907], + 'cmdline': ['kworker/5:1-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/5:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3039640], + 'cmdline': ['kworker/12: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': 'kworker/12:2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3040407], + 'cmdline': ['kworker/4:1-events'], + '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:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3040591], + 'cmdline': ['kworker/9: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/9:2-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3042047], + 'cmdline': ['kworker/7: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/7:2-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3042611], + 'cmdline': ['kworker/8: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': 'kworker/8:3', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3042649], + 'cmdline': ['kworker/u65: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': 'kworker/u65:2', + 'nice': -20, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3042679], + '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.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/11:0-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3042761], + 'cmdline': ['kworker/u64:12-kcryptd-252:0-1'], + '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/u64:12-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3043088], + 'cmdline': ['kworker/6:1-events'], + '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': 'kworker/6:1-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3043386], + 'cmdline': ['kworker/u64:13-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.08, + 'user': 0.0}, + 'io_counters': [0, 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:13-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3043387], + 'cmdline': ['kworker/u64:14-kcryptd-252:0-1'], + 'cpu_percent': 0, + 'cpu_times': {'children_system': 0.0, + 'children_user': 0.0, + 'iowait': 0.0, + 'system': 0.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': 'kworker/u64:14-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3043575], + 'cmdline': ['kworker/10:0-events'], + '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/10:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3045721], + 'cmdline': ['kworker/1:1-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/1:1-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3045965], + '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.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': 'kworker/u64:15-kcryptd-252:0-1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3046598], + 'cmdline': ['kworker/6:0-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:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'R', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3046819], + 'cmdline': ['kworker/11:1-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:1-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3047843], + 'cmdline': ['kworker/7:1-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/7:1-mm_percpu_wq', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048434], + 'cmdline': ['kworker/14: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/14:1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048436], + 'cmdline': ['kworker/15: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': 'kworker/15:2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048441], + 'cmdline': ['kworker/13: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/13:1', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048445], + 'cmdline': ['kworker/4: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/4:0-events', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048552], + 'cmdline': ['kworker/10: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': 'kworker/10:2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048780], + 'cmdline': ['kworker/0: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': 'kworker/0:2', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + 'username': 'root'}, + {'childrens': [3048781], + 'cmdline': ['kworker/0:3-cgroup_destroy'], + '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:3-cgroup_destroy', + 'nice': 0, + 'nprocs': 1, + 'num_threads': 1, + 'pid': '_', + 'status': 'I', + 'time_since_update': 0.2516055107116699, + '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 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 object + >>> gl.percpu + Return a dict of dict with key= + >>> 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': 22.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': 78.0, + 'user': 1.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 object + >>> gl.system + {'hostname': 'nicolargo-xps15', + 'hr_name': 'Ubuntu 24.04 64bit / Linux 6.11.0-26-generic', + 'linux_distro': 'Ubuntu 24.04', + 'os_name': 'Linux', + 'os_version': '6.11.0-26-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 object + >>> gl.network + Return a dict of dict with key= + >>> gl.network.keys() + ['wlp0s20f3', 'veth620fda1'] + >>> gl.network["wlp0s20f3"] + {'alias': None, + 'bytes_all': 0, + 'bytes_all_gauge': 8061991911, + 'bytes_all_rate_per_sec': 0.0, + 'bytes_recv': 0, + 'bytes_recv_gauge': 6204039145, + 'bytes_recv_rate_per_sec': 0.0, + 'bytes_sent': 0, + 'bytes_sent_gauge': 1857952766, + 'bytes_sent_rate_per_sec': 0.0, + 'interface_name': 'wlp0s20f3', + 'key': 'interface_name', + 'speed': 0, + 'time_since_update': 0.06977963447570801} + +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 object + >>> gl.cpu + {'cpucore': 16, + 'ctx_switches': 1509164271, + 'guest': 0.0, + 'idle': 92.7, + 'interrupts': 814674461, + 'iowait': 0.8, + 'irq': 0.0, + 'nice': 0.0, + 'soft_interrupts': 281158828, + 'steal': 0.0, + 'syscalls': 0, + 'system': 4.3, + 'total': 6.3, + 'user': 2.2} + >>> gl.cpu.keys() + ['total', 'user', 'nice', 'system', 'idle', 'iowait', 'irq', 'steal', 'guest', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls', 'cpucore'] + >>> gl.cpu["total"] + 6.3 + +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 object + >>> gl.amps + Return a dict of dict with key= + >>> 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.14374899864196777} + +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 object + >>> gl.processlist + Return a dict of dict with key= + >>> gl.processlist.keys() + [1827846, 1828815, 1828367, 344538, 9654, 9314, 9738, 9730, 530850, 7367, 1598259, 1828895, 1601041, 2765, 1828151, 9692, 989892, 990436, 2986770, 516128, 8728, 3031795, 1828296, 344413, 344606, 515729, 9734, 1487793, 1488319, 8137, 10697, 3046198, 3368, 3046994, 3047677, 3048024, 1828611, 1827902, 1827918, 1828267, 1827911, 1827905, 344607, 2556756, 3049439, 2442358, 344509, 1828300, 8341, 727, 344729, 3048395, 299076, 7793, 9659, 1828299, 1041237, 2437, 8071, 10425, 9638, 1086491, 8382, 344492, 2779, 7489, 1828319, 8840, 1561526, 2426, 7728, 7581, 299083, 299209, 8101, 7508, 298909, 1, 344416, 1120849, 9791, 1561481, 7532, 2519, 1828152, 7042, 1120396, 344415, 7481, 7062, 1828176, 2820, 847752, 8127, 445239, 7010, 847735, 2417, 2520, 2462, 788, 1134521, 2733, 7064, 7065, 1760787, 8152, 7537, 7723, 8353, 298878, 999564, 7684, 8012, 7511, 8376, 1760744, 7327, 2446, 7076, 982823, 1760860, 7870, 2442126, 7314, 7523, 7516, 2665207, 2628, 2298, 7058, 299080, 3420, 7130, 7571, 299081, 2449, 7602, 3350, 7531, 7971, 7742, 299077, 7462, 7554, 7490, 299082, 7542, 7805, 7570, 2440, 7864, 2420, 2632, 7783, 111279, 7519, 2423, 7764, 7683, 2450, 7544, 7212, 7513, 7759, 7137, 7365, 7324, 1828422, 1828195, 7833, 7547, 7688, 7565, 2299, 2403521, 299079, 1760864, 345099, 3371, 3049435, 344745, 7380, 16589, 2415, 2295, 3253, 2767, 3505, 2961, 2433, 3379, 2581, 2868521, 3394, 3049438, 3257, 2443, 7218, 3252, 2466, 2465, 7292, 7048, 7297, 2509, 1134526, 7059, 344435, 7144, 9484, 298855, 298848, 2759, 2962, 2763, 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, 38, 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, 116, 117, 118, 120, 121, 122, 123, 124, 125, 126, 127, 132, 133, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 148, 149, 151, 152, 153, 161, 172, 181, 182, 207, 210, 212, 240, 242, 244, 266, 268, 269, 270, 271, 272, 273, 366, 371, 372, 373, 374, 375, 450, 455, 456, 618, 623, 624, 625, 631, 667, 668, 797, 982, 986, 987, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1203, 1271, 1306, 1317, 1320, 1321, 1322, 1323, 1381, 1382, 1459, 1466, 1796, 1797, 1798, 1799, 1800, 1801, 1802, 1803, 1804, 1805, 1806, 1807, 1808, 1809, 1842, 1843, 1844, 1845, 1846, 1847, 1848, 1849, 1886, 1887, 1888, 1889, 1890, 1891, 1892, 1893, 1894, 1895, 1896, 1897, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 1924, 1925, 1926, 1927, 1928, 1929, 1930, 1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942, 1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1962, 1963, 1964, 1966, 1970, 1971, 1972, 1973, 1974, 1975, 1976, 1977, 1978, 1980, 1981, 1982, 1983, 1984, 1985, 1987, 1988, 1992, 3311, 3312, 3313, 3762, 4554, 4585, 1760757, 2404016, 2426002, 2439914, 2441839, 2441865, 2442150, 2519125, 2530070, 2563843, 2671682, 2708146, 2723662, 2733585, 2858915, 2865794, 2877566, 2897676, 2905215, 2906922, 2931708, 2931709, 2949915, 2957483, 2958454, 2964207, 3025799, 3033224, 3033335, 3033859, 3034873, 3035674, 3035874, 3036509, 3036510, 3037075, 3037152, 3037261, 3037370, 3037371, 3037907, 3039640, 3040407, 3040591, 3042047, 3042611, 3042649, 3042679, 3042761, 3043088, 3043386, 3043387, 3043575, 3045721, 3045965, 3046598, 3046819, 3047843, 3048434, 3048436, 3048441, 3048445, 3048552, 3048780, 3048781] + >>> gl.processlist["1827846"] + {'cmdline': ['/proc/self/exe', + '--type=utility', + '--utility-sub-type=node.mojom.NodeService', + '--lang=en-US', + '--service-sandbox-type=none', + '--no-sandbox', + '--dns-result-order=ipv4first', + '--experimental-network-inspection', + '--inspect-port=0', + '--crashpad-handler-pid=344435', + '--enable-crash-reporter=864d4bb7-dd20-4851-830f-29e81dd93517,no_channel', + '--user-data-dir=/home/nicolargo/.config/Code', + '--standard-schemes=vscode-webview,vscode-file', + '--secure-schemes=vscode-webview,vscode-file', + '--cors-schemes=vscode-webview,vscode-file', + '--fetch-schemes=vscode-webview,vscode-file', + '--service-worker-schemes=vscode-webview', + '--code-cache-schemes=vscode-webview,vscode-file', + '--shared-files=v8_context_snapshot_data:100', + '--field-trial-handle=3,i,15766680623767121638,17539991383901857239,262144', + '--enable-features=DocumentPolicyIncludeJSCallStacksInCrashReports,EarlyEstablishGpuChannel,EstablishGpuChannelAsync', + '--disable-features=CalculateNativeWinOcclusion,SpareRendererForSitePerProcess', + '--variations-seed-version'], + 'cpu_percent': 0.0, + 'cpu_times': {'children_system': 2680.78, + 'children_user': 337.11, + 'iowait': 0.0, + 'system': 2147.57, + 'user': 5663.85}, + 'gids': {'effective': 1000, 'real': 1000, 'saved': 1000}, + 'io_counters': [795103232, + 1112543232, + 795103232, + 1112543232, + 1, + 60156928, + 487424, + 60156928, + 487424, + 1, + 321114112, + 413696, + 321114112, + 413696, + 1, + 73252864, + 0, + 73252864, + 0, + 1, + 9914368, + 0, + 9914368, + 0, + 1, + 3016840192, + 3984044032, + 3016840192, + 3984044032, + 1, + 99940352, + 2323279872, + 99940352, + 2323279872, + 1, + 5242880, + 0, + 5242880, + 0, + 1, + 4038656, + 0, + 4038656, + 0, + 1, + 2678784, + 0, + 2678784, + 0, + 1, + 1073152, + 0, + 1073152, + 0, + 1, + 2113536, + 0, + 2113536, + 0, + 1, + 3657728, + 0, + 3657728, + 0, + 1, + 112676864, + 0, + 112676864, + 0, + 1, + 27665408, + 0, + 27665408, + 0, + 1, + 8881152, + 0, + 8881152, + 0, + 1, + 34509824, + 24477696, + 34509824, + 24477696, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1, + 60156928, + 487424, + 60156928, + 487424, + 1, + 321114112, + 413696, + 321114112, + 413696, + 1, + 73252864, + 0, + 73252864, + 0, + 1, + 9914368, + 0, + 9914368, + 0, + 1, + 3016840192, + 3984044032, + 3016840192, + 3984044032, + 1, + 99940352, + 2323279872, + 99940352, + 2323279872, + 1, + 5242880, + 0, + 5242880, + 0, + 1, + 4038656, + 0, + 4038656, + 0, + 1, + 2678784, + 0, + 2678784, + 0, + 1, + 1073152, + 0, + 1073152, + 0, + 1, + 2113536, + 0, + 2113536, + 0, + 1, + 3657728, + 0, + 3657728, + 0, + 1, + 112676864, + 0, + 112676864, + 0, + 1, + 27665408, + 0, + 27665408, + 0, + 1, + 8881152, + 0, + 8881152, + 0, + 1, + 34509824, + 24477696, + 34509824, + 24477696, + 1, + 0, + 0, + 0, + 0, + 1, + 0, + 0, + 0, + 0, + 1], + 'key': 'pid', + 'memory_info': {'data': 3908935680, + 'dirty': 0, + 'lib': 0, + 'rss': 1972953088, + 'shared': 104488960, + 'text': 142934016, + 'vms': 1526208933888}, + 'memory_percent': 12.014176228104679, + 'name': 'code', + 'nice': 0, + 'num_threads': 65, + 'pid': 1827846, + 'status': 'S', + 'time_since_update': 0.2516055107116699, + '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 object + >>> gl.load + {'cpucore': 16, + 'min1': 0.857421875, + 'min15': 1.06982421875, + 'min5': 0.85693359375} + >>> gl.load.keys() + ['min1', 'min5', 'min15', 'cpucore'] + >>> gl.load["min1"] + 0.857421875 + +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 object + >>> gl.sensors + Return a dict of dict with key=