.. _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': 522801317, 'guest': 0.0, 'idle': 93.6, 'interrupts': 244753365, 'iowait': 0.6, 'irq': 0.0, 'nice': 0.0, 'soft_interrupts': 110566424, 'steal': 0.0, 'syscalls': 0, 'system': 3.6, 'total': 7.5, 'user': 2.1} >>> gl.cpu["total"] 7.5 If the stats return a list of items (like network interfaces or processes), you can access them by their name: .. code-block:: python ['wlp0s20f3'] >>> gl.network["wlp0s20f3"] {'alias': None, 'bytes_all': 0, 'bytes_all_gauge': 3988463966, 'bytes_all_rate_per_sec': 0.0, 'bytes_recv': 0, 'bytes_recv_gauge': 2826239267, 'bytes_recv_rate_per_sec': 0.0, 'bytes_sent': 0, 'bytes_sent_gauge': 1162224699, 'bytes_sent_rate_per_sec': 0.0, 'interface_name': 'wlp0s20f3', 'key': 'interface_name', 'speed': 0, 'time_since_update': 0.09191536903381348} 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 [] 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 [] 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': 226146975232, 'read_count': 29962752, 'read_latency': 0, 'read_time': 2339383, 'write_bytes': 35262227456, 'write_count': 1673203, 'write_latency': 0, 'write_time': 2482185} 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. * read_time: Time spent reading. * write_time: Time spent writing. * read_latency: Mean time spent reading per operation. * write_latency: Mean time spent writing per operation. Diskio limits: .. code-block:: python >>> gl.diskio.limits {'diskio_disable': ['False'], 'diskio_hide': ['loop.*', '/dev/loop.*'], 'diskio_hide_zero': ['False'], 'diskio_rx_latency_careful': 10.0, 'diskio_rx_latency_critical': 50.0, 'diskio_rx_latency_warning': 20.0, 'diskio_tx_latency_careful': 10.0, 'diskio_tx_latency_critical': 50.0, 'diskio_tx_latency_warning': 20.0, 'history_size': 1200.0} Glances containers ------------------ Containers stats: .. code-block:: python >>> gl.containers Return a object >>> gl.containers [] Containers fields description: * name: Container name * id: Container ID * image: Container image * status: Container status * created: Container creation date * command: Container command * cpu_percent: Container CPU consumption * memory_inactive_file: Container memory inactive file * memory_limit: Container memory limit * memory_usage: Container memory usage * io_rx: Container IO bytes read rate * io_wx: Container IO bytes write rate * network_rx: Container network RX bitrate * network_tx: Container network TX bitrate * uptime: Container uptime * engine: Container engine (Docker and Podman are currently supported) * pod_name: Pod name (only with Podman) * pod_id: Pod ID (only with Podman) Containers limits: .. code-block:: python >>> gl.containers.limits {'containers_all': ['False'], 'containers_disable': ['False'], 'containers_max_name_size': 20.0, 'history_size': 1200.0} Glances processcount -------------------- Processcount stats: .. code-block:: python >>> gl.processcount Return a object >>> gl.processcount {'pid_max': 0, 'running': 1, 'sleeping': 418, 'thread': 2181, 'total': 557} >>> gl.processcount.keys() ['total', 'running', 'sleeping', 'thread', 'pid_max'] >>> gl.processcount["total"] 557 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': [521626, 13677, 519191, 13672, 13673, 13674], 'cmdline': ['python'], 'cpu_percent': 77.5, 'cpu_times': {'children_system': 0.28, 'children_user': 0.09, 'system': 11.75, 'user': 51.4}, 'io_counters': [0, 8192, 0, 8192, 1, 173678592, 32735232, 173678592, 32735232, 1, 118784, 20480, 118784, 20480, 1, 26533888, 0, 26533888, 0, 1, 25726976, 0, 25726976, 0, 1, 4841472, 0, 4841472, 0, 1, 173678592, 32735232, 173678592, 32735232, 1, 118784, 20480, 118784, 20480, 1, 26533888, 0, 26533888, 0, 1, 25726976, 0, 25726976, 0, 1, 4841472, 0, 4841472, 0, 1], 'memory_info': {'data': 556605440, 'rss': 340365312, 'shared': 71520256, 'text': 18161664, 'vms': 2637422592}, 'memory_percent': 2.0726454795242173, 'name': 'python', 'nice': 0, 'nprocs': 6, 'num_threads': 27, 'pid': '_', 'status': '_', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [127], 'cmdline': ['irq/9-acpi'], 'cpu_percent': 9.6, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 75.07, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/9-acpi', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [13219, 13135, 14233, 433109, 15276, 433108, 13023, 433110, 13229, 433165, 433281, 13230, 13175, 13538, 13611, 14265, 13093, 13026, 13025], 'cmdline': ['code'], 'cpu_percent': 3.3, 'cpu_times': {'children_system': 996.0199999999999, 'children_user': 345.53, 'system': 1084.4699999999996, 'user': 4333.85}, 'io_counters': [806231040, 600096768, 806231040, 600096768, 1, 105151488, 172032, 105151488, 172032, 1, 76540928, 229376, 76540928, 229376, 1, 40957952, 0, 40957952, 0, 1, 46699520, 0, 46699520, 0, 1, 35828736, 8192, 35828736, 8192, 1, 133182464, 103788544, 133182464, 103788544, 1, 14203904, 0, 14203904, 0, 1, 56496128, 598388736, 56496128, 598388736, 1, 56620032, 13991936, 56620032, 13991936, 1, 3792896, 0, 3792896, 0, 1, 82425856, 0, 82425856, 0, 1, 16920576, 0, 16920576, 0, 1, 1613824, 0, 1613824, 0, 1, 2231296, 0, 2231296, 0, 1, 10067968, 0, 10067968, 0, 1, 13964288, 11309056, 13964288, 11309056, 1, 32304128, 57344, 32304128, 57344, 1, 898048, 0, 898048, 0, 1, 105151488, 172032, 105151488, 172032, 1, 76540928, 229376, 76540928, 229376, 1, 40957952, 0, 40957952, 0, 1, 46699520, 0, 46699520, 0, 1, 35828736, 8192, 35828736, 8192, 1, 133182464, 103788544, 133182464, 103788544, 1, 14203904, 0, 14203904, 0, 1, 56496128, 598388736, 56496128, 598388736, 1, 56620032, 13991936, 56620032, 13991936, 1, 3792896, 0, 3792896, 0, 1, 82425856, 0, 82425856, 0, 1, 16920576, 0, 16920576, 0, 1, 1613824, 0, 1613824, 0, 1, 2231296, 0, 2231296, 0, 1, 10067968, 0, 10067968, 0, 1, 13964288, 11309056, 13964288, 11309056, 1, 32304128, 57344, 32304128, 57344, 1, 898048, 0, 898048, 0, 1], 'memory_info': {'data': 16346144768, 'rss': 4231962624, 'shared': 940527616, 'text': 2715746304, 'vms': 22609418031104}, 'memory_percent': 25.770423403631227, 'name': 'code', 'nice': 0, 'nprocs': 19, 'num_threads': 327, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [264075, 264380, 328820, 390586, 264073, 389794, 450993, 451289], 'cmdline': ['Isolated Web Co'], 'cpu_percent': 3.3, 'cpu_times': {'system': 151.16, 'user': 1017.2700000000001}, 'io_counters': [138240, 0, 138240, 0, 1, 228352, 0, 228352, 0, 1, 863232, 8138752, 863232, 8138752, 1, 251904, 0, 251904, 0, 1, 5120, 0, 5120, 0, 1, 53248, 0, 53248, 0, 1, 0, 0, 0, 0, 1, 73728, 0, 73728, 0, 1, 228352, 0, 228352, 0, 1, 863232, 8138752, 863232, 8138752, 1, 251904, 0, 251904, 0, 1, 5120, 0, 5120, 0, 1, 53248, 0, 53248, 0, 1, 0, 0, 0, 0, 1, 73728, 0, 73728, 0, 1], 'memory_info': {'data': 3498315776, 'rss': 2401456128, 'shared': 1003872256, 'text': 6946816, 'vms': 24276422656}, 'memory_percent': 14.623602971547612, 'name': 'Isolated Web Co', 'nice': 0, 'nprocs': 8, 'num_threads': 241, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263183], 'cmdline': ['firefox'], 'cpu_percent': 0, 'cpu_times': {'children_system': 388.51, 'children_user': 2048.88, 'iowait': 0.0, 'system': 851.01, 'user': 2856.33}, 'io_counters': [506588160, 4051955712, 506588160, 4051955712, 1], 'memory_info': {'data': 1107865600, 'dirty': 0, 'lib': 0, 'rss': 727539712, 'shared': 297889792, 'text': 868352, 'vms': 30401253376}, 'memory_percent': 4.430333650601712, 'name': 'firefox', 'nice': 0, 'nprocs': 1, 'num_threads': 152, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263845], 'cmdline': ['WebExtensions'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 137.75, 'user': 867.68}, 'io_counters': [159744, 0, 159744, 0, 1], 'memory_info': {'data': 897208320, 'dirty': 0, 'lib': 0, 'rss': 515530752, 'shared': 116248576, 'text': 868352, 'vms': 25116372992}, 'memory_percent': 3.139310749411856, 'name': 'WebExtensions', 'nice': 0, 'nprocs': 1, 'num_threads': 28, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5951], 'cmdline': ['gnome-shell'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1473.2, 'children_user': 5589.24, 'iowait': 0.0, 'system': 1020.89, 'user': 2047.41}, 'io_counters': [1588665344, 5867323392, 1588665344, 5867323392, 1], 'memory_info': {'data': 509669376, 'dirty': 0, 'lib': 0, 'rss': 333389824, 'shared': 145207296, 'text': 8192, 'vms': 6074953728}, 'memory_percent': 2.0301684315967377, 'name': 'gnome-shell', 'nice': 0, 'nprocs': 1, 'num_threads': 40, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [44673], 'cmdline': ['nautilus'], 'cpu_percent': 0, 'cpu_times': {'children_system': 2.71, 'children_user': 0.1, 'iowait': 0.0, 'system': 23.86, 'user': 73.08}, 'io_counters': [47099904, 36671488, 47099904, 36671488, 1], 'memory_info': {'data': 465481728, 'dirty': 0, 'lib': 0, 'rss': 289837056, 'shared': 100286464, 'text': 720896, 'vms': 2970677248}, 'memory_percent': 1.7649550137383194, 'name': 'nautilus', 'nice': 0, 'nprocs': 1, 'num_threads': 26, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6340], 'cmdline': ['dropbox'], 'cpu_percent': 0, 'cpu_times': {'children_system': 7.68, 'children_user': 3.29, 'iowait': 0.0, 'system': 23.95, 'user': 126.54}, 'io_counters': [263651328, 33124352, 263651328, 33124352, 1], 'memory_info': {'data': 912953344, 'dirty': 0, 'lib': 0, 'rss': 239697920, 'shared': 55689216, 'text': 4096, 'vms': 7261069312}, 'memory_percent': 1.4596340838027508, 'name': 'dropbox', 'nice': 0, 'nprocs': 1, 'num_threads': 91, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6593], 'cmdline': ['xdg-desktop-portal-gnome'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.05, 'user': 25.89}, 'io_counters': [8892416, 5234688, 8892416, 5234688, 1], 'memory_info': {'data': 248283136, 'dirty': 0, 'lib': 0, 'rss': 219729920, 'shared': 88109056, 'text': 245760, 'vms': 2086805504}, 'memory_percent': 1.3380394809569134, 'name': 'xdg-desktop-portal-gnome', 'nice': 0, 'nprocs': 1, 'num_threads': 10, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263427], 'cmdline': ['Privileged Cont'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 14.47, 'user': 55.74}, 'io_counters': [2535424, 0, 2535424, 0, 1], 'memory_info': {'data': 180551680, 'dirty': 0, 'lib': 0, 'rss': 217522176, 'shared': 118362112, 'text': 868352, 'vms': 2684993536}, 'memory_percent': 1.3245954828166249, 'name': 'Privileged Cont', 'nice': 0, 'nprocs': 1, 'num_threads': 29, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [14662], 'cmdline': ['protonvpn-app'], 'cpu_percent': 0, 'cpu_times': {'children_system': 22.64, 'children_user': 9.2, 'iowait': 0.0, 'system': 6.72, 'user': 59.88}, 'io_counters': [51974144, 728199168, 51974144, 728199168, 1], 'memory_info': {'data': 358989824, 'dirty': 0, 'lib': 0, 'rss': 204795904, 'shared': 49082368, 'text': 3026944, 'vms': 2795896832}, 'memory_percent': 1.2470991892695444, 'name': 'protonvpn-app', 'nice': 0, 'nprocs': 1, 'num_threads': 36, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2774], 'cmdline': ['multipassd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.41, 'children_user': 0.02, 'iowait': 0.0, 'system': 18.33, 'user': 32.36}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1192878080, 'dirty': 0, 'lib': 0, 'rss': 197230592, 'shared': 23437312, 'text': 13213696, 'vms': 3493089280}, 'memory_percent': 1.201030423842619, 'name': 'multipassd', 'nice': 0, 'nprocs': 1, 'num_threads': 25, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [285997], 'cmdline': ['update-manager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.64, 'children_user': 0.11, 'iowait': 0.0, 'system': 1.65, 'user': 38.43}, 'io_counters': [3198976, 565248, 3198976, 565248, 1], 'memory_info': {'data': 219770880, 'dirty': 0, 'lib': 0, 'rss': 139239424, 'shared': 39542784, 'text': 3026944, 'vms': 765640704}, 'memory_percent': 0.8478947546956719, 'name': 'update-manager', 'nice': 10, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263432], 'cmdline': ['RDD Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 22.63, 'user': 28.93}, 'io_counters': [8626176, 0, 8626176, 0, 1], 'memory_info': {'data': 233459712, 'dirty': 0, 'lib': 0, 'rss': 134533120, 'shared': 102019072, 'text': 868352, 'vms': 827428864}, 'memory_percent': 0.8192358421480066, 'name': 'RDD Process', 'nice': 0, 'nprocs': 1, 'num_threads': 19, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [309950], 'cmdline': ['evince'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.47, 'user': 2.29}, 'io_counters': [0, 479232, 0, 479232, 1], 'memory_info': {'data': 149786624, 'dirty': 0, 'lib': 0, 'rss': 124100608, 'shared': 57561088, 'text': 241664, 'vms': 1350098944}, 'memory_percent': 0.7557073388765507, 'name': 'evince', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6141], 'cmdline': ['evolution-alarm-notify'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.19, 'user': 0.63}, 'io_counters': [5906432, 0, 5906432, 0, 1], 'memory_info': {'data': 81141760, 'dirty': 0, 'lib': 0, 'rss': 95977472, 'shared': 83394560, 'text': 20480, 'vms': 1019555840}, 'memory_percent': 0.5844522531043413, 'name': 'evolution-alarm-notify', 'nice': 0, 'nprocs': 1, 'num_threads': 8, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [518540], 'cmdline': ['Isolated Servic'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.08, 'user': 0.11}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 59752448, 'dirty': 0, 'lib': 0, 'rss': 93687808, 'shared': 76959744, 'text': 868352, 'vms': 2511515648}, 'memory_percent': 0.5705094053113521, 'name': 'Isolated Servic', 'nice': 0, 'nprocs': 1, 'num_threads': 30, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [12677], 'cmdline': ['terminator'], 'cpu_percent': 0, 'cpu_times': {'children_system': 44.74, 'children_user': 64.06, 'iowait': 0.0, 'system': 4.12, 'user': 42.12}, 'io_counters': [201321472, 1847296, 201321472, 1847296, 1], 'memory_info': {'data': 100204544, 'dirty': 0, 'lib': 0, 'rss': 87613440, 'shared': 57978880, 'text': 3026944, 'vms': 748822528}, 'memory_percent': 0.5335197035635824, 'name': 'terminator', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [7127], 'cmdline': ['mutter-x11-frames'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.51, 'user': 5.01}, 'io_counters': [4722688, 0, 4722688, 0, 1], 'memory_info': {'data': 119635968, 'dirty': 0, 'lib': 0, 'rss': 85458944, 'shared': 75714560, 'text': 12288, 'vms': 1194106880}, 'memory_percent': 0.5203999576975494, 'name': 'mutter-x11-frames', 'nice': 0, 'nprocs': 1, 'num_threads': 10, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [7025], 'cmdline': ['Xwayland'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.01, 'iowait': 0.0, 'system': 77.73, 'user': 91.36}, 'io_counters': [19320832, 8192, 19320832, 8192, 1], 'memory_info': {'data': 69828608, 'dirty': 0, 'lib': 0, 'rss': 85299200, 'shared': 72044544, 'text': 1691648, 'vms': 617140224}, 'memory_percent': 0.5194272008747828, 'name': 'Xwayland', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [519674, 518807, 520817], 'cmdline': ['Web Content'], 'cpu_percent': 0, 'cpu_times': {'system': 0.16, 'user': 0.1}, 'io_counters': [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 100954112, 'rss': 250966016, 'shared': 207843328, 'text': 2605056, 'vms': 7456182272}, 'memory_percent': 1.5282508535317558, 'name': 'Web Content', 'nice': 0, 'nprocs': 3, 'num_threads': 57, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6061], 'cmdline': ['evolution-source-registry'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.43, 'user': 1.45}, 'io_counters': [20008960, 0, 20008960, 0, 1], 'memory_info': {'data': 87003136, 'dirty': 0, 'lib': 0, 'rss': 79077376, 'shared': 73392128, 'text': 45056, 'vms': 1486778368}, 'memory_percent': 0.48153956975215156, 'name': 'evolution-source-registry', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [264065], 'cmdline': ['Utility Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 18.44, 'user': 37.25}, 'io_counters': [1145856, 0, 1145856, 0, 1], 'memory_info': {'data': 62898176, 'dirty': 0, 'lib': 0, 'rss': 65884160, 'shared': 53288960, 'text': 868352, 'vms': 375812096}, 'memory_percent': 0.4011998331846761, 'name': 'Utility Process', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [7064], 'cmdline': ['gsd-xsettings'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.02, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.56, 'user': 1.27}, 'io_counters': [7794688, 0, 7794688, 0, 1], 'memory_info': {'data': 71020544, 'dirty': 0, 'lib': 0, 'rss': 61579264, 'shared': 58724352, 'text': 32768, 'vms': 794755072}, 'memory_percent': 0.37498528393524533, 'name': 'gsd-xsettings', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [3340], 'cmdline': ['dockerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.57, 'children_user': 0.28, 'iowait': 0.0, 'system': 3.74, 'user': 14.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 718331904, 'dirty': 0, 'lib': 0, 'rss': 60436480, 'shared': 28942336, 'text': 32280576, 'vms': 7098445824}, 'memory_percent': 0.3680263312800682, 'name': 'dockerd', 'nice': 0, 'nprocs': 1, 'num_threads': 76, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518946, 6075, 6545], 'cmdline': ['gjs'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.01, 'children_user': 0.01, 'system': 0.15000000000000002, 'user': 0.61}, 'io_counters': [147456, 0, 147456, 0, 1, 2412544, 0, 2412544, 0, 1, 0, 0, 0, 0, 1, 2412544, 0, 2412544, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 197570560, 'rss': 99258368, 'shared': 79712256, 'text': 24576, 'vms': 9079484416}, 'memory_percent': 0.6044311816950113, 'name': 'gjs', 'nice': 0, 'nprocs': 3, 'num_threads': 37, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263401], 'cmdline': ['Socket Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.09, 'user': 0.13}, 'io_counters': [121856, 0, 121856, 0, 1], 'memory_info': {'data': 15724544, 'dirty': 0, 'lib': 0, 'rss': 57217024, 'shared': 47517696, 'text': 868352, 'vms': 232738816}, 'memory_percent': 0.3484215399289239, 'name': 'Socket Process', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6363], 'cmdline': ['evolution-calendar-factory'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.67, 'user': 7.1}, 'io_counters': [14704640, 4939776, 14704640, 4939776, 1], 'memory_info': {'data': 196173824, 'dirty': 0, 'lib': 0, 'rss': 44969984, 'shared': 29913088, 'text': 45056, 'vms': 2400088064}, 'memory_percent': 0.2738435168501436, 'name': 'evolution-calendar-factory', 'nice': 0, 'nprocs': 1, 'num_threads': 16, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [11749], 'cmdline': ['fwupd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.08, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.06, 'user': 7.13}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 175894528, 'dirty': 0, 'lib': 0, 'rss': 44699648, 'shared': 36057088, 'text': 36864, 'vms': 611872768}, 'memory_percent': 0.2721973129962307, 'name': 'fwupd', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6527], 'cmdline': ['tracker-miner-fs-3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 4.2, 'children_user': 98.21, 'iowait': 0.0, 'system': 4.1, 'user': 23.24}, 'io_counters': [1714851840, 792084480, 1714851840, 792084480, 1], 'memory_info': {'data': 150409216, 'dirty': 0, 'lib': 0, 'rss': 39317504, 'shared': 18616320, 'text': 151552, 'vms': 981499904}, 'memory_percent': 0.2394228908137834, 'name': 'tracker-miner-fs-3', 'nice': 19, 'nprocs': 1, 'num_threads': 8, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2784], 'cmdline': ['containerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.18, 'children_user': 0.15, 'iowait': 0.0, 'system': 23.1, 'user': 33.57}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 221339648, 'dirty': 0, 'lib': 0, 'rss': 30797824, 'shared': 15323136, 'text': 20078592, 'vms': 2753478656}, 'memory_percent': 0.18754252693289275, 'name': 'containerd', 'nice': 0, 'nprocs': 1, 'num_threads': 20, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2443], 'cmdline': ['snapd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.21, 'children_user': 0.07, 'iowait': 0.0, 'system': 5.96, 'user': 18.43}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 252592128, 'dirty': 0, 'lib': 0, 'rss': 29282304, 'shared': 12668928, 'text': 12349440, 'vms': 2953490432}, 'memory_percent': 0.17831380835792662, 'name': 'snapd', 'nice': 0, 'nprocs': 1, 'num_threads': 23, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [8785], 'cmdline': ['update-notifier'], 'cpu_percent': 0, 'cpu_times': {'children_system': 2.3, 'children_user': 5.37, 'iowait': 0.0, 'system': 0.78, 'user': 0.96}, 'io_counters': [91078656, 57344, 91078656, 57344, 1], 'memory_info': {'data': 66473984, 'dirty': 0, 'lib': 0, 'rss': 29245440, 'shared': 24035328, 'text': 40960, 'vms': 583827456}, 'memory_percent': 0.17808932601421124, 'name': 'update-notifier', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6279], 'cmdline': ['goa-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.99, 'user': 3.83}, 'io_counters': [1748992, 0, 1748992, 0, 1], 'memory_info': {'data': 83140608, 'dirty': 0, 'lib': 0, 'rss': 28434432, 'shared': 22867968, 'text': 24576, 'vms': 980217856}, 'memory_percent': 0.1731507144524726, 'name': 'goa-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [742], 'cmdline': ['systemd-journald'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.62, 'user': 2.27}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 26910720, 'dirty': 0, 'lib': 0, 'rss': 27807744, 'shared': 26890240, 'text': 114688, 'vms': 77709312}, 'memory_percent': 0.16933451460931093, 'name': 'systemd-journald', 'nice': -1, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6395], 'cmdline': ['evolution-addressbook-factory'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.17, 'user': 0.5}, 'io_counters': [3567616, 36864, 3567616, 36864, 1], 'memory_info': {'data': 87826432, 'dirty': 0, 'lib': 0, 'rss': 27078656, 'shared': 25636864, 'text': 4096, 'vms': 778469376}, 'memory_percent': 0.16489475270027315, 'name': 'evolution-addressbook-factory', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5638], 'cmdline': ['pipewire-pulse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.96, 'user': 2.99}, 'io_counters': [1679360, 0, 1679360, 0, 1], 'memory_info': {'data': 31334400, 'dirty': 0, 'lib': 0, 'rss': 23224320, 'shared': 10903552, 'text': 4096, 'vms': 126058496}, 'memory_percent': 0.14142387654069716, 'name': 'pipewire-pulse', 'nice': -11, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6053], 'cmdline': ['gnome-shell-calendar-server'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.26, 'user': 1.79}, 'io_counters': [8507392, 0, 8507392, 0, 1], 'memory_info': {'data': 89362432, 'dirty': 0, 'lib': 0, 'rss': 20574208, 'shared': 17977344, 'text': 16384, 'vms': 1091321856}, 'memory_percent': 0.12528609027582394, 'name': 'gnome-shell-calendar-server', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [275256], 'cmdline': ['cups-browsed'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.08, 'user': 0.16}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 27574272, 'dirty': 0, 'lib': 0, 'rss': 20406272, 'shared': 17522688, 'text': 118784, 'vms': 274976768}, 'memory_percent': 0.12426344848778717, 'name': 'cups-browsed', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'cups-browsed'}, {'childrens': [2524], 'cmdline': ['NetworkManager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.01, 'children_user': 0.13, 'iowait': 0.0, 'system': 4.76, 'user': 9.29}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 37978112, 'dirty': 0, 'lib': 0, 'rss': 18890752, 'shared': 16007168, 'text': 2555904, 'vms': 346365952}, 'memory_percent': 0.11503472991282104, 'name': 'NetworkManager', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6111], 'cmdline': ['gsd-power'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.89, 'user': 3.54}, 'io_counters': [978944, 0, 978944, 0, 1], 'memory_info': {'data': 54571008, 'dirty': 0, 'lib': 0, 'rss': 18214912, 'shared': 16248832, 'text': 45056, 'vms': 537079808}, 'memory_percent': 0.11091922027803884, 'name': 'gsd-power', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6263], 'cmdline': ['ibus-extension-gtk3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.03, 'user': 11.58}, 'io_counters': [4640768, 0, 4640768, 0, 1], 'memory_info': {'data': 53653504, 'dirty': 0, 'lib': 0, 'rss': 18202624, 'shared': 13520896, 'text': 81920, 'vms': 431816704}, 'memory_percent': 0.1108443928301337, 'name': 'ibus-extension-gtk3', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6110], 'cmdline': ['gsd-media-keys'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.37, 'user': 1.29}, 'io_counters': [368640, 0, 368640, 0, 1], 'memory_info': {'data': 71360512, 'dirty': 0, 'lib': 0, 'rss': 17862656, 'shared': 16158720, 'text': 102400, 'vms': 760266752}, 'memory_percent': 0.1087741667714251, 'name': 'gsd-media-keys', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6731], 'cmdline': ['xdg-desktop-portal-gtk'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.53, 'user': 0.95}, 'io_counters': [1351680, 0, 1351680, 0, 1], 'memory_info': {'data': 49008640, 'dirty': 0, 'lib': 0, 'rss': 17268736, 'shared': 14778368, 'text': 135168, 'vms': 428806144}, 'memory_percent': 0.10515750678934377, 'name': 'xdg-desktop-portal-gtk', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5895, 5781], 'cmdline': ['gnome-session-binary'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.2, 'children_user': 0.37, 'system': 0.29000000000000004, 'user': 0.8200000000000001}, 'io_counters': [10375168, 4096, 10375168, 4096, 1, 1081344, 0, 1081344, 0, 1, 1081344, 0, 1081344, 0, 1], 'memory_info': {'data': 88784896, 'rss': 29794304, 'shared': 28352512, 'text': 303104, 'vms': 915095552}, 'memory_percent': 0.18143161868730706, 'name': 'gnome-session-binary', 'nice': 0, 'nprocs': 2, 'num_threads': 9, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [1, 5615], 'cmdline': ['systemd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1829.05, 'children_user': 9322.449999999999, 'system': 8.28, 'user': 18.939999999999998}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 8986624, 'rss': 29540352, 'shared': 19226624, 'text': 90112, 'vms': 47677440}, 'memory_percent': 0.17988518476393436, 'name': 'systemd', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': '_'}, {'childrens': [2472], 'cmdline': ['virtlogd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1241088, 'dirty': 0, 'lib': 0, 'rss': 15347712, 'shared': 13643776, 'text': 40960, 'vms': 75591680}, 'memory_percent': 0.09345948243350834, 'name': 'virtlogd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [7120], 'cmdline': ['ibus-x11'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.08, 'user': 0.28}, 'io_counters': [462848, 0, 462848, 0, 1], 'memory_info': {'data': 32051200, 'dirty': 0, 'lib': 0, 'rss': 15245312, 'shared': 13783040, 'text': 77824, 'vms': 273600512}, 'memory_percent': 0.09283592036763223, 'name': 'ibus-x11', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [13811], 'cmdline': ['ruff'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.55, 'user': 3.19}, 'io_counters': [8318976, 0, 8318976, 0, 1], 'memory_info': {'data': 120455168, 'dirty': 0, 'lib': 0, 'rss': 14946304, 'shared': 8925184, 'text': 25485312, 'vms': 1097175040}, 'memory_percent': 0.09101511913527406, 'name': 'ruff', 'nice': 0, 'nprocs': 1, 'num_threads': 9, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6145], 'cmdline': ['gsd-wacom'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.23}, 'io_counters': [94208, 0, 94208, 0, 1], 'memory_info': {'data': 45596672, 'dirty': 0, 'lib': 0, 'rss': 14852096, 'shared': 12886016, 'text': 12288, 'vms': 422977536}, 'memory_percent': 0.09044144203466806, 'name': 'gsd-wacom', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5636], 'cmdline': ['wireplumber'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.27, 'user': 1.42}, 'io_counters': [1921024, 266240, 1921024, 266240, 1], 'memory_info': {'data': 54837248, 'dirty': 0, 'lib': 0, 'rss': 14438400, 'shared': 11948032, 'text': 8192, 'vms': 416292864}, 'memory_percent': 0.08792225128852865, 'name': 'wireplumber', 'nice': -11, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6100], 'cmdline': ['gsd-color'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.17, 'user': 0.36}, 'io_counters': [114688, 0, 114688, 0, 1], 'memory_info': {'data': 45182976, 'dirty': 0, 'lib': 0, 'rss': 14356480, 'shared': 12914688, 'text': 24576, 'vms': 423747584}, 'memory_percent': 0.08742340163582778, 'name': 'gsd-color', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2435], 'cmdline': ['polkitd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.45, 'user': 4.18}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 48943104, 'dirty': 0, 'lib': 0, 'rss': 14053376, 'shared': 8830976, 'text': 65536, 'vms': 402452480}, 'memory_percent': 0.08557765792083456, 'name': 'polkitd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'polkitd'}, {'childrens': [2464], 'cmdline': ['udisksd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.69, 'user': 1.39}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 54521856, 'dirty': 0, 'lib': 0, 'rss': 13963264, 'shared': 12259328, 'text': 319488, 'vms': 482267136}, 'memory_percent': 0.08502892330286359, 'name': 'udisksd', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6105], 'cmdline': ['gsd-keyboard'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.22}, 'io_counters': [24576, 0, 24576, 0, 1], 'memory_info': {'data': 45027328, 'dirty': 0, 'lib': 0, 'rss': 13787136, 'shared': 12345344, 'text': 12288, 'vms': 421982208}, 'memory_percent': 0.08395639654955672, 'name': 'gsd-keyboard', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6304], 'cmdline': ['gsd-printer'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.06}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43978752, 'dirty': 0, 'lib': 0, 'rss': 13733888, 'shared': 12292096, 'text': 12288, 'vms': 426344448}, 'memory_percent': 0.08363214427530116, 'name': 'gsd-printer', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2429], 'cmdline': ['gnome-remote-desktop-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.05}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 44310528, 'dirty': 0, 'lib': 0, 'rss': 13672448, 'shared': 13148160, 'text': 352256, 'vms': 449748992}, 'memory_percent': 0.0832580070357755, 'name': 'gnome-remote-desktop-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'gnome-remote-desktop'}, {'childrens': [6575], 'cmdline': ['xdg-desktop-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.64, 'children_user': 0.59, 'iowait': 0.0, 'system': 1.08, 'user': 1.98}, 'io_counters': [1768448, 0, 1768448, 0, 1], 'memory_info': {'data': 87007232, 'dirty': 0, 'lib': 0, 'rss': 13393920, 'shared': 11767808, 'text': 450560, 'vms': 718876672}, 'memory_percent': 0.08156191821659255, 'name': 'xdg-desktop-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2469], 'cmdline': ['virtlockd'], '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': 1241088, 'dirty': 0, 'lib': 0, 'rss': 13377536, 'shared': 13377536, 'text': 40960, 'vms': 75587584}, 'memory_percent': 0.08146214828605236, 'name': 'virtlockd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6336], 'cmdline': ['gvfs-gphoto2-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.12}, 'io_counters': [4491264, 0, 4491264, 0, 1], 'memory_info': {'data': 35696640, 'dirty': 0, 'lib': 0, 'rss': 12611584, 'shared': 10756096, 'text': 45056, 'vms': 329977856}, 'memory_percent': 0.07679790403329921, 'name': 'gvfs-gphoto2-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5632, 5633], 'cmdline': ['pipewire'], 'cpu_percent': 0, 'cpu_times': {'system': 1.7, 'user': 1.2}, 'io_counters': [1167360, 0, 1167360, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 51429376, 'rss': 17907712, 'shared': 13189120, 'text': 8192, 'vms': 221405184}, 'memory_percent': 0.10904853408041057, 'name': 'pipewire', 'nice': '_', 'nprocs': 2, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6102], 'cmdline': ['gsd-datetime'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.13}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43700224, 'dirty': 0, 'lib': 0, 'rss': 12230656, 'shared': 11051008, 'text': 20480, 'vms': 442413056}, 'memory_percent': 0.07447825314824015, 'name': 'gsd-datetime', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2307], 'cmdline': ['systemd-resolved'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 7.57, 'user': 11.75}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 2494464, 'dirty': 0, 'lib': 0, 'rss': 12115968, 'shared': 10280960, 'text': 360448, 'vms': 22622208}, 'memory_percent': 0.07377986363445893, 'name': 'systemd-resolved', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'systemd-resolve'}, {'childrens': [5543], 'cmdline': ['gdm-session-worker'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.74, 'children_user': 0.82, 'iowait': 0.0, 'system': 0.21, 'user': 0.3}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 54259712, 'dirty': 0, 'lib': 0, 'rss': 11976704, 'shared': 9355264, 'text': 131072, 'vms': 476450816}, 'memory_percent': 0.07293181922486745, 'name': 'gdm-session-worker', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [7244], 'cmdline': ['snap'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1.31, 'children_user': 0.74, 'iowait': 0.0, 'system': 0.82, 'user': 1.9}, 'io_counters': [4859904, 0, 4859904, 0, 1], 'memory_info': {'data': 149872640, 'dirty': 0, 'lib': 0, 'rss': 11800576, 'shared': 5521408, 'text': 8859648, 'vms': 2186571776}, 'memory_percent': 0.07185929247156059, 'name': 'snap', 'nice': 0, 'nprocs': 1, 'num_threads': 13, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6123], 'cmdline': ['gsd-sharing'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.96, 'user': 4.36}, 'io_counters': [163840, 0, 163840, 0, 1], 'memory_info': {'data': 61214720, 'dirty': 0, 'lib': 0, 'rss': 11784192, 'shared': 10080256, 'text': 16384, 'vms': 556740608}, 'memory_percent': 0.07175952254102042, 'name': 'gsd-sharing', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2776], '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': 11677696, 'shared': 10629120, 'text': 3026944, 'vms': 120745984}, 'memory_percent': 0.07111101799250928, 'name': 'unattended-upgr', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [3464], 'cmdline': ['thermald'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.63, 'user': 2.06}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 43474944, 'dirty': 0, 'lib': 0, 'rss': 11517952, 'shared': 10600448, 'text': 348160, 'vms': 435154944}, 'memory_percent': 0.07013826116974257, 'name': 'thermald', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2836], 'cmdline': ['colord'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.38, 'children_user': 0.27, 'iowait': 0.0, 'system': 0.04, 'user': 0.13}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 38944768, 'dirty': 0, 'lib': 0, 'rss': 11481088, 'shared': 9945088, 'text': 94208, 'vms': 328175616}, 'memory_percent': 0.06991377882602717, 'name': 'colord', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'colord'}, {'childrens': [275247, 3254], 'cmdline': ['cupsd'], 'cpu_percent': 0, 'cpu_times': {'system': 0.29000000000000004, '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': 19267584, 'shared': 16646144, 'text': 614400, 'vms': 104325120}, 'memory_percent': 0.11732943831524503, 'name': 'cupsd', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6171], 'cmdline': ['gvfs-udisks2-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.25, 'user': 6.19}, 'io_counters': [212992, 0, 212992, 0, 1], 'memory_info': {'data': 45088768, 'dirty': 0, 'lib': 0, 'rss': 11161600, 'shared': 9195520, 'text': 94208, 'vms': 399278080}, 'memory_percent': 0.06796826518049379, 'name': 'gvfs-udisks2-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6114], 'cmdline': ['gsd-print-notifications'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.13}, 'io_counters': [200704, 0, 200704, 0, 1], 'memory_info': {'data': 35250176, 'dirty': 0, 'lib': 0, 'rss': 11042816, 'shared': 10387456, 'text': 20480, 'vms': 331649024}, 'memory_percent': 0.06724493318407752, 'name': 'gsd-print-notifications', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6662, 6568], 'cmdline': ['snapd-desktop-integration'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.06, 'children_user': 0.01, 'system': 0.19, 'user': 0.19}, 'io_counters': [6666240, 0, 6666240, 0, 1, 31744, 0, 31744, 0, 1, 31744, 0, 31744, 0, 1], 'memory_info': {'data': 54169600, 'rss': 18894848, 'shared': 16777216, 'text': 589824, 'vms': 480788480}, 'memory_percent': 0.11505967239545609, 'name': 'snapd-desktop-integration', 'nice': 0, 'nprocs': 2, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2527], 'cmdline': ['wpa_supplicant'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.07, 'user': 1.46}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1572864, 'dirty': 0, 'lib': 0, 'rss': 10637312, 'shared': 9719808, 'text': 2387968, 'vms': 18964480}, 'memory_percent': 0.0647756274032082, 'name': 'wpa_supplicant', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2641], 'cmdline': ['ModemManager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.64, 'user': 0.45}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 44470272, 'dirty': 0, 'lib': 0, 'rss': 10240000, 'shared': 8667136, 'text': 1196032, 'vms': 401723392}, 'memory_percent': 0.06235620658760898, 'name': 'ModemManager', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [5639], 'cmdline': ['gnome-keyring-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.45, 'user': 1.65}, 'io_counters': [3739648, 679936, 3739648, 679936, 1], 'memory_info': {'data': 52461568, 'dirty': 0, 'lib': 0, 'rss': 10096640, 'shared': 9441280, 'text': 577536, 'vms': 475852800}, 'memory_percent': 0.06148321969538245, 'name': 'gnome-keyring-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [411182], 'cmdline': ['gvfsd-http'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [110592, 0, 110592, 0, 1], 'memory_info': {'data': 35061760, 'dirty': 0, 'lib': 0, 'rss': 10039296, 'shared': 8990720, 'text': 20480, 'vms': 328196096}, 'memory_percent': 0.061134024938491835, 'name': 'gvfsd-http', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2743], 'cmdline': ['upowerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 19.23, 'user': 1.89}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 37122048, 'dirty': 0, 'lib': 0, 'rss': 10022912, 'shared': 7663616, 'text': 81920, 'vms': 326270976}, 'memory_percent': 0.06103425500795166, 'name': 'upowerd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [3343], 'cmdline': ['snmpd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 19.2, 'user': 8.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 3727360, 'dirty': 0, 'lib': 0, 'rss': 9932800, 'shared': 8622080, 'text': 12288, 'vms': 26480640}, 'memory_percent': 0.0604855203899807, 'name': 'snmpd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'Debian-snmp'}, {'childrens': [44703], 'cmdline': ['gvfsd-recent'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.32, 'user': 2.91}, 'io_counters': [200704, 0, 200704, 0, 1], 'memory_info': {'data': 45207552, 'dirty': 0, 'lib': 0, 'rss': 9596928, 'shared': 7688192, 'text': 16384, 'vms': 399622144}, 'memory_percent': 0.058440236813907136, 'name': 'gvfsd-recent', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6139], 'cmdline': ['gsd-sound'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.14}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43753472, 'dirty': 0, 'lib': 0, 'rss': 9474048, 'shared': 8425472, 'text': 8192, 'vms': 403460096}, 'memory_percent': 0.05769196233485583, 'name': 'gsd-sound', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [3393], 'cmdline': ['gdm3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.03, 'children_user': 0.02, 'iowait': 0.0, 'system': 0.05, 'user': 0.12}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 35102720, 'dirty': 0, 'lib': 0, 'rss': 9117696, 'shared': 8462336, 'text': 233472, 'vms': 322646016}, 'memory_percent': 0.05552196634560703, 'name': 'gdm3', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6096], 'cmdline': ['ibus-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 13.6, 'user': 55.89}, 'io_counters': [761856, 8192, 761856, 8192, 1], 'memory_info': {'data': 47996928, 'dirty': 0, 'lib': 0, 'rss': 9080832, 'shared': 7335936, 'text': 110592, 'vms': 398450688}, 'memory_percent': 0.05529748400189164, 'name': 'ibus-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2457], 'cmdline': ['systemd-logind'], 'cpu_percent': 0, 'cpu_times': {'children_system': 3.16, 'children_user': 0.41, 'iowait': 0.0, 'system': 4.82, 'user': 2.32}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 946176, 'dirty': 0, 'lib': 0, 'rss': 8986624, 'shared': 7888896, 'text': 155648, 'vms': 18628608}, 'memory_percent': 0.05472380690128563, 'name': 'systemd-logind', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [46869], 'cmdline': ['gvfsd-dnssd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, 'user': 0.29}, 'io_counters': [94208, 0, 94208, 0, 1], 'memory_info': {'data': 43520000, 'dirty': 0, 'lib': 0, 'rss': 8679424, 'shared': 8417280, 'text': 16384, 'vms': 400244736}, 'memory_percent': 0.05285312070365737, 'name': 'gvfsd-dnssd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [46838], 'cmdline': ['gvfsd-network'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, 'user': 0.69}, 'io_counters': [40960, 0, 40960, 0, 1], 'memory_info': {'data': 52305920, 'dirty': 0, 'lib': 0, 'rss': 8507392, 'shared': 7983104, 'text': 16384, 'vms': 473886720}, 'memory_percent': 0.051805536432985536, 'name': 'gvfsd-network', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6493], 'cmdline': ['gvfsd-trash'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, 'user': 0.37}, 'io_counters': [365568, 0, 365568, 0, 1], 'memory_info': {'data': 69431296, 'dirty': 0, 'lib': 0, 'rss': 8503296, 'shared': 7979008, 'text': 24576, 'vms': 624529408}, 'memory_percent': 0.05178059395035049, 'name': 'gvfsd-trash', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [64513], 'cmdline': ['speech-dispatcher'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.76, 'user': 0.29}, 'io_counters': [3588096, 0, 3588096, 0, 1], 'memory_info': {'data': 38137856, 'dirty': 0, 'lib': 0, 'rss': 8347648, 'shared': 4898816, 'text': 122880, 'vms': 123002880}, 'memory_percent': 0.050832779610218835, 'name': 'speech-dispatcher', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6103], 'cmdline': ['gsd-housekeeping'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.81, 'user': 3.13}, 'io_counters': [430080, 0, 430080, 0, 1], 'memory_info': {'data': 52187136, 'dirty': 0, 'lib': 0, 'rss': 8302592, 'shared': 7516160, 'text': 24576, 'vms': 470536192}, 'memory_percent': 0.05055841230123336, 'name': 'gsd-housekeeping', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [24122, 456242, 13561], 'cmdline': ['bash'], 'cpu_percent': 0, 'cpu_times': {'children_system': 302.72, 'children_user': 273.13, 'system': 0.63, 'user': 0.78}, 'io_counters': [153317376, 166076416, 153317376, 166076416, 1, 127874997248, 12889104384, 127874997248, 12889104384, 1, 974848, 8192, 974848, 8192, 1, 127874997248, 12889104384, 127874997248, 12889104384, 1, 974848, 8192, 974848, 8192, 1], 'memory_info': {'data': 9715712, 'rss': 16756736, 'shared': 10465280, 'text': 2936832, 'vms': 36425728}, 'memory_percent': 0.10203969645996333, 'name': 'bash', 'nice': 0, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6370], 'cmdline': ['gvfs-afc-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.87, 'user': 0.72}, 'io_counters': [98304, 0, 98304, 0, 1], 'memory_info': {'data': 43266048, 'dirty': 0, 'lib': 0, 'rss': 8175616, 'shared': 7258112, 'text': 40960, 'vms': 398839808}, 'memory_percent': 0.049785195339547, 'name': 'gvfs-afc-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6322], 'cmdline': ['goa-identity-service'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.1, 'user': 0.09}, 'io_counters': [200704, 0, 200704, 0, 1], 'memory_info': {'data': 43364352, 'dirty': 0, 'lib': 0, 'rss': 8146944, 'shared': 8146944, 'text': 65536, 'vms': 398757888}, 'memory_percent': 0.049610597961101705, 'name': 'goa-identity-service', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6127], 'cmdline': ['gsd-smartcard'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.15}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 43393024, 'dirty': 0, 'lib': 0, 'rss': 8089600, 'shared': 7303168, 'text': 36864, 'vms': 395452416}, 'memory_percent': 0.04926140320421109, 'name': 'gsd-smartcard', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2308], 'cmdline': ['systemd-timesyncd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.22, 'user': 0.09}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 9158656, 'dirty': 0, 'lib': 0, 'rss': 8073216, 'shared': 7155712, 'text': 28672, 'vms': 93585408}, 'memory_percent': 0.049161633273670916, 'name': 'systemd-timesyncd', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'systemd-timesync'}, {'childrens': [6159], 'cmdline': ['gsd-disk-utility-notify'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.06}, 'io_counters': [24576, 0, 24576, 0, 1], 'memory_info': {'data': 35983360, 'dirty': 0, 'lib': 0, 'rss': 8040448, 'shared': 6074368, 'text': 8192, 'vms': 312823808}, 'memory_percent': 0.04896209341259057, 'name': 'gsd-disk-utility-notify', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2432], 'cmdline': ['iio-sensor-proxy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.75, 'user': 4.39}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 35188736, 'dirty': 0, 'lib': 0, 'rss': 8019968, 'shared': 7102464, 'text': 36864, 'vms': 321552384}, 'memory_percent': 0.04883738099941535, 'name': 'iio-sensor-proxy', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [782], 'cmdline': ['systemd-udevd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 14.83, 'children_user': 8.96, 'iowait': 0.0, 'system': 4.87, 'user': 3.23}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 3829760, 'dirty': 0, 'lib': 0, 'rss': 7999488, 'shared': 4722688, 'text': 864256, 'vms': 31682560}, 'memory_percent': 0.04871266858624013, 'name': 'systemd-udevd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2645], 'cmdline': ['boltd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.26, 'user': 0.61}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34779136, 'dirty': 0, 'lib': 0, 'rss': 7974912, 'shared': 7450624, 'text': 167936, 'vms': 321286144}, 'memory_percent': 0.04856301369042987, 'name': 'boltd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [5702], 'cmdline': ['xdg-document-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 30.73, 'children_user': 27.97, 'iowait': 0.0, 'system': 0.95, 'user': 0.92}, 'io_counters': [2190336, 0, 2190336, 0, 1], 'memory_info': {'data': 70967296, 'dirty': 0, 'lib': 0, 'rss': 7938048, 'shared': 7413760, 'text': 110592, 'vms': 625213440}, 'memory_percent': 0.04833853134671448, 'name': 'xdg-document-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2458], 'cmdline': ['systemd-machined'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.6, 'user': 0.79}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 851968, 'dirty': 0, 'lib': 0, 'rss': 7876608, 'shared': 6959104, 'text': 65536, 'vms': 18010112}, 'memory_percent': 0.04796439410718883, 'name': 'systemd-machined', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2446], 'cmdline': ['accounts-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.94, 'user': 0.99}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34959360, 'dirty': 0, 'lib': 0, 'rss': 7839744, 'shared': 7184384, 'text': 90112, 'vms': 321167360}, 'memory_percent': 0.04773991176347343, 'name': 'accounts-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [5884], 'cmdline': ['gvfsd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 3.71, 'children_user': 2.58, 'iowait': 0.0, 'system': 0.35, 'user': 0.54}, 'io_counters': [12255232, 657911808, 12255232, 657911808, 1], 'memory_info': {'data': 34910208, 'dirty': 0, 'lib': 0, 'rss': 7823360, 'shared': 7430144, 'text': 16384, 'vms': 322138112}, 'memory_percent': 0.047640141832933254, 'name': 'gvfsd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5936], 'cmdline': ['at-spi-bus-launcher'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.04}, 'io_counters': [32768, 0, 32768, 0, 1], 'memory_info': {'data': 43323392, 'dirty': 0, 'lib': 0, 'rss': 7729152, 'shared': 7204864, 'text': 12288, 'vms': 392155136}, 'memory_percent': 0.04706646473232726, 'name': 'at-spi-bus-launcher', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2306], 'cmdline': ['systemd-oomd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 14.09, 'user': 7.43}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 933888, 'dirty': 0, 'lib': 0, 'rss': 7684096, 'shared': 6897664, 'text': 28672, 'vms': 18018304}, 'memory_percent': 0.04679209742334177, 'name': 'systemd-oomd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'systemd-oom'}, {'childrens': [5650, 2426, 5950], 'cmdline': ['dbus-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.03, 'system': 9.5, 'user': 33.68}, 'io_counters': [2035712, 0, 2035712, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], 'memory_info': {'data': 7557120, 'rss': 19763200, 'shared': 13901824, 'text': 454656, 'vms': 34664448}, 'memory_percent': 0.12034747871408531, 'name': 'dbus-daemon', 'nice': 0, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': '_'}, {'childrens': [6353], 'cmdline': ['gvfs-goa-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.07}, 'io_counters': [110592, 0, 110592, 0, 1], 'memory_info': {'data': 34852864, 'dirty': 0, 'lib': 0, 'rss': 7573504, 'shared': 6918144, 'text': 45056, 'vms': 318169088}, 'memory_percent': 0.04611865039219559, 'name': 'gvfs-goa-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6034], 'cmdline': ['at-spi2-registryd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.04, 'user': 0.12}, 'io_counters': [90112, 0, 90112, 0, 1], 'memory_info': {'data': 26329088, 'dirty': 0, 'lib': 0, 'rss': 7495680, 'shared': 6971392, 'text': 40960, 'vms': 241733632}, 'memory_percent': 0.04564474322212977, 'name': 'at-spi2-registryd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6442], 'cmdline': ['ibus-engine-simple'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.83, 'user': 19.32}, 'io_counters': [204800, 0, 204800, 0, 1], 'memory_info': {'data': 26574848, 'dirty': 0, 'lib': 0, 'rss': 7344128, 'shared': 6950912, 'text': 4096, 'vms': 242995200}, 'memory_percent': 0.04472187136463316, 'name': 'ibus-engine-simple', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [64529], 'cmdline': ['sd_espeak-ng'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.34, 'user': 0.03}, 'io_counters': [1671168, 0, 1671168, 0, 1], 'memory_info': {'data': 20443136, 'dirty': 0, 'lib': 0, 'rss': 7303168, 'shared': 5468160, 'text': 32768, 'vms': 109895680}, 'memory_percent': 0.044472446538282716, 'name': 'sd_espeak-ng', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6258], 'cmdline': ['ibus-memconf'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [45056, 0, 45056, 0, 1], 'memory_info': {'data': 26173440, 'dirty': 0, 'lib': 0, 'rss': 7102464, 'shared': 6971392, 'text': 8192, 'vms': 242601984}, 'memory_percent': 0.043250264889165585, 'name': 'ibus-memconf', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6273], 'cmdline': ['ibus-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.48}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 35037184, 'dirty': 0, 'lib': 0, 'rss': 7090176, 'shared': 6828032, 'text': 28672, 'vms': 318128128}, 'memory_percent': 0.043175437441260456, 'name': 'ibus-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6333], 'cmdline': ['gvfsd-metadata'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.1}, 'io_counters': [73728, 638976, 73728, 638976, 1], 'memory_info': {'data': 26697728, 'dirty': 0, 'lib': 0, 'rss': 7069696, 'shared': 6152192, 'text': 32768, 'vms': 242724864}, 'memory_percent': 0.043050725028085234, 'name': 'gvfsd-metadata', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5861], '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': 7041024, 'shared': 6385664, 'text': 32768, 'vms': 166555648}, 'memory_percent': 0.042876127649639925, 'name': 'gcr-ssh-agent', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2451], 'cmdline': ['switcheroo-control'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34693120, 'dirty': 0, 'lib': 0, 'rss': 6963200, 'shared': 6438912, 'text': 8192, 'vms': 317243392}, 'memory_percent': 0.0424022204795741, 'name': 'switcheroo-control', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6097], 'cmdline': ['gsd-a11y-settings'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.04, 'user': 0.12}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43220992, 'dirty': 0, 'lib': 0, 'rss': 6934528, 'shared': 6541312, 'text': 8192, 'vms': 393097216}, 'memory_percent': 0.0422276231011288, 'name': 'gsd-a11y-settings', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5892], 'cmdline': ['gvfsd-fuse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [135168, 0, 135168, 0, 1], 'memory_info': {'data': 53948416, 'dirty': 0, 'lib': 0, 'rss': 6868992, 'shared': 6606848, 'text': 24576, 'vms': 471019520}, 'memory_percent': 0.0418285433789681, 'name': 'gvfsd-fuse', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6117], 'cmdline': ['gsd-rfkill'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.1, 'user': 0.36}, 'io_counters': [40960, 0, 40960, 0, 1], 'memory_info': {'data': 60280832, 'dirty': 0, 'lib': 0, 'rss': 6868992, 'shared': 6344704, 'text': 20480, 'vms': 544178176}, 'memory_percent': 0.0418285433789681, 'name': 'gsd-rfkill', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5764], 'cmdline': ['gdm-wayland-session'], '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, 1], 'memory_info': {'data': 26157056, 'dirty': 0, 'lib': 0, 'rss': 6524928, 'shared': 6262784, 'text': 20480, 'vms': 241627136}, 'memory_percent': 0.03973337483762444, 'name': 'gdm-wayland-session', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6379], 'cmdline': ['gvfs-mtp-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.08}, 'io_counters': [98304, 0, 98304, 0, 1], 'memory_info': {'data': 34693120, 'dirty': 0, 'lib': 0, 'rss': 6524928, 'shared': 6000640, 'text': 40960, 'vms': 317317120}, 'memory_percent': 0.03973337483762444, 'name': 'gvfs-mtp-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5707], 'cmdline': ['xdg-permission-store'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.03}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 34676736, 'dirty': 0, 'lib': 0, 'rss': 6397952, 'shared': 6004736, 'text': 36864, 'vms': 317140992}, 'memory_percent': 0.03896015787593809, 'name': 'xdg-permission-store', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [6119], 'cmdline': ['gsd-screensaver-proxy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.08, 'user': 0.27}, 'io_counters': [94208, 0, 94208, 0, 1], 'memory_info': {'data': 34693120, 'dirty': 0, 'lib': 0, 'rss': 6299648, 'shared': 5906432, 'text': 8192, 'vms': 317108224}, 'memory_percent': 0.03836153829269704, 'name': 'gsd-screensaver-proxy', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [3255], 'cmdline': ['cups-proxyd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.41, 'user': 0.21}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 26611712, 'dirty': 0, 'lib': 0, 'rss': 6053888, 'shared': 5529600, 'text': 28672, 'vms': 247369728}, 'memory_percent': 0.03686498933459442, 'name': 'cups-proxyd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [6062], 'cmdline': ['dconf-service'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.08, 'user': 0.26}, 'io_counters': [81920, 2621440, 81920, 2621440, 1], 'memory_info': {'data': 26492928, 'dirty': 0, 'lib': 0, 'rss': 6004736, 'shared': 5349376, 'text': 36864, 'vms': 235999232}, 'memory_percent': 0.0365656795429739, 'name': 'dconf-service', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2425], 'cmdline': ['bluetoothd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 42.51, 'user': 30.69}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1331200, 'dirty': 0, 'lib': 0, 'rss': 5922816, 'shared': 5529600, 'text': 995328, 'vms': 14536704}, 'memory_percent': 0.03606682989027303, 'name': 'bluetoothd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [309958], 'cmdline': ['evinced'], 'cpu_percent': 0, 'cpu_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': 26124288, 'dirty': 0, 'lib': 0, 'rss': 5844992, 'shared': 5451776, 'text': 12288, 'vms': 235589632}, 'memory_percent': 0.035592922720207205, 'name': 'evinced', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [13666], 'cmdline': ['ssh-agent'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.5}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 663552, 'dirty': 0, 'lib': 0, 'rss': 5738496, 'shared': 5214208, 'text': 139264, 'vms': 8634368}, 'memory_percent': 0.034944418171696065, 'name': 'ssh-agent', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [425125], 'cmdline': ['zed'], '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': 25862144, 'dirty': 0, 'lib': 0, 'rss': 5726208, 'shared': 4808704, 'text': 61440, 'vms': 104570880}, 'memory_percent': 0.034869590723790936, 'name': 'zed', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [5866], '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': 5267456, 'shared': 5136384, 'text': 4096, 'vms': 93683712}, 'memory_percent': 0.03207603266866605, 'name': 'gnome-session-ctl', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2559], 'cmdline': ['rsyslogd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.9, 'user': 0.68}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 19673088, 'dirty': 0, 'lib': 0, 'rss': 5050368, 'shared': 4132864, 'text': 454656, 'vms': 227909632}, 'memory_percent': 0.030754081089008747, 'name': 'rsyslogd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'syslog'}, {'childrens': [2438], 'cmdline': ['smartd'], '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': 1220608, 'dirty': 0, 'lib': 0, 'rss': 4956160, 'shared': 4825088, 'text': 249856, 'vms': 12292096}, 'memory_percent': 0.030180403988402743, 'name': 'smartd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [64536], 'cmdline': ['sd_dummy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.2, 'user': 2.39}, 'io_counters': [77824, 0, 77824, 0, 1], 'memory_info': {'data': 17657856, 'dirty': 0, 'lib': 0, 'rss': 4861952, 'shared': 4730880, 'text': 28672, 'vms': 166596608}, 'memory_percent': 0.029606726887796742, 'name': 'sd_dummy', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [263270], 'cmdline': ['crashhelper'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.02}, 'io_counters': [688128, 0, 688128, 0, 1], 'memory_info': {'data': 9740288, 'dirty': 0, 'lib': 0, 'rss': 4349952, 'shared': 4087808, 'text': 1593344, 'vms': 21860352}, 'memory_percent': 0.02648891655841629, 'name': 'crashhelper', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2424, 2517], 'cmdline': ['avahi-daemon'], 'cpu_percent': 0, 'cpu_times': {'system': 3.91, 'user': 4.51}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1290240, 'rss': 5550080, 'shared': 5021696, 'text': 163840, 'vms': 17715200}, 'memory_percent': 0.03379706397048406, 'name': 'avahi-daemon', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'avahi'}, {'childrens': [3510], 'cmdline': ['rtkit-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.94, 'user': 0.53}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 17211392, 'dirty': 0, 'lib': 0, 'rss': 3497984, 'shared': 3235840, 'text': 28672, 'vms': 23490560}, 'memory_percent': 0.021300880170327226, 'name': 'rtkit-daemon', 'nice': 1, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'rtkit'}, {'childrens': [7216], 'cmdline': ['uuidd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.05}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 434176, 'dirty': 0, 'lib': 0, 'rss': 3248128, 'shared': 3117056, 'text': 12288, 'vms': 12046336}, 'memory_percent': 0.019779388729589568, 'name': 'uuidd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'uuidd'}, {'childrens': [2449], 'cmdline': ['cron'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.83, 'children_user': 0.3, 'iowait': 0.0, 'system': 0.1, 'user': 0.04}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 450560, 'dirty': 0, 'lib': 0, 'rss': 2695168, 'shared': 2564096, 'text': 32768, 'vms': 9588736}, 'memory_percent': 0.01641215357385868, 'name': 'cron', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [64539], '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': [90112, 0, 90112, 0, 1], 'memory_info': {'data': 397312, 'dirty': 0, 'lib': 0, 'rss': 2670592, 'shared': 2670592, 'text': 24576, 'vms': 5804032}, 'memory_percent': 0.01626249867804842, 'name': 'sd_openjtalk', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [519188, 521622], 'cmdline': ['make'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 1040384, 'rss': 5324800, 'shared': 4800512, 'text': 344064, 'vms': 17604608}, 'memory_percent': 0.03242522742555667, 'name': 'make', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [5622], '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': 2588672, 'shared': 1892352, 'text': 86016, 'vms': 22142976}, 'memory_percent': 0.015763649025347548, 'name': '(sd-pam)', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [13044], 'cmdline': ['chrome_crashpad_handler'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.0}, 'io_counters': [3044352, 774144, 3044352, 774144, 1], 'memory_info': {'data': 17608704, 'dirty': 0, 'lib': 0, 'rss': 2203648, 'shared': 2072576, 'text': 1085440, 'vms': 34382123008}, 'memory_percent': 0.013419055657653452, 'name': 'chrome_crashpad_handler', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [3366, 3357], 'cmdline': ['kerneloops'], 'cpu_percent': 0, 'cpu_times': {'system': 0.05, 'user': 0.05}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1064960, 'rss': 4333568, 'shared': 3518464, 'text': 24576, 'vms': 26099712}, 'memory_percent': 0.026389146627876114, 'name': 'kerneloops', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'kernoops'}, {'childrens': [5714], 'cmdline': ['fusermount3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 364544, 'dirty': 0, 'lib': 0, 'rss': 1986560, 'shared': 1986560, 'text': 20480, 'vms': 2768896}, 'memory_percent': 0.01209710407799614, 'name': 'fusermount3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [517080], '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': 1851392, 'shared': 1851392, 'text': 16384, 'vms': 3289088}, 'memory_percent': 0.011274002151039703, 'name': 'sleep', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2973, 2974], 'cmdline': ['dnsmasq'], 'cpu_percent': 0, 'cpu_times': {'system': 0.15, 'user': 0.04}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1040384, 'rss': 2469888, 'shared': 2379776, 'text': 745472, 'vms': 23519232}, 'memory_percent': 0.015040317028931284, 'name': 'dnsmasq', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': '_'}, {'childrens': [521625], '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': 1658880, 'shared': 1658880, 'text': 86016, 'vms': 2871296}, 'memory_percent': 0.010101705467192655, 'name': 'sh', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2771], 'cmdline': ['run-cupsd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.46, 'children_user': 0.02, 'iowait': 0.0, 'system': 0.22, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 372736, 'dirty': 0, 'lib': 0, 'rss': 1388544, 'shared': 1388544, 'text': 81920, 'vms': 2961408}, 'memory_percent': 0.008455501613279777, 'name': 'run-cupsd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [2768, 3259], 'cmdline': ['run-cups-browse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.1, 'children_user': 0.01, 'system': 0.19999999999999998, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 745472, 'rss': 2023424, 'shared': 2023424, 'text': 163840, 'vms': 5922816}, 'memory_percent': 0.012321586421711533, 'name': 'run-cups-browse', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [13535], 'cmdline': ['pet'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.59, 'user': 1.24}, 'io_counters': [13639680, 69632, 13639680, 69632, 1], 'memory_info': {'data': 2424832, 'dirty': 0, 'lib': 0, 'rss': 290816, 'shared': 0, 'text': 3260416, 'vms': 6496256}, 'memory_percent': 0.001770916267088095, 'name': 'pet', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [2], 'cmdline': ['kthreadd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'kthreadd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [16], 'cmdline': ['ksoftirqd/0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.19, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [17], 'cmdline': ['rcu_preempt'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 76.63, '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.31589508056640625, '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.31589508056640625, '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.19, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [20], 'cmdline': ['migration/0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 8.87, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [25], 'cmdline': ['migration/2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 8.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': 'migration/2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [26], 'cmdline': ['ksoftirqd/2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'ksoftirqd/2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [31], 'cmdline': ['migration/4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.79, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [32], 'cmdline': ['ksoftirqd/4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'ksoftirqd/4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [37], 'cmdline': ['migration/6'], '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': 'migration/6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [38], 'cmdline': ['ksoftirqd/6'], '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': 'ksoftirqd/6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [43], 'cmdline': ['migration/8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 13.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': 'migration/8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [44], 'cmdline': ['ksoftirqd/8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.49, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [46], 'cmdline': ['kworker/8:0H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/8:0H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [49], 'cmdline': ['migration/10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 10.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': 'migration/10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [50], 'cmdline': ['ksoftirqd/10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.41, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [55], 'cmdline': ['migration/12'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 35.31, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/12', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [56], 'cmdline': ['ksoftirqd/12'], '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': 'ksoftirqd/12', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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': 1.77, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/12:0H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [61], 'cmdline': ['migration/13'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 23.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/13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [62], 'cmdline': ['ksoftirqd/13'], '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': 'ksoftirqd/13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [67], 'cmdline': ['migration/14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 18.86, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [68], 'cmdline': ['ksoftirqd/14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.25, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [73], 'cmdline': ['migration/15'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 13.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/15', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.2, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/15', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [76], 'cmdline': ['kworker/15:0H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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/15:0H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [79], 'cmdline': ['migration/1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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/1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [80], 'cmdline': ['ksoftirqd/1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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/1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [85], 'cmdline': ['migration/3'], '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': 'migration/3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.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': 'ksoftirqd/3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [91], 'cmdline': ['migration/5'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'migration/5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.32, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [97], 'cmdline': ['migration/7'], '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': 'migration/7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.33, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [103], 'cmdline': ['migration/9'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.48, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.16, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [109], 'cmdline': ['migration/11'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.3, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/11', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.21, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [115], 'cmdline': ['kauditd'], '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': 'kauditd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [116], 'cmdline': ['khungtaskd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.19, 'user': 0.02}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [117], '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [121], 'cmdline': ['kcompactd0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 46.04, 'user': 0.17}, 'io_counters': [0, 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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [123], 'cmdline': ['khugepaged'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [134], '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.31589508056640625, 'username': 'root'}, {'childrens': [135], '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.31589508056640625, 'username': 'root'}, {'childrens': [136], '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.31589508056640625, 'username': 'root'}, {'childrens': [137], '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.31589508056640625, 'username': 'root'}, {'childrens': [138], '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.31589508056640625, 'username': 'root'}, {'childrens': [140], '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.31589508056640625, 'username': 'root'}, {'childrens': [141], 'cmdline': ['kworker/13:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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/13:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [142], 'cmdline': ['kswapd0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 8.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': 'kswapd0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [143], '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.31589508056640625, 'username': 'root'}, {'childrens': [144], '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.31589508056640625, 'username': 'root'}, {'childrens': [145], '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.31589508056640625, 'username': 'root'}, {'childrens': [146], '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.31589508056640625, 'username': 'root'}, {'childrens': [147], '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.31589508056640625, 'username': 'root'}, {'childrens': [149], 'cmdline': ['hwrng'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.19, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [150], '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.31589508056640625, 'username': 'root'}, {'childrens': [153], '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.31589508056640625, 'username': 'root'}, {'childrens': [154], 'cmdline': ['kworker/2:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.25, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/2:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [155], '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.31589508056640625, 'username': 'root'}, {'childrens': [163], '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.31589508056640625, 'username': 'root'}, {'childrens': [175], '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.31589508056640625, 'username': 'root'}, {'childrens': [184], '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.31589508056640625, 'username': 'root'}, {'childrens': [185], 'cmdline': ['kworker/0:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.35, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/0:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [209], 'cmdline': ['kworker/14:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.79, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/14:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [212], 'cmdline': ['kworker/6:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'kworker/6:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [230], 'cmdline': ['kworker/7:1H-kblockd'], '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/7:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [231], 'cmdline': ['kworker/4:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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/4:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [232], 'cmdline': ['kworker/9:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.26, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/9:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [265], 'cmdline': ['kworker/12: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/12:1H', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [266], 'cmdline': ['kworker/8:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.99, 'user': 0.0}, 'io_counters': [0, 0, 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-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [267], 'cmdline': ['kworker/10:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.99, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [268], 'cmdline': ['kworker/11:1H-kblockd'], '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/11:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [270], 'cmdline': ['kworker/3:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.32, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/3:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [271], 'cmdline': ['kworker/1:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.48, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/1:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [272], 'cmdline': ['kworker/15: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/15:1H', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [275], 'cmdline': ['kworker/5:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.24, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/5:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [369], 'cmdline': ['irq/178-VEN_04F3:00'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 20.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': 'irq/178-VEN_04F3:00', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, '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.31589508056640625, 'username': 'root'}, {'childrens': [376], '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.31589508056640625, 'username': 'root'}, {'childrens': [378], '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.31589508056640625, 'username': 'root'}, {'childrens': [456], '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.31589508056640625, 'username': 'root'}, {'childrens': [457], '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.31589508056640625, 'username': 'root'}, {'childrens': [619], '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.31589508056640625, 'username': 'root'}, {'childrens': [624], '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.31589508056640625, 'username': 'root'}, {'childrens': [625], '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.31589508056640625, 'username': 'root'}, {'childrens': [626], 'cmdline': ['dmcrypt_write/252:0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 13.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': 'dmcrypt_write/252:0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [632], '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.31589508056640625, 'username': 'root'}, {'childrens': [684], 'cmdline': ['jbd2/dm-1-8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 12.86, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'jbd2/dm-1-8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [685, 1047], '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.31589508056640625, 'username': 'root'}, {'childrens': [810, 508477], 'cmdline': ['psimon'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'psimon', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [969], '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.31589508056640625, 'username': 'root'}, {'childrens': [1011], 'cmdline': ['irq/201-iwlwifi:default_queue'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 30.09, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/201-iwlwifi:default_queue', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1012], 'cmdline': ['irq/202-iwlwifi:queue_1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.73, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/202-iwlwifi:queue_1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1013], 'cmdline': ['irq/203-iwlwifi:queue_2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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': 'irq/203-iwlwifi:queue_2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1015], 'cmdline': ['irq/204-iwlwifi:queue_3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.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': 'irq/204-iwlwifi:queue_3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1016], 'cmdline': ['irq/205-iwlwifi:queue_4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.87, 'user': 0.0}, 'io_counters': [0, 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_4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1017], 'cmdline': ['irq/206-iwlwifi:queue_5'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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': 'irq/206-iwlwifi:queue_5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1018], 'cmdline': ['irq/207-iwlwifi:queue_6'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.46, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/207-iwlwifi:queue_6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1019], 'cmdline': ['irq/208-iwlwifi:queue_7'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.15, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/208-iwlwifi:queue_7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1020], 'cmdline': ['irq/209-iwlwifi:queue_8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 11.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/209-iwlwifi:queue_8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1021], 'cmdline': ['irq/210-iwlwifi:queue_9'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.71, 'user': 0.0}, 'io_counters': [0, 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_9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1022], 'cmdline': ['irq/211-iwlwifi:queue_10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.73, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/211-iwlwifi:queue_10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1023], 'cmdline': ['irq/212-iwlwifi:queue_11'], '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': 'irq/212-iwlwifi:queue_11', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1024], 'cmdline': ['irq/213-iwlwifi:queue_12'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.65, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/213-iwlwifi:queue_12', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1025], 'cmdline': ['irq/214-iwlwifi:queue_13'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.11, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/214-iwlwifi:queue_13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1026], 'cmdline': ['irq/215-iwlwifi:queue_14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.8, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/215-iwlwifi:queue_14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1027], 'cmdline': ['irq/216-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/216-iwlwifi:exception', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1046], 'cmdline': ['jbd2/nvme0n1p2-8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'jbd2/nvme0n1p2-8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1223], '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.31589508056640625, 'username': 'root'}, {'childrens': [1285, 1325], '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.31589508056640625, 'username': 'root'}, {'childrens': [1331, 1394], '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.31589508056640625, 'username': 'root'}, {'childrens': [1332], '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.31589508056640625, 'username': 'root'}, {'childrens': [1333], '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.31589508056640625, 'username': 'root'}, {'childrens': [1334], '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.31589508056640625, 'username': 'root'}, {'childrens': [1335], '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.31589508056640625, 'username': 'root'}, {'childrens': [1397], 'cmdline': ['irq/231-AudioDSP'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.52, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [1453], 'cmdline': ['irq/232-mei_gsc'], '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': 'irq/232-mei_gsc', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1458], 'cmdline': ['irq/233-mei_gsc'], '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': 'irq/233-mei_gsc', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1805], '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.31589508056640625, 'username': 'root'}, {'childrens': [1806], '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.31589508056640625, 'username': 'root'}, {'childrens': [1807], '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.31589508056640625, 'username': 'root'}, {'childrens': [1808, 1861], '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.31589508056640625, 'username': 'root'}, {'childrens': [1809], '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.31589508056640625, 'username': 'root'}, {'childrens': [1810], '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.31589508056640625, 'username': 'root'}, {'childrens': [1811], '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.31589508056640625, 'username': 'root'}, {'childrens': [1812], '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.31589508056640625, 'username': 'root'}, {'childrens': [1813], 'cmdline': ['arc_evict'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'arc_evict', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1814], 'cmdline': ['arc_reap'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.52, 'user': 0.0}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [1815], '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.31589508056640625, 'username': 'root'}, {'childrens': [1816], 'cmdline': ['dbuf_evict'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'dbuf_evict', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1817, 1850, 1851, 1853, 1854, 1855, 1856, 1857, 1858, 1860], '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.31589508056640625, 'username': 'root'}, {'childrens': [1818], 'cmdline': ['l2arc_feed'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 1.12}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [1898], '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.31589508056640625, 'username': 'root'}, {'childrens': [1899], '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.31589508056640625, 'username': 'root'}, {'childrens': [1900], '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.31589508056640625, 'username': 'root'}, {'childrens': [1901, 1927, 1928], '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], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_rd_int_0', 'nice': -20, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1902, 1929, 1972, 1973], '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.31589508056640625, 'username': 'root'}, {'childrens': [1903, 1926, 1930], '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], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_rd_int_2', 'nice': -20, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1904, 1985, 1986, 1989, 1990, 1991, 1992, 1994], '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], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_wr_iss', 'nice': -19, 'nprocs': 8, 'num_threads': 8, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1905], '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.31589508056640625, 'username': 'root'}, {'childrens': [1906, 1987], '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], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_wr_int_0', 'nice': -20, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1907, 1997, 1998], '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], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_wr_int_1', 'nice': -20, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1908, 1995, 2002], '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, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_wr_int_2', 'nice': -20, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1909], '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.31589508056640625, 'username': 'root'}, {'childrens': [1910], '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.31589508056640625, 'username': 'root'}, {'childrens': [1911], '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.31589508056640625, 'username': 'root'}, {'childrens': [1912], '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.31589508056640625, 'username': 'root'}, {'childrens': [1913], '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.31589508056640625, 'username': 'root'}, {'childrens': [1914], '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.31589508056640625, 'username': 'root'}, {'childrens': [1915], '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.31589508056640625, 'username': 'root'}, {'childrens': [1916], '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.31589508056640625, 'username': 'root'}, {'childrens': [1917], '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.31589508056640625, 'username': 'root'}, {'childrens': [1918], '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.31589508056640625, 'username': 'root'}, {'childrens': [1919], '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.31589508056640625, 'username': 'root'}, {'childrens': [1920], '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.31589508056640625, 'username': 'root'}, {'childrens': [1921], 'cmdline': ['z_metaslab'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 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_metaslab', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1922], '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.31589508056640625, 'username': 'root'}, {'childrens': [1923], '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.31589508056640625, 'username': 'root'}, {'childrens': [1931, 1932, 1933, 1934, 1935, 1936, 1937, 1938, 1939, 1940, 1941, 1942], '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.31589508056640625, 'username': 'root'}, {'childrens': [1943, 1944, 1945, 1946, 1947, 1948, 1949, 1950, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958], '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.31589508056640625, 'username': 'root'}, {'childrens': [1959], '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.31589508056640625, 'username': 'root'}, {'childrens': [1960], '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.31589508056640625, 'username': 'root'}, {'childrens': [1978], 'cmdline': ['txg_quiesce'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.41}, 'io_counters': [0, 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.31589508056640625, 'username': 'root'}, {'childrens': [1979], 'cmdline': ['txg_sync'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'txg_sync', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1980], 'cmdline': ['mmp'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'mmp', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [1981], '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.31589508056640625, 'username': 'root'}, {'childrens': [1982], '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.31589508056640625, 'username': 'root'}, {'childrens': [1983], '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.31589508056640625, 'username': 'root'}, {'childrens': [1984], '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.31589508056640625, 'username': 'root'}, {'childrens': [3681], '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.31589508056640625, 'username': 'root'}, {'childrens': [64525], 'cmdline': ['sd_espeak-ng-mb'], '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': 'sd_espeak-ng-mb', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'Z', 'time_since_update': 0.31589508056640625, 'username': 'nicolargo'}, {'childrens': [425061], '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.31589508056640625, 'username': 'root'}, {'childrens': [425065], 'cmdline': ['kworker/14:3-mm_percpu_wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 6.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': 'kworker/14:3-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [425066], 'cmdline': ['kworker/15:2-events'], '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/15:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [444002], 'cmdline': ['kworker/3:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.49, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/3:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [458457], 'cmdline': ['kworker/5:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.54, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/5:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [477608], 'cmdline': ['kworker/15:1-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/15:1-pm', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [479131], 'cmdline': ['kworker/10:3-mm_percpu_wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'kworker/10:3-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [485133], 'cmdline': ['kworker/14:0-i915-unordered'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/14:0-i915-unordered', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [486011], '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': 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': 'kworker/u64:12-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [496131], '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': 12.94, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:15-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [499756], 'cmdline': ['kworker/u65:2-rb_allocator'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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': 'kworker/u65:2-rb_allocator', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [501620], 'cmdline': ['kworker/u64:1-kcryptd-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 11.42, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:1-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [501625], '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': 12.41, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:9-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [501627], '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': 13.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:13-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [501769], 'cmdline': ['kworker/13:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, '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/13:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [503442], 'cmdline': ['kworker/12: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/12:2-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [504914], 'cmdline': ['kworker/11: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/11:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [505644], '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.01, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/9:0-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [505979], 'cmdline': ['kworker/u65:3-i915_flip'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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': 'kworker/u65:3-i915_flip', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [505980], 'cmdline': ['kworker/6:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.16, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/6:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [506042], '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': 6.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:8-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [506043], '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': 6.41, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:10-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [506433], 'cmdline': ['kworker/12:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.16, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/12:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [506576], 'cmdline': ['kworker/5: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/5:1-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [506880], 'cmdline': ['kworker/1:2-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/1:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [509680], 'cmdline': ['kworker/R-dio/dm-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-dio/dm-1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [509695], 'cmdline': ['kworker/7:2-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.04, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/7:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [510096], 'cmdline': ['kworker/8: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/8:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [511401], 'cmdline': ['kworker/10: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/10:1-cgroup_destroy', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [512915], 'cmdline': ['kworker/0: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/0:2-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [512952], '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.0, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [513438], 'cmdline': ['kworker/7:0-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:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [513936], 'cmdline': ['kworker/2:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/2:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [513974], 'cmdline': ['kworker/8:2-events'], '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/8:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [514089], '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.0, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [514345], '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.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/11:1-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [515330], 'cmdline': ['kworker/4:2-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/4:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [516145], 'cmdline': ['kworker/7:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/7:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [516181], 'cmdline': ['kworker/9: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/9:1-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [517041], '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.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/u64:0-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [517321], 'cmdline': ['kworker/4:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.02}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [517337], 'cmdline': ['kworker/6:3-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/6:3-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [517808], 'cmdline': ['kworker/10:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 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.31589508056640625, 'username': 'root'}, {'childrens': [517820], 'cmdline': ['kworker/3: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/3:2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [517821], '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.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:2-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518062], 'cmdline': ['kworker/0:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/0:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518232], 'cmdline': ['kworker/2:2-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/2:2-kdmflush/252:1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518534], '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.0, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [518747], 'cmdline': ['kworker/5:2-events'], '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/5:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518782], 'cmdline': ['kworker/u65:0-hci0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.9, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u65:0-hci0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518788], '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.09, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:3-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518789], '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.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/u64:4-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518790], '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': 0.25, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:5-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518791], '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.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/u64:6-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518792], '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.0, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [518793], '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.0, 'user': 0.0}, 'io_counters': [0, 0, 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.31589508056640625, 'username': 'root'}, {'childrens': [518794], 'cmdline': ['kworker/u64:14-events_unbound'], '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:14-events_unbound', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518795], 'cmdline': ['kworker/u64:16-events_unbound'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.3, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:16-events_unbound', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [518851], 'cmdline': ['kworker/8:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/8:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [519388], 'cmdline': ['kworker/1: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/1:0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [519539], 'cmdline': ['kworker/7:3-mm_percpu_wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/7:3-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.31589508056640625, 'username': 'root'}, {'childrens': [521283], '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.31589508056640625, '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': 26.0, 'interrupt': None, 'iowait': 0.0, 'irq': 0.0, 'key': 'cpu_number', 'nice': 0.0, 'softirq': 0.0, 'steal': 0.0, 'system': 9.0, 'total': 74.0, 'user': 0.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-29-generic', 'linux_distro': 'Ubuntu 24.04', 'os_name': 'Linux', 'os_version': '6.11.0-29-generic', 'platform': '64bit'} >>> gl.system.keys() ['os_name', 'hostname', 'platform', 'os_version', 'linux_distro', 'hr_name'] >>> gl.system["os_name"] 'Linux' System fields description: * os_name: Operating system name * hostname: Hostname * platform: Platform (32 or 64 bits) * linux_distro: Linux distribution * os_version: Operating system version * hr_name: Human readable operating system name System limits: .. code-block:: python >>> gl.system.limits {'history_size': 1200.0, 'system_disable': ['False'], 'system_refresh': 60} Glances network --------------- Network stats: .. code-block:: python >>> gl.network Return a object >>> gl.network Return a dict of dict with key= >>> gl.network.keys() ['wlp0s20f3'] >>> gl.network["wlp0s20f3"] {'alias': None, 'bytes_all': 0, 'bytes_all_gauge': 3988463966, 'bytes_all_rate_per_sec': 0.0, 'bytes_recv': 0, 'bytes_recv_gauge': 2826239267, 'bytes_recv_rate_per_sec': 0.0, 'bytes_sent': 0, 'bytes_sent_gauge': 1162224699, 'bytes_sent_rate_per_sec': 0.0, 'interface_name': 'wlp0s20f3', 'key': 'interface_name', 'speed': 0, 'time_since_update': 0.06490206718444824} 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': 522801317, 'guest': 0.0, 'idle': 93.6, 'interrupts': 244753365, 'iowait': 0.6, 'irq': 0.0, 'nice': 0.0, 'soft_interrupts': 110566424, 'steal': 0.0, 'syscalls': 0, 'system': 3.6, 'total': 7.5, 'user': 2.1} >>> gl.cpu.keys() ['total', 'user', 'nice', 'system', 'idle', 'iowait', 'irq', 'steal', 'guest', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls', 'cpucore'] >>> gl.cpu["total"] 7.5 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.1619856357574463} 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() [521626, 127, 13219, 264075, 263183, 13135, 14233, 263845, 264380, 328820, 5951, 390586, 264073, 44673, 389794, 433109, 6340, 450993, 6593, 263427, 14662, 2774, 451289, 15276, 433108, 285997, 263432, 309950, 13023, 433110, 13229, 433165, 6141, 518540, 13677, 433281, 12677, 7127, 7025, 519674, 518807, 520817, 13230, 6061, 13175, 519191, 264065, 7064, 3340, 518946, 263401, 13672, 13673, 6363, 11749, 13538, 13611, 14265, 6527, 13093, 2784, 2443, 8785, 6279, 742, 6395, 5638, 6075, 6053, 275256, 2524, 13026, 6545, 6111, 6263, 6110, 6731, 13025, 5895, 1, 2472, 7120, 13811, 6145, 5636, 6100, 2435, 5615, 2464, 5781, 6105, 6304, 2429, 6575, 2469, 13674, 6336, 5632, 6102, 2307, 5543, 7244, 6123, 2776, 3464, 2836, 275247, 6171, 6114, 6662, 2527, 2641, 5639, 411182, 2743, 3343, 44703, 6139, 3393, 6096, 2457, 46869, 46838, 6493, 64513, 6103, 24122, 6568, 6370, 6322, 6127, 2308, 3254, 6159, 2432, 782, 2645, 5702, 2458, 2446, 5884, 5936, 2306, 5650, 6353, 6034, 6442, 64529, 2426, 6258, 6273, 6333, 5861, 2451, 6097, 5892, 6117, 5764, 6379, 5707, 6119, 3255, 6062, 2425, 309958, 13666, 425125, 456242, 5633, 5866, 2559, 2438, 5950, 64536, 263270, 2424, 3510, 7216, 13561, 2449, 64539, 519188, 521622, 5622, 13044, 3366, 3357, 5714, 517080, 2973, 521625, 2771, 2768, 2517, 2974, 3259, 13535, 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, 115, 116, 117, 120, 121, 122, 123, 124, 125, 126, 132, 134, 135, 136, 137, 138, 140, 141, 142, 143, 144, 145, 146, 147, 149, 150, 153, 154, 155, 163, 175, 184, 185, 209, 212, 230, 231, 232, 265, 266, 267, 268, 270, 271, 272, 275, 369, 372, 373, 374, 375, 376, 378, 456, 457, 619, 624, 625, 626, 632, 684, 685, 810, 969, 1011, 1012, 1013, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027, 1046, 1047, 1223, 1285, 1325, 1331, 1332, 1333, 1334, 1335, 1394, 1397, 1453, 1458, 1805, 1806, 1807, 1808, 1809, 1810, 1811, 1812, 1813, 1814, 1815, 1816, 1817, 1818, 1850, 1851, 1853, 1854, 1855, 1856, 1857, 1858, 1860, 1861, 1898, 1899, 1900, 1901, 1902, 1903, 1904, 1905, 1906, 1907, 1908, 1909, 1910, 1911, 1912, 1913, 1914, 1915, 1916, 1917, 1918, 1919, 1920, 1921, 1922, 1923, 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, 1951, 1952, 1953, 1954, 1955, 1956, 1957, 1958, 1959, 1960, 1972, 1973, 1978, 1979, 1980, 1981, 1982, 1983, 1984, 1985, 1986, 1987, 1989, 1990, 1991, 1992, 1994, 1995, 1997, 1998, 2002, 3681, 64525, 425061, 425065, 425066, 444002, 458457, 477608, 479131, 485133, 486011, 496131, 499756, 501620, 501625, 501627, 501769, 503442, 504914, 505644, 505979, 505980, 506042, 506043, 506433, 506576, 506880, 508477, 509680, 509695, 510096, 511401, 512915, 512952, 513438, 513936, 513974, 514089, 514345, 515330, 516145, 516181, 517041, 517321, 517337, 517808, 517820, 517821, 518062, 518232, 518534, 518747, 518782, 518788, 518789, 518790, 518791, 518792, 518793, 518794, 518795, 518851, 519388, 519539, 521283] >>> gl.processlist["521626"] {'cmdline': ['venv/bin/python', '-m', 'glances', '-C', 'conf/glances.conf', '--api-doc'], 'cpu_percent': 77.5, 'cpu_times': {'children_system': 0.02, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.26, 'user': 0.4}, 'gids': {'effective': 1000, 'real': 1000, 'saved': 1000}, 'io_counters': [0, 8192, 0, 8192, 1, 173678592, 32735232, 173678592, 32735232, 1, 118784, 20480, 118784, 20480, 1, 26533888, 0, 26533888, 0, 1, 25726976, 0, 25726976, 0, 1, 4841472, 0, 4841472, 0, 1, 173678592, 32735232, 173678592, 32735232, 1, 118784, 20480, 118784, 20480, 1, 26533888, 0, 26533888, 0, 1, 25726976, 0, 25726976, 0, 1, 4841472, 0, 4841472, 0, 1], 'key': 'pid', 'memory_info': {'data': 98783232, 'dirty': 0, 'lib': 0, 'rss': 63594496, 'shared': 17338368, 'text': 3026944, 'vms': 530706432}, 'memory_percent': 0.38725698539168674, 'name': 'python', 'nice': 0, 'num_threads': 5, 'pid': 521626, 'status': 'R', 'time_since_update': 0.31589508056640625, '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': 1.23095703125, 'min15': 0.7724609375, 'min5': 0.85546875} >>> gl.load.keys() ['min1', 'min5', 'min15', 'cpucore'] >>> gl.load["min1"] 1.23095703125 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=