.. _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': 134429472, 'guest': 0.0, 'idle': 85.0, 'interrupts': 78024545, 'iowait': 0.7, 'irq': 0.0, 'nice': 0.0, 'soft_interrupts': 40587496, 'steal': 0.0, 'syscalls': 0, 'system': 7.6, 'total': 15.5, 'user': 6.7} >>> gl.cpu["total"] 15.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', 'ipv6leakintrf0', 'pvpnksintrf0'] >>> gl.network["wlp0s20f3"] {'alias': None, 'bytes_all': 0, 'bytes_all_gauge': 15386705726, 'bytes_all_rate_per_sec': 0.0, 'bytes_recv': 0, 'bytes_recv_gauge': 14056592911, 'bytes_recv_rate_per_sec': 0.0, 'bytes_sent': 0, 'bytes_sent_gauge': 1330112815, 'bytes_sent_rate_per_sec': 0.0, 'interface_name': 'wlp0s20f3', 'key': 'interface_name', 'speed': 0, 'time_since_update': 0.14711403846740723} Init Glances Python API ----------------------- Init the Glances API: .. code-block:: python >>> from glances import api >>> gl = api.GlancesAPI() Get Glances plugins list ------------------------ Get the plugins list: .. code-block:: python >>> gl.plugins() ['alert', 'ports', 'diskio', 'containers', 'processcount', 'programlist', 'gpu', 'percpu', 'system', 'network', 'cpu', 'amps', 'processlist', 'load', 'sensors', 'uptime', 'now', 'fs', 'wifi', 'ip', 'help', 'version', 'psutilversion', 'core', 'mem', 'folders', 'quicklook', 'memswap'] ``` Glances alert ------------- Alert stats: .. code-block:: python >>> gl.alert Return a object >>> gl.alert [{'avg': 73.54693238718207, 'begin': 1753625887, 'count': 2, 'desc': '', 'end': -1, 'global_msg': 'High memory consumption', 'max': 73.61410247616435, 'min': 73.47976229819977, 'sort': 'memory_percent', 'state': 'WARNING', 'sum': 147.09386477436414, 'top': [], 'type': 'MEM'}] Alert fields description: * begin: Begin timestamp of the event * end: End timestamp of the event (or -1 if ongoing) * state: State of the event (WARNING|CRITICAL) * type: Type of the event (CPU|LOAD|MEM) * max: Maximum value during the event period * avg: Average value during the event period * min: Minimum value during the event period * sum: Sum of the values during the event period * count: Number of values during the event period * top: Top 3 processes name during the event period * desc: Description of the event * sort: Sort key of the top processes * global_msg: Global alert message Alert limits: .. code-block:: python >>> gl.alert.limits {'alert_disable': ['False'], 'history_size': 1200.0} Glances ports ------------- Ports stats: .. code-block:: python >>> gl.ports Return a object >>> gl.ports [] 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': 34435546624, 'read_count': 525204, 'write_bytes': 19894150144, 'write_count': 547870} Diskio fields description: * disk_name: Disk name. * read_count: Number of reads. * write_count: Number of writes. * read_bytes: Number of bytes read. * write_bytes: Number of bytes written. Diskio limits: .. code-block:: python >>> gl.diskio.limits {'diskio_disable': ['False'], 'diskio_hide': ['loop.*', '/dev/loop.*'], 'diskio_hide_zero': ['False'], 'history_size': 1200.0} Glances containers ------------------ Containers stats: .. code-block:: python >>> gl.containers Return a object >>> gl.containers [] Containers fields description: * name: Container name * id: Container ID * image: Container image * status: Container status * created: Container creation date * command: Container command * cpu_percent: Container CPU consumption * memory_inactive_file: Container memory inactive file * memory_limit: Container memory limit * memory_usage: Container memory usage * io_rx: Container IO bytes read rate * io_wx: Container IO bytes write rate * network_rx: Container network RX bitrate * network_tx: Container network TX bitrate * uptime: Container uptime * engine: Container engine (Docker and Podman are currently supported) * pod_name: Pod name (only with Podman) * pod_id: Pod ID (only with Podman) Containers limits: .. code-block:: python >>> gl.containers.limits {'containers_all': ['False'], 'containers_disable': ['False'], 'containers_max_name_size': 20.0, 'history_size': 1200.0} Glances processcount -------------------- Processcount stats: .. code-block:: python >>> gl.processcount Return a object >>> gl.processcount {'pid_max': 0, 'running': 2, 'sleeping': 408, 'thread': 1953, 'total': 537} >>> gl.processcount.keys() ['total', 'running', 'sleeping', 'thread', 'pid_max'] >>> gl.processcount["total"] 537 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': [45624, 46264, 45552, 47319, 45398, 45635, 45634, 45711, 45516, 46641, 340364, 46497, 45497, 45401, 45400], 'cmdline': ['code'], 'cpu_percent': 113.7, 'cpu_times': {'children_system': 1194.5500000000002, 'children_user': 274.73, 'system': 1086.85, 'user': 5613.1}, 'io_counters': [762354688, 303865856, 762354688, 303865856, 1, 73490432, 1728512, 73490432, 1728512, 1, 43582464, 249856, 43582464, 249856, 1, 77307904, 0, 77307904, 0, 1, 70991872, 55152640, 70991872, 55152640, 1, 25166848, 0, 25166848, 0, 1, 128754688, 1858166784, 128754688, 1858166784, 1, 1007616, 4096, 1007616, 4096, 1, 4467712, 0, 4467712, 0, 1, 4739072, 0, 4739072, 0, 1, 6306816, 0, 6306816, 0, 1, 133120, 0, 133120, 0, 1, 6281216, 4370432, 6281216, 4370432, 1, 3007488, 0, 3007488, 0, 1, 1037312, 0, 1037312, 0, 1, 73490432, 1728512, 73490432, 1728512, 1, 43582464, 249856, 43582464, 249856, 1, 77307904, 0, 77307904, 0, 1, 70991872, 55152640, 70991872, 55152640, 1, 25166848, 0, 25166848, 0, 1, 128754688, 1858166784, 128754688, 1858166784, 1, 1007616, 4096, 1007616, 4096, 1, 4467712, 0, 4467712, 0, 1, 4739072, 0, 4739072, 0, 1, 6306816, 0, 6306816, 0, 1, 133120, 0, 133120, 0, 1, 6281216, 4370432, 6281216, 4370432, 1, 3007488, 0, 3007488, 0, 1, 1037312, 0, 1037312, 0, 1], 'memory_info': {'data': 15289049088, 'rss': 6911520768, 'shared': 1141354496, 'text': 2144010240, 'vms': 16628237463552}, 'memory_percent': 42.087510678497715, 'name': 'code', 'nice': 0, 'nprocs': 15, 'num_threads': 269, 'pid': '_', 'status': '_', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [47073], 'cmdline': ['cloudcode_cli'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 6.05, 'user': 89.82}, 'io_counters': [350199808, 0, 350199808, 0, 1], 'memory_info': {'data': 1606074368, 'dirty': 0, 'lib': 0, 'rss': 1002352640, 'shared': 36065280, 'text': 34099200, 'vms': 2865463296}, 'memory_percent': 6.103798115595907, 'name': 'cloudcode_cli', 'nice': 0, 'nprocs': 1, 'num_threads': 21, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6462], 'cmdline': ['WebExtensions'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 34.3, 'user': 190.51}, 'io_counters': [7616512, 0, 7616512, 0, 1], 'memory_info': {'data': 1063202816, 'dirty': 0, 'lib': 0, 'rss': 639922176, 'shared': 113635328, 'text': 868352, 'vms': 25247002624}, 'memory_percent': 3.896788032599817, 'name': 'WebExtensions', 'nice': 0, 'nprocs': 1, 'num_threads': 29, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6208], 'cmdline': ['firefox'], 'cpu_percent': 0, 'cpu_times': {'children_system': 51.93, 'children_user': 371.35, 'iowait': 0.0, 'system': 195.24, 'user': 604.93}, 'io_counters': [704898048, 1444118528, 704898048, 1444118528, 1], 'memory_info': {'data': 860975104, 'dirty': 0, 'lib': 0, 'rss': 583471104, 'shared': 272142336, 'text': 868352, 'vms': 29852487680}, 'memory_percent': 3.5530308226652285, 'name': 'firefox', 'nice': 0, 'nprocs': 1, 'num_threads': 141, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [7116, 7109, 7112, 8243, 8352], 'cmdline': ['Isolated Web Co'], 'cpu_percent': 0, 'cpu_times': {'system': 65.03, 'user': 301.62}, 'io_counters': [4024320, 0, 4024320, 0, 1, 6084608, 0, 6084608, 0, 1, 428032, 0, 428032, 0, 1, 606208, 0, 606208, 0, 1, 1788928, 0, 1788928, 0, 1, 6084608, 0, 6084608, 0, 1, 428032, 0, 428032, 0, 1, 606208, 0, 606208, 0, 1, 1788928, 0, 1788928, 0, 1], 'memory_info': {'data': 1712529408, 'rss': 1421754368, 'shared': 555151360, 'text': 4341760, 'vms': 14480138240}, 'memory_percent': 8.657733103031136, 'name': 'Isolated Web Co', 'nice': 0, 'nprocs': 5, 'num_threads': 158, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4995], 'cmdline': ['gnome-shell'], 'cpu_percent': 0, 'cpu_times': {'children_system': 229.3, 'children_user': 314.9, 'iowait': 0.0, 'system': 198.8, 'user': 369.31}, 'io_counters': [1365386240, 11321536512, 1365386240, 11321536512, 1], 'memory_info': {'data': 460767232, 'dirty': 0, 'lib': 0, 'rss': 348917760, 'shared': 128860160, 'text': 8192, 'vms': 5105086464}, 'memory_percent': 2.1247248533070606, 'name': 'gnome-shell', 'nice': 0, 'nprocs': 1, 'num_threads': 24, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5390], 'cmdline': ['dropbox'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.09, 'children_user': 0.03, 'iowait': 0.0, 'system': 9.58, 'user': 50.72}, 'io_counters': [148951040, 16478208, 148951040, 16478208, 1], 'memory_info': {'data': 861900800, 'dirty': 0, 'lib': 0, 'rss': 241184768, 'shared': 42639360, 'text': 4096, 'vms': 7255990272}, 'memory_percent': 1.4686878386720625, 'name': 'dropbox', 'nice': 0, 'nprocs': 1, 'num_threads': 91, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2962], 'cmdline': ['multipassd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.45, 'children_user': 0.03, 'iowait': 0.0, 'system': 8.73, 'user': 12.01}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1261666304, 'dirty': 0, 'lib': 0, 'rss': 208052224, 'shared': 39161856, 'text': 13213696, 'vms': 3426045952}, 'memory_percent': 1.2669281469610711, 'name': 'multipassd', 'nice': 0, 'nprocs': 1, 'num_threads': 25, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [7374], 'cmdline': ['protonvpn-app'], 'cpu_percent': 0, 'cpu_times': {'children_system': 11.16, 'children_user': 3.39, 'iowait': 0.0, 'system': 3.12, 'user': 20.76}, 'io_counters': [101318656, 312680448, 101318656, 312680448, 1], 'memory_info': {'data': 305930240, 'dirty': 0, 'lib': 0, 'rss': 184496128, 'shared': 52305920, 'text': 3026944, 'vms': 2478673920}, 'memory_percent': 1.1234839651054755, 'name': 'protonvpn-app', 'nice': 0, 'nprocs': 1, 'num_threads': 32, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6493], 'cmdline': ['Privileged Cont'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 7.41, 'user': 22.53}, 'io_counters': [4107264, 0, 4107264, 0, 1], 'memory_info': {'data': 149880832, 'dirty': 0, 'lib': 0, 'rss': 173699072, 'shared': 105644032, 'text': 868352, 'vms': 2612191232}, 'memory_percent': 1.0577355972787759, 'name': 'Privileged Cont', 'nice': 0, 'nprocs': 1, 'num_threads': 28, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5629], 'cmdline': ['xdg-desktop-portal-gnome'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 14.6, 'user': 32.38}, 'io_counters': [4251648, 1032192, 4251648, 1032192, 1], 'memory_info': {'data': 170250240, 'dirty': 0, 'lib': 0, 'rss': 109297664, 'shared': 77246464, 'text': 245760, 'vms': 1877757952}, 'memory_percent': 0.6655650406250584, 'name': 'xdg-desktop-portal-gnome', 'nice': 0, 'nprocs': 1, 'num_threads': 10, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5940], 'cmdline': ['Xwayland'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.01, 'iowait': 0.0, 'system': 47.88, 'user': 57.51}, 'io_counters': [2174976, 4096, 2174976, 4096, 1], 'memory_info': {'data': 78446592, 'dirty': 0, 'lib': 0, 'rss': 106962944, 'shared': 79138816, 'text': 1691648, 'vms': 741588992}, 'memory_percent': 0.6513478290692092, 'name': 'Xwayland', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [46240, 446435, 46202, 46203], 'cmdline': ['python'], 'cpu_percent': 76.6, 'cpu_times': {'children_system': 0.02, 'system': 1.7100000000000002, 'user': 11.969999999999999}, 'io_counters': [85905408, 8351744, 85905408, 8351744, 1, 0, 8192, 0, 8192, 1, 2719744, 0, 2719744, 0, 1, 2990080, 0, 2990080, 0, 1, 0, 8192, 0, 8192, 1, 2719744, 0, 2719744, 0, 1, 2990080, 0, 2990080, 0, 1], 'memory_info': {'data': 375451648, 'rss': 259641344, 'shared': 45228032, 'text': 12107776, 'vms': 1672159232}, 'memory_percent': 1.5810786373925136, 'name': 'python', 'nice': 0, 'nprocs': 4, 'num_threads': 20, 'pid': '_', 'status': '_', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5230], 'cmdline': ['evolution-alarm-notify'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.25}, 'io_counters': [5320704, 0, 5320704, 0, 1], 'memory_info': {'data': 89530368, 'dirty': 0, 'lib': 0, 'rss': 99209216, 'shared': 84701184, 'text': 20480, 'vms': 1092755456}, 'memory_percent': 0.6041317212179411, 'name': 'evolution-alarm-notify', 'nice': 0, 'nprocs': 1, 'num_threads': 8, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5979], 'cmdline': ['mutter-x11-frames'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.21, 'user': 2.24}, 'io_counters': [98304, 0, 98304, 0, 1], 'memory_info': {'data': 134938624, 'dirty': 0, 'lib': 0, 'rss': 98213888, 'shared': 74055680, 'text': 12288, 'vms': 1343553536}, 'memory_percent': 0.5980706994493948, 'name': 'mutter-x11-frames', 'nice': 0, 'nprocs': 1, 'num_threads': 10, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [78337], 'cmdline': ['Isolated Servic'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.57, 'user': 1.57}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 62918656, 'dirty': 0, 'lib': 0, 'rss': 96993280, 'shared': 79728640, 'text': 868352, 'vms': 2512936960}, 'memory_percent': 0.5906378414780912, 'name': 'Isolated Servic', 'nice': 0, 'nprocs': 1, 'num_threads': 29, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5131], 'cmdline': ['evolution-source-registry'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, 'user': 0.37}, 'io_counters': [19574784, 0, 19574784, 0, 1], 'memory_info': {'data': 85872640, 'dirty': 0, 'lib': 0, 'rss': 94027776, 'shared': 78430208, 'text': 45056, 'vms': 1487003648}, 'memory_percent': 0.5725794885545211, 'name': 'evolution-source-registry', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3548], 'cmdline': ['dockerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.26, 'children_user': 0.14, 'iowait': 0.0, 'system': 1.0, 'user': 4.79}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 628375552, 'dirty': 0, 'lib': 0, 'rss': 88817664, 'shared': 58990592, 'text': 32280576, 'vms': 6342905856}, 'memory_percent': 0.5408526585562048, 'name': 'dockerd', 'nice': 0, 'nprocs': 1, 'num_threads': 66, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [93349, 110439, 221136], 'cmdline': ['Web Content'], 'cpu_percent': 0, 'cpu_times': {'system': 0.23, 'user': 0.29000000000000004}, 'io_counters': [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 11264, 0, 11264, 0, 1, 0, 0, 0, 0, 1, 11264, 0, 11264, 0, 1], 'memory_info': {'data': 134610944, 'rss': 253497344, 'shared': 209719296, 'text': 2605056, 'vms': 7486017536}, 'memory_percent': 1.5436649227718573, 'name': 'Web Content', 'nice': 0, 'nprocs': 3, 'num_threads': 70, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [43195], 'cmdline': ['terminator'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.68, 'user': 14.59}, 'io_counters': [8560640, 61440, 8560640, 61440, 1], 'memory_info': {'data': 90501120, 'dirty': 0, 'lib': 0, 'rss': 72638464, 'shared': 53448704, 'text': 3026944, 'vms': 700964864}, 'memory_percent': 0.44232987672181034, 'name': 'terminator', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5952], 'cmdline': ['gsd-xsettings'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.01, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.33, 'user': 0.56}, 'io_counters': [7520256, 0, 7520256, 0, 1], 'memory_info': {'data': 70987776, 'dirty': 0, 'lib': 0, 'rss': 64897024, 'shared': 61444096, 'text': 32768, 'vms': 794734592}, 'memory_percent': 0.39518859629978365, 'name': 'gsd-xsettings', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [137563, 5601, 5143], 'cmdline': ['gjs'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.01, 'children_user': 0.03, 'system': 0.12000000000000001, 'user': 0.71}, 'io_counters': [802816, 0, 802816, 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': 190799872, 'rss': 105512960, 'shared': 79699968, 'text': 24576, 'vms': 9071104000}, 'memory_percent': 0.6425181924187342, 'name': 'gjs', 'nice': 0, 'nprocs': 3, 'num_threads': 37, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6467], 'cmdline': ['RDD Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.1, 'user': 0.09}, 'io_counters': [7310336, 0, 7310336, 0, 1], 'memory_info': {'data': 62144512, 'dirty': 0, 'lib': 0, 'rss': 56672256, 'shared': 53493760, 'text': 868352, 'vms': 409309184}, 'memory_percent': 0.34510410366093197, 'name': 'RDD Process', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6926], 'cmdline': ['Utility Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.11}, 'io_counters': [179200, 0, 179200, 0, 1], 'memory_info': {'data': 59768832, 'dirty': 0, 'lib': 0, 'rss': 51740672, 'shared': 48726016, 'text': 868352, 'vms': 370561024}, 'memory_percent': 0.31507336205875197, 'name': 'Utility Process', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2976], 'cmdline': ['containerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 11.12, 'user': 13.49}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 217669632, 'dirty': 0, 'lib': 0, 'rss': 48619520, 'shared': 33853440, 'text': 20078592, 'vms': 2754002944}, 'memory_percent': 0.2960671950314587, 'name': 'containerd', 'nice': 0, 'nprocs': 1, 'num_threads': 20, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [11995], 'cmdline': ['fwupd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.03, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.51, 'user': 2.71}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 174780416, 'dirty': 0, 'lib': 0, 'rss': 47161344, 'shared': 37896192, 'text': 36864, 'vms': 610643968}, 'memory_percent': 0.2871876734281563, 'name': 'fwupd', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [746], 'cmdline': ['systemd-journald'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.75, 'user': 2.89}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 26619904, 'dirty': 0, 'lib': 0, 'rss': 45588480, 'shared': 44408832, 'text': 114688, 'vms': 94195712}, 'memory_percent': 0.27760976248526836, 'name': 'systemd-journald', 'nice': -1, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5438], 'cmdline': ['evolution-calendar-factory'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.43, 'user': 1.82}, 'io_counters': [14049280, 1482752, 14049280, 1482752, 1], 'memory_info': {'data': 191840256, 'dirty': 0, 'lib': 0, 'rss': 45195264, 'shared': 30031872, 'text': 45056, 'vms': 2198732800}, 'memory_percent': 0.2752152847495464, 'name': 'evolution-calendar-factory', 'nice': 0, 'nprocs': 1, 'num_threads': 16, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2621], 'cmdline': ['snapd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1.61, 'children_user': 14.45, 'iowait': 0.0, 'system': 3.96, 'user': 16.3}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 257048576, 'dirty': 0, 'lib': 0, 'rss': 43077632, 'shared': 24313856, 'text': 12349440, 'vms': 2953752576}, 'memory_percent': 0.2623200244436269, 'name': 'snapd', 'nice': 0, 'nprocs': 1, 'num_threads': 23, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [6448], 'cmdline': ['Socket Process'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.04, 'user': 0.03}, 'io_counters': [180224, 0, 180224, 0, 1], 'memory_info': {'data': 14684160, 'dirty': 0, 'lib': 0, 'rss': 41050112, 'shared': 40394752, 'text': 868352, 'vms': 231690240}, 'memory_percent': 0.24997349861881038, 'name': 'Socket Process', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5581], 'cmdline': ['tracker-miner-fs-3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1.47, 'children_user': 38.48, 'iowait': 0.0, 'system': 1.53, 'user': 7.98}, 'io_counters': [1419399168, 701100032, 1419399168, 701100032, 1], 'memory_info': {'data': 143396864, 'dirty': 0, 'lib': 0, 'rss': 40108032, 'shared': 18305024, 'text': 151552, 'vms': 912887808}, 'memory_percent': 0.2442367290436431, 'name': 'tracker-miner-fs-3', 'nice': 19, 'nprocs': 1, 'num_threads': 8, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5387], 'cmdline': ['goa-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.17, 'user': 0.7}, 'io_counters': [2088960, 0, 2088960, 0, 1], 'memory_info': {'data': 82857984, 'dirty': 0, 'lib': 0, 'rss': 38408192, 'shared': 23932928, 'text': 24576, 'vms': 1047326720}, 'memory_percent': 0.23388560133192826, 'name': 'goa-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [8117], 'cmdline': ['update-notifier'], 'cpu_percent': 0, 'cpu_times': {'children_system': 1.01, 'children_user': 1.91, 'iowait': 0.0, 'system': 0.36, 'user': 0.45}, 'io_counters': [4231168, 28672, 4231168, 28672, 1], 'memory_info': {'data': 57954304, 'dirty': 0, 'lib': 0, 'rss': 30298112, 'shared': 23379968, 'text': 40960, 'vms': 508325888}, 'memory_percent': 0.18449949803266216, 'name': 'update-notifier', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5474], 'cmdline': ['evolution-addressbook-factory'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.11}, 'io_counters': [3006464, 36864, 3006464, 36864, 1], 'memory_info': {'data': 87953408, 'dirty': 0, 'lib': 0, 'rss': 27901952, 'shared': 25804800, 'text': 4096, 'vms': 845574144}, 'memory_percent': 0.1699081493306063, 'name': 'evolution-addressbook-factory', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5122], 'cmdline': ['gnome-shell-calendar-server'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.38}, 'io_counters': [9179136, 0, 9179136, 0, 1], 'memory_info': {'data': 89145344, 'dirty': 0, 'lib': 0, 'rss': 21942272, 'shared': 18087936, 'text': 16384, 'vms': 1091186688}, 'memory_percent': 0.13361684614856986, 'name': 'gnome-shell-calendar-server', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5169], 'cmdline': ['gsd-power'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.14, 'user': 0.6}, 'io_counters': [376832, 0, 376832, 0, 1], 'memory_info': {'data': 54435840, 'dirty': 0, 'lib': 0, 'rss': 21323776, 'shared': 18571264, 'text': 45056, 'vms': 536956928}, 'memory_percent': 0.12985053221009046, 'name': 'gsd-power', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2970], 'cmdline': ['unattended-upgr'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.04}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 19689472, 'dirty': 0, 'lib': 0, 'rss': 21282816, 'shared': 11190272, 'text': 3026944, 'vms': 120745984}, 'memory_percent': 0.12960110744595277, 'name': 'unattended-upgr', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5324], 'cmdline': ['ibus-extension-gtk3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.39, 'user': 2.89}, 'io_counters': [1974272, 0, 1974272, 0, 1], 'memory_info': {'data': 53653504, 'dirty': 0, 'lib': 0, 'rss': 20537344, 'shared': 16027648, 'text': 81920, 'vms': 431816704}, 'memory_percent': 0.12506157673864648, 'name': 'ibus-extension-gtk3', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3544], 'cmdline': ['cups-browsed'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.1}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 27582464, 'dirty': 0, 'lib': 0, 'rss': 20459520, 'shared': 17575936, 'text': 118784, 'vms': 275333120}, 'memory_percent': 0.12458766968678485, 'name': 'cups-browsed', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'cups-browsed'}, {'childrens': [2705], 'cmdline': ['NetworkManager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.06, 'children_user': 0.34, 'iowait': 0.0, 'system': 1.94, 'user': 3.47}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 37289984, 'dirty': 0, 'lib': 0, 'rss': 20234240, 'shared': 16826368, 'text': 2555904, 'vms': 346116096}, 'memory_percent': 0.12321583348402745, 'name': 'NetworkManager', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5645], 'cmdline': ['xdg-desktop-portal-gtk'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.3, 'user': 0.34}, 'io_counters': [712704, 0, 712704, 0, 1], 'memory_info': {'data': 49004544, 'dirty': 0, 'lib': 0, 'rss': 20140032, 'shared': 17125376, 'text': 135168, 'vms': 428773376}, 'memory_percent': 0.12264215652651074, 'name': 'xdg-desktop-portal-gtk', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5162], 'cmdline': ['gsd-media-keys'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.28}, 'io_counters': [294912, 0, 294912, 0, 1], 'memory_info': {'data': 71229440, 'dirty': 0, 'lib': 0, 'rss': 19505152, 'shared': 18063360, 'text': 102400, 'vms': 760135680}, 'memory_percent': 0.11877607268237628, 'name': 'gsd-media-keys', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [46207], 'cmdline': ['ruff'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.21, 'user': 0.49}, 'io_counters': [21237760, 0, 21237760, 0, 1], 'memory_info': {'data': 109965312, 'dirty': 0, 'lib': 0, 'rss': 19173376, 'shared': 10424320, 'text': 22511616, 'vms': 1082929152}, 'memory_percent': 0.11675573209286084, 'name': 'ruff', 'nice': 0, 'nprocs': 1, 'num_threads': 9, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5976], 'cmdline': ['ibus-x11'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.16}, 'io_counters': [249856, 0, 249856, 0, 1], 'memory_info': {'data': 32161792, 'dirty': 0, 'lib': 0, 'rss': 18542592, 'shared': 15994880, 'text': 77824, 'vms': 273711104}, 'memory_percent': 0.11291459072514014, 'name': 'ibus-x11', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2651], 'cmdline': ['udisksd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.12, 'user': 0.51}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 54923264, 'dirty': 0, 'lib': 0, 'rss': 18350080, 'shared': 14155776, 'text': 319488, 'vms': 482623488}, 'memory_percent': 0.11174229433369293, 'name': 'udisksd', 'nice': 0, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5225], 'cmdline': ['gsd-wacom'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.06}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 45596672, 'dirty': 0, 'lib': 0, 'rss': 16867328, 'shared': 14901248, 'text': 12288, 'vms': 422977536}, 'memory_percent': 0.10271311787190791, 'name': 'gsd-wacom', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4947, 4848], 'cmdline': ['gnome-session-binary'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.09, 'children_user': 0.19999999999999998, 'system': 0.05, 'user': 0.17}, 'io_counters': [10248192, 4096, 10248192, 4096, 1, 3624960, 0, 3624960, 0, 1, 3624960, 0, 3624960, 0, 1], 'memory_info': {'data': 80261120, 'rss': 32751616, 'shared': 29212672, 'text': 303104, 'vms': 839593984}, 'memory_percent': 0.19944004140451083, 'name': 'gnome-session-binary', 'nice': 0, 'nprocs': 2, 'num_threads': 9, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5147], 'cmdline': ['gsd-color'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.11}, 'io_counters': [81920, 0, 81920, 0, 1], 'memory_info': {'data': 45182976, 'dirty': 0, 'lib': 0, 'rss': 16633856, 'shared': 15192064, 'text': 24576, 'vms': 423747584}, 'memory_percent': 0.10129139671632298, 'name': 'gsd-color', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [1, 4683], 'cmdline': ['systemd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 185.87, 'children_user': 266.68, 'system': 3.5, 'user': 7.86}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 9646080, 'rss': 30416896, 'shared': 19304448, 'text': 90112, 'vms': 48336896}, 'memory_percent': 0.1852228298486615, 'name': 'systemd', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': '_'}, {'childrens': [2610], 'cmdline': ['gnome-remote-desktop-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 44306432, 'dirty': 0, 'lib': 0, 'rss': 15929344, 'shared': 14094336, 'text': 352256, 'vms': 449744896}, 'memory_percent': 0.09700129077315442, 'name': 'gnome-remote-desktop-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'gnome-remote-desktop'}, {'childrens': [2487], 'cmdline': ['systemd-resolved'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.95, 'user': 3.84}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 5582848, 'dirty': 0, 'lib': 0, 'rss': 15822848, 'shared': 10579968, 'text': 360448, 'vms': 25710592}, 'memory_percent': 0.09635278638639637, 'name': 'systemd-resolved', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'systemd-resolve'}, {'childrens': [5155], 'cmdline': ['gsd-keyboard'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.05}, 'io_counters': [4096, 0, 4096, 0, 1], 'memory_info': {'data': 45019136, 'dirty': 0, 'lib': 0, 'rss': 15699968, 'shared': 14258176, 'text': 12288, 'vms': 421974016}, 'memory_percent': 0.09560451209398324, 'name': 'gsd-keyboard', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2655], 'cmdline': ['virtlogd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1241088, 'dirty': 0, 'lib': 0, 'rss': 15237120, 'shared': 13533184, 'text': 40960, 'vms': 75591680}, 'memory_percent': 0.09278601225922715, 'name': 'virtlogd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [6546], 'cmdline': ['snap'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.31, 'children_user': 0.27, 'iowait': 0.0, 'system': 1.23, 'user': 1.15}, 'io_counters': [4259840, 0, 4259840, 0, 1], 'memory_info': {'data': 145805312, 'dirty': 0, 'lib': 0, 'rss': 15196160, 'shared': 6811648, 'text': 8859648, 'vms': 2111332352}, 'memory_percent': 0.09253658749508946, 'name': 'snap', 'nice': 0, 'nprocs': 1, 'num_threads': 12, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2653], 'cmdline': ['virtlockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1241088, 'dirty': 0, 'lib': 0, 'rss': 15056896, 'shared': 13352960, 'text': 40960, 'vms': 75587584}, 'memory_percent': 0.09168854329702124, 'name': 'virtlockd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [3018], 'cmdline': ['colord'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.16, 'children_user': 0.1, 'iowait': 0.0, 'system': 0.02, 'user': 0.1}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 38928384, 'dirty': 0, 'lib': 0, 'rss': 14671872, 'shared': 10346496, 'text': 94208, 'vms': 328159232}, 'memory_percent': 0.0893439505141268, 'name': 'colord', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'colord'}, {'childrens': [4704], 'cmdline': ['wireplumber'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.11, 'user': 0.13}, 'io_counters': [1437696, 16384, 1437696, 16384, 1], 'memory_info': {'data': 54775808, 'dirty': 0, 'lib': 0, 'rss': 14508032, 'shared': 11493376, 'text': 8192, 'vms': 416231424}, 'memory_percent': 0.08834625145757596, 'name': 'wireplumber', 'nice': -11, 'nprocs': 1, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5394], 'cmdline': ['gsd-printer'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.02}, 'io_counters': [32768, 0, 32768, 0, 1], 'memory_info': {'data': 43978752, 'dirty': 0, 'lib': 0, 'rss': 14438400, 'shared': 13127680, 'text': 12288, 'vms': 426344448}, 'memory_percent': 0.08792222935854185, 'name': 'gsd-printer', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3552], 'cmdline': ['snmpd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 10.76, 'user': 3.96}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 3727360, 'dirty': 0, 'lib': 0, 'rss': 13180928, 'shared': 9904128, 'text': 12288, 'vms': 26480640}, 'memory_percent': 0.08026488909951425, 'name': 'snmpd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'Debian-snmp'}, {'childrens': [5623], 'cmdline': ['xdg-desktop-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.16, 'children_user': 0.13, 'iowait': 0.0, 'system': 0.45, 'user': 0.55}, 'io_counters': [1721344, 0, 1721344, 0, 1], 'memory_info': {'data': 86876160, 'dirty': 0, 'lib': 0, 'rss': 13168640, 'shared': 11337728, 'text': 450560, 'vms': 718872576}, 'memory_percent': 0.08019006167027293, 'name': 'xdg-desktop-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4700, 4701], 'cmdline': ['pipewire'], 'cpu_percent': 0, 'cpu_times': {'system': 0.26, 'user': 0.15000000000000002}, 'io_counters': [348160, 0, 348160, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 50503680, 'rss': 17981440, 'shared': 11952128, 'text': 8192, 'vms': 220393472}, 'memory_percent': 0.10949747145645355, 'name': 'pipewire', 'nice': '_', 'nprocs': 2, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5875, 5803], 'cmdline': ['snapd-desktop-integration'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.03, 'children_user': 0.01, 'system': 0.11, 'user': 0.34}, 'io_counters': [6334464, 0, 6334464, 0, 1, 47104, 0, 47104, 0, 1, 47104, 0, 47104, 0, 1], 'memory_info': {'data': 54161408, 'rss': 20574208, 'shared': 16228352, 'text': 589824, 'vms': 480927744}, 'memory_percent': 0.12528605902637044, 'name': 'snapd-desktop-integration', 'nice': 0, 'nprocs': 2, 'num_threads': 6, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2616], 'cmdline': ['polkitd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.72, 'user': 1.16}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 47484928, 'dirty': 0, 'lib': 0, 'rss': 12472320, 'shared': 8404992, 'text': 65536, 'vms': 401465344}, 'memory_percent': 0.07594984067993191, 'name': 'polkitd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'polkitd'}, {'childrens': [3433, 2946], 'cmdline': ['cupsd'], 'cpu_percent': 0, 'cpu_times': {'system': 0.29000000000000004, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 11173888, 'rss': 24121344, 'shared': 20713472, 'text': 614400, 'vms': 104898560}, 'memory_percent': 0.1468862436006959, 'name': 'cupsd', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5149], 'cmdline': ['gsd-datetime'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43704320, 'dirty': 0, 'lib': 0, 'rss': 12431360, 'shared': 11251712, 'text': 20480, 'vms': 442417152}, 'memory_percent': 0.0757004159157942, 'name': 'gsd-datetime', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2828], 'cmdline': ['ModemManager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.13, 'user': 0.09}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 44400640, 'dirty': 0, 'lib': 0, 'rss': 12394496, 'shared': 10690560, 'text': 1196032, 'vms': 401653760}, 'memory_percent': 0.07547593362807026, 'name': 'ModemManager', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5254], 'cmdline': ['gvfs-udisks2-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.47, 'user': 1.97}, 'io_counters': [192512, 0, 192512, 0, 1], 'memory_info': {'data': 53661696, 'dirty': 0, 'lib': 0, 'rss': 11927552, 'shared': 9437184, 'text': 94208, 'vms': 474787840}, 'memory_percent': 0.07263249131690039, 'name': 'gvfs-udisks2-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4705], 'cmdline': ['pipewire-pulse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.12, 'user': 0.09}, 'io_counters': [49152, 0, 49152, 0, 1], 'memory_info': {'data': 31698944, 'dirty': 0, 'lib': 0, 'rss': 11714560, 'shared': 9793536, 'text': 4096, 'vms': 125833216}, 'memory_percent': 0.07133548254338432, 'name': 'pipewire-pulse', 'nice': -11, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2707], 'cmdline': ['wpa_supplicant'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.33, 'user': 0.48}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1425408, 'dirty': 0, 'lib': 0, 'rss': 11296768, 'shared': 9986048, 'text': 2387968, 'vms': 18817024}, 'memory_percent': 0.06879134994917971, 'name': 'wpa_supplicant', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5174], 'cmdline': ['gsd-print-notifications'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.01}, 'io_counters': [192512, 0, 192512, 0, 1], 'memory_info': {'data': 35254272, 'dirty': 0, 'lib': 0, 'rss': 11108352, 'shared': 10715136, 'text': 20480, 'vms': 331653120}, 'memory_percent': 0.06764399603414625, 'name': 'gsd-print-notifications', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5199], 'cmdline': ['gsd-sharing'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.31, 'user': 1.44}, 'io_counters': [188416, 0, 188416, 0, 1], 'memory_info': {'data': 61153280, 'dirty': 0, 'lib': 0, 'rss': 11034624, 'shared': 9986048, 'text': 16384, 'vms': 556736512}, 'memory_percent': 0.06719503145869837, 'name': 'gsd-sharing', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3530], 'cmdline': ['thermald'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.83, 'user': 0.79}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 43474944, 'dirty': 0, 'lib': 0, 'rss': 11005952, 'shared': 10219520, 'text': 348160, 'vms': 435154944}, 'memory_percent': 0.06702043412380199, 'name': 'thermald', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [4660], 'cmdline': ['gdm-session-worker'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.16, 'children_user': 0.18, 'iowait': 0.0, 'system': 0.06, 'user': 0.06}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 44285952, 'dirty': 0, 'lib': 0, 'rss': 10944512, 'shared': 9633792, 'text': 131072, 'vms': 399704064}, 'memory_percent': 0.06664629697759543, 'name': 'gdm-session-worker', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [4708], 'cmdline': ['gnome-keyring-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.12, 'user': 0.42}, 'io_counters': [3346432, 274432, 3346432, 274432, 1], 'memory_info': {'data': 52318208, 'dirty': 0, 'lib': 0, 'rss': 10559488, 'shared': 9641984, 'text': 577536, 'vms': 475709440}, 'memory_percent': 0.06430170419470098, 'name': 'gnome-keyring-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [55223], 'cmdline': ['gvfsd-http'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [737280, 0, 737280, 0, 1], 'memory_info': {'data': 35053568, 'dirty': 0, 'lib': 0, 'rss': 9814016, 'shared': 8896512, 'text': 20480, 'vms': 328187904}, 'memory_percent': 0.059762173487394696, 'name': 'gvfsd-http', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2929], 'cmdline': ['upowerd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 7.84, 'user': 0.53}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 36315136, 'dirty': 0, 'lib': 0, 'rss': 9658368, 'shared': 7692288, 'text': 81920, 'vms': 325550080}, 'memory_percent': 0.058814359383671404, 'name': 'upowerd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5145], 'cmdline': ['ibus-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.25, 'user': 8.73}, 'io_counters': [446464, 8192, 446464, 8192, 1], 'memory_info': {'data': 47923200, 'dirty': 0, 'lib': 0, 'rss': 9613312, 'shared': 7483392, 'text': 110592, 'vms': 398450688}, 'memory_percent': 0.058539992143119925, 'name': 'ibus-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5223], 'cmdline': ['gsd-sound'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43753472, 'dirty': 0, 'lib': 0, 'rss': 9584640, 'shared': 8536064, 'text': 8192, 'vms': 403460096}, 'memory_percent': 0.05836539480822354, 'name': 'gsd-sound', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3434], 'cmdline': ['cups-proxyd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.34, 'user': 0.04}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 26611712, 'dirty': 0, 'lib': 0, 'rss': 9564160, 'shared': 8646656, 'text': 28672, 'vms': 247369728}, 'memory_percent': 0.058240682426154676, 'name': 'cups-proxyd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [3601], 'cmdline': ['gdm3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.04, 'children_user': 0.02, 'iowait': 0.0, 'system': 0.02, 'user': 0.05}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 35098624, 'dirty': 0, 'lib': 0, 'rss': 9547776, 'shared': 8630272, 'text': 233472, 'vms': 322641920}, 'memory_percent': 0.0581409125204996, 'name': 'gdm3', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [11634], 'cmdline': ['gvfsd-dnssd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.07}, 'io_counters': [40960, 0, 40960, 0, 1], 'memory_info': {'data': 43520000, 'dirty': 0, 'lib': 0, 'rss': 9170944, 'shared': 8384512, 'text': 16384, 'vms': 400244736}, 'memory_percent': 0.055846204690432694, 'name': 'gvfsd-dnssd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2636], 'cmdline': ['systemd-logind'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.4, 'children_user': 0.06, 'iowait': 0.0, 'system': 0.82, 'user': 0.48}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 950272, 'dirty': 0, 'lib': 0, 'rss': 9125888, 'shared': 7811072, 'text': 155648, 'vms': 18632704}, 'memory_percent': 0.055571837449881215, 'name': 'systemd-logind', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5404], 'cmdline': ['goa-identity-service'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.02}, 'io_counters': [200704, 0, 200704, 0, 1], 'memory_info': {'data': 43364352, 'dirty': 0, 'lib': 0, 'rss': 8863744, 'shared': 8077312, 'text': 65536, 'vms': 398757888}, 'memory_percent': 0.053975518959399886, 'name': 'goa-identity-service', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [8729], 'cmdline': ['gvfsd-recent'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.06}, 'io_counters': [204800, 0, 204800, 0, 1], 'memory_info': {'data': 44363776, 'dirty': 0, 'lib': 0, 'rss': 8790016, 'shared': 7520256, 'text': 16384, 'vms': 398778368}, 'memory_percent': 0.05352655438395201, 'name': 'gvfsd-recent', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [11597], 'cmdline': ['gvfsd-network'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.13}, 'io_counters': [40960, 0, 40960, 0, 1], 'memory_info': {'data': 60657664, 'dirty': 0, 'lib': 0, 'rss': 8765440, 'shared': 7979008, 'text': 16384, 'vms': 549273600}, 'memory_percent': 0.05337689952546939, 'name': 'gvfsd-network', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5542], 'cmdline': ['gvfsd-trash'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.42, 'user': 1.34}, 'io_counters': [337920, 0, 337920, 0, 1], 'memory_info': {'data': 69435392, 'dirty': 0, 'lib': 0, 'rss': 8761344, 'shared': 7974912, 'text': 24576, 'vms': 624521216}, 'memory_percent': 0.05335195704905561, 'name': 'gvfsd-trash', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5429], 'cmdline': ['gvfs-afc-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.95, 'user': 0.29}, 'io_counters': [98304, 0, 98304, 0, 1], 'memory_info': {'data': 43266048, 'dirty': 0, 'lib': 0, 'rss': 8318976, 'shared': 7401472, 'text': 40960, 'vms': 398839808}, 'memory_percent': 0.05065816959636838, 'name': 'gvfs-afc-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2488], 'cmdline': ['systemd-timesyncd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.07, 'user': 0.08}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 9158656, 'dirty': 0, 'lib': 0, 'rss': 8298496, 'shared': 7380992, 'text': 28672, 'vms': 93585408}, 'memory_percent': 0.05053345721429952, 'name': 'systemd-timesyncd', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'systemd-timesync'}, {'childrens': [5152], 'cmdline': ['gsd-housekeeping'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.31, 'user': 1.28}, 'io_counters': [466944, 0, 466944, 0, 1], 'memory_info': {'data': 52047872, 'dirty': 0, 'lib': 0, 'rss': 8212480, 'shared': 7557120, 'text': 24576, 'vms': 470396928}, 'memory_percent': 0.05000966520961034, 'name': 'gsd-housekeeping', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5247], 'cmdline': ['gsd-disk-utility-notify'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.04}, 'io_counters': [24576, 0, 24576, 0, 1], 'memory_info': {'data': 36171776, 'dirty': 0, 'lib': 0, 'rss': 8151040, 'shared': 6053888, 'text': 8192, 'vms': 312958976}, 'memory_percent': 0.04963552806340378, 'name': 'gsd-disk-utility-notify', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2831], 'cmdline': ['boltd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.13, 'user': 0.14}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34893824, 'dirty': 0, 'lib': 0, 'rss': 8089600, 'shared': 7565312, 'text': 167936, 'vms': 321400832}, 'memory_percent': 0.04926139091719721, 'name': 'boltd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2624], 'cmdline': ['accounts-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.21, 'user': 1.06}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34959360, 'dirty': 0, 'lib': 0, 'rss': 8040448, 'shared': 7385088, 'text': 90112, 'vms': 321167360}, 'memory_percent': 0.04896208120023196, 'name': 'accounts-daemon', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5204], 'cmdline': ['gsd-smartcard'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.02}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 43393024, 'dirty': 0, 'lib': 0, 'rss': 8032256, 'shared': 7507968, 'text': 36864, 'vms': 395452416}, 'memory_percent': 0.04891219624740443, 'name': 'gsd-smartcard', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2638], 'cmdline': ['systemd-machined'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.18, 'user': 0.23}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 851968, 'dirty': 0, 'lib': 0, 'rss': 7999488, 'shared': 7081984, 'text': 65536, 'vms': 18010112}, 'memory_percent': 0.04871265643609426, 'name': 'systemd-machined', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [783], 'cmdline': ['systemd-udevd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 8.1, 'children_user': 3.09, 'iowait': 0.0, 'system': 0.8, 'user': 0.78}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 3833856, 'dirty': 0, 'lib': 0, 'rss': 7823360, 'shared': 4415488, 'text': 864256, 'vms': 31686656}, 'memory_percent': 0.04764012995030212, 'name': 'systemd-udevd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [4936], 'cmdline': ['gvfsd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.43, 'children_user': 0.4, 'iowait': 0.0, 'system': 0.08, 'user': 0.12}, 'io_counters': [11612160, 0, 11612160, 0, 1], 'memory_info': {'data': 34897920, 'dirty': 0, 'lib': 0, 'rss': 7761920, 'shared': 7237632, 'text': 16384, 'vms': 322125824}, 'memory_percent': 0.047265992804095554, 'name': 'gvfsd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2486], 'cmdline': ['systemd-oomd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.17, 'user': 3.74}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 892928, 'dirty': 0, 'lib': 0, 'rss': 7700480, 'shared': 6914048, 'text': 28672, 'vms': 17977344}, 'memory_percent': 0.046891855657888996, 'name': 'systemd-oomd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'systemd-oom'}, {'childrens': [2613], 'cmdline': ['iio-sensor-proxy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.04, 'user': 0.73}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 35188736, 'dirty': 0, 'lib': 0, 'rss': 7692288, 'shared': 6905856, 'text': 36864, 'vms': 321552384}, 'memory_percent': 0.04684197070506145, 'name': 'iio-sensor-proxy', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [4994], 'cmdline': ['at-spi-bus-launcher'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [32768, 0, 32768, 0, 1], 'memory_info': {'data': 43323392, 'dirty': 0, 'lib': 0, 'rss': 7675904, 'shared': 7151616, 'text': 12288, 'vms': 392155136}, 'memory_percent': 0.04674220079940637, 'name': 'at-spi-bus-launcher', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4766], 'cmdline': ['xdg-document-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.05, 'user': 0.12}, 'io_counters': [159744, 0, 159744, 0, 1], 'memory_info': {'data': 70950912, 'dirty': 0, 'lib': 0, 'rss': 7618560, 'shared': 6963200, 'text': 110592, 'vms': 625213440}, 'memory_percent': 0.04639300612961358, 'name': 'xdg-document-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5503], 'cmdline': ['ibus-engine-simple'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.74, 'user': 2.83}, 'io_counters': [90112, 0, 90112, 0, 1], 'memory_info': {'data': 26308608, 'dirty': 0, 'lib': 0, 'rss': 7618560, 'shared': 7225344, 'text': 4096, 'vms': 242728960}, 'memory_percent': 0.04639300612961358, 'name': 'ibus-engine-simple', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5421], 'cmdline': ['gvfs-goa-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.03}, 'io_counters': [110592, 0, 110592, 0, 1], 'memory_info': {'data': 34852864, 'dirty': 0, 'lib': 0, 'rss': 7602176, 'shared': 6946816, 'text': 45056, 'vms': 318169088}, 'memory_percent': 0.04629323622395849, 'name': 'gvfs-goa-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5103], 'cmdline': ['at-spi2-registryd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 26329088, 'dirty': 0, 'lib': 0, 'rss': 7442432, 'shared': 6918144, 'text': 40960, 'vms': 241733632}, 'memory_percent': 0.04532047964382144, 'name': 'at-spi2-registryd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5341], 'cmdline': ['ibus-portal'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.1}, 'io_counters': [73728, 0, 73728, 0, 1], 'memory_info': {'data': 34701312, 'dirty': 0, 'lib': 0, 'rss': 7315456, 'shared': 6791168, 'text': 28672, 'vms': 317997056}, 'memory_percent': 0.04454726287499454, 'name': 'ibus-portal', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2607, 4718, 5008], 'cmdline': ['dbus-daemon'], 'cpu_percent': 0, 'cpu_times': {'system': 2.22, 'user': 8.55}, 'io_counters': [0, 0, 0, 0, 0, 983040, 0, 983040, 0, 1, 0, 0, 0, 0, 1, 983040, 0, 983040, 0, 1, 0, 0, 0, 0, 1], 'memory_info': {'data': 7344128, 'rss': 18817024, 'shared': 13586432, 'text': 454656, 'vms': 34451456}, 'memory_percent': 0.11458573664486278, 'name': 'dbus-daemon', 'nice': 0, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': '_'}, {'childrens': [4944], 'cmdline': ['gvfsd-fuse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [49152, 0, 49152, 0, 1], 'memory_info': {'data': 53944320, 'dirty': 0, 'lib': 0, 'rss': 7114752, 'shared': 6590464, 'text': 24576, 'vms': 471019520}, 'memory_percent': 0.043325081530719775, 'name': 'gvfsd-fuse', 'nice': 0, 'nprocs': 1, 'num_threads': 7, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5182], 'cmdline': ['gsd-rfkill'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.05}, 'io_counters': [49152, 0, 49152, 0, 1], 'memory_info': {'data': 60280832, 'dirty': 0, 'lib': 0, 'rss': 7102464, 'shared': 6578176, 'text': 20480, 'vms': 544178176}, 'memory_percent': 0.043250254101478466, 'name': 'gsd-rfkill', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5418], 'cmdline': ['gvfsd-metadata'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.13}, 'io_counters': [69632, 987136, 69632, 987136, 1], 'memory_info': {'data': 26628096, 'dirty': 0, 'lib': 0, 'rss': 7077888, 'shared': 6291456, 'text': 32768, 'vms': 242688000}, 'memory_percent': 0.04310059924299584, 'name': 'gvfsd-metadata', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [43204, 46298, 46057], 'cmdline': ['bash'], 'cpu_percent': 0, 'cpu_times': {'children_system': 19.73, 'children_user': 65.78, 'system': 0.22999999999999998, 'user': 0.35000000000000003}, 'io_counters': [523073536, 203063296, 523073536, 203063296, 1, 32768, 20480, 32768, 20480, 1, 54272, 8192, 54272, 8192, 1, 32768, 20480, 32768, 20480, 1, 54272, 8192, 54272, 8192, 1], 'memory_info': {'data': 8146944, 'rss': 18423808, 'shared': 11739136, 'text': 2936832, 'vms': 32362496}, 'memory_percent': 0.11219125890914079, 'name': 'bash', 'nice': 0, 'nprocs': 3, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5322], 'cmdline': ['ibus-memconf'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 26173440, 'dirty': 0, 'lib': 0, 'rss': 6975488, 'shared': 6844416, 'text': 8192, 'vms': 242601984}, 'memory_percent': 0.042477037332651575, 'name': 'ibus-memconf', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5146], 'cmdline': ['gsd-a11y-settings'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 43220992, 'dirty': 0, 'lib': 0, 'rss': 6930432, 'shared': 6537216, 'text': 8192, 'vms': 393097216}, 'memory_percent': 0.04220267009210009, 'name': 'gsd-a11y-settings', 'nice': 0, 'nprocs': 1, 'num_threads': 5, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5388], 'cmdline': ['gvfs-gphoto2-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.03}, 'io_counters': [315392, 0, 315392, 0, 1], 'memory_info': {'data': 35246080, 'dirty': 0, 'lib': 0, 'rss': 6877184, 'shared': 6352896, 'text': 45056, 'vms': 318439424}, 'memory_percent': 0.04187841789872108, 'name': 'gvfs-gphoto2-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2628], 'cmdline': ['switcheroo-control'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.02, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 34865152, 'dirty': 0, 'lib': 0, 'rss': 6823936, 'shared': 6168576, 'text': 8192, 'vms': 317415424}, 'memory_percent': 0.04155416570534205, 'name': 'switcheroo-control', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [5446], 'cmdline': ['gvfs-mtp-volume-monitor'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.02}, 'io_counters': [98304, 0, 98304, 0, 1], 'memory_info': {'data': 34824192, 'dirty': 0, 'lib': 0, 'rss': 6688768, 'shared': 6164480, 'text': 40960, 'vms': 317448192}, 'memory_percent': 0.04073106398368762, 'name': 'gvfs-mtp-volume-monitor', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4913], 'cmdline': ['gcr-ssh-agent'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [65536, 0, 65536, 0, 1], 'memory_info': {'data': 17641472, 'dirty': 0, 'lib': 0, 'rss': 6631424, 'shared': 6107136, 'text': 32768, 'vms': 166555648}, 'memory_percent': 0.040381869313894835, 'name': 'gcr-ssh-agent', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5192], 'cmdline': ['gsd-screensaver-proxy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.02}, 'io_counters': [28672, 0, 28672, 0, 1], 'memory_info': {'data': 34693120, 'dirty': 0, 'lib': 0, 'rss': 6418432, 'shared': 6025216, 'text': 8192, 'vms': 317108224}, 'memory_percent': 0.03908486054037875, 'name': 'gsd-screensaver-proxy', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4775], 'cmdline': ['xdg-permission-store'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.01}, 'io_counters': [86016, 0, 86016, 0, 1], 'memory_info': {'data': 34676736, 'dirty': 0, 'lib': 0, 'rss': 6385664, 'shared': 5992448, 'text': 36864, 'vms': 317140992}, 'memory_percent': 0.038885320729068584, 'name': 'xdg-permission-store', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2619], 'cmdline': ['smartd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1220608, 'dirty': 0, 'lib': 0, 'rss': 6160384, 'shared': 5242880, 'text': 249856, 'vms': 12292096}, 'memory_percent': 0.037513484526311196, 'name': 'smartd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2606], 'cmdline': ['bluetoothd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.81, 'user': 3.6}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1327104, 'dirty': 0, 'lib': 0, 'rss': 6033408, 'shared': 5640192, 'text': 995328, 'vms': 14532608}, 'memory_percent': 0.036740267757484305, 'name': 'bluetoothd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [4833], 'cmdline': ['gdm-wayland-session'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 26157056, 'dirty': 0, 'lib': 0, 'rss': 5931008, 'shared': 5799936, 'text': 20480, 'vms': 241627136}, 'memory_percent': 0.03611670584714003, 'name': 'gdm-wayland-session', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [5130], 'cmdline': ['dconf-service'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.05}, 'io_counters': [200704, 634880, 200704, 634880, 1], 'memory_info': {'data': 26394624, 'dirty': 0, 'lib': 0, 'rss': 5861376, 'shared': 5337088, 'text': 36864, 'vms': 235900928}, 'memory_percent': 0.03569268374810593, 'name': 'dconf-service', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [135989], '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': 5804032, 'shared': 4755456, 'text': 61440, 'vms': 104570880}, 'memory_percent': 0.03534348907831314, 'name': 'zed', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [43301], 'cmdline': ['ssh-agent'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 663552, 'dirty': 0, 'lib': 0, 'rss': 5709824, 'shared': 5054464, 'text': 139264, 'vms': 8634368}, 'memory_percent': 0.03476981212079641, 'name': 'ssh-agent', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4919], 'cmdline': ['gnome-session-ctl'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [20480, 0, 20480, 0, 1], 'memory_info': {'data': 9031680, 'dirty': 0, 'lib': 0, 'rss': 5390336, 'shared': 5128192, 'text': 4096, 'vms': 93683712}, 'memory_percent': 0.032824298960522295, 'name': 'gnome-session-ctl', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2773], 'cmdline': ['rsyslogd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.84, 'user': 1.38}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 18923520, 'dirty': 0, 'lib': 0, 'rss': 5345280, 'shared': 4296704, 'text': 454656, 'vms': 227909632}, 'memory_percent': 0.032549931719970816, 'name': 'rsyslogd', 'nice': 0, 'nprocs': 1, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'syslog'}, {'childrens': [47339, 45730], 'cmdline': ['pet'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.01, 'children_user': 0.12, 'system': 2.17, 'user': 1.53}, 'io_counters': [4173824, 61440, 4173824, 61440, 1, 14364672, 114688, 14364672, 114688, 1, 14364672, 114688, 14364672, 114688, 1], 'memory_info': {'data': 4755456, 'rss': 7192576, 'shared': 4026368, 'text': 6520832, 'vms': 12898304}, 'memory_percent': 0.043798988582581425, 'name': 'pet', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2605, 2701], 'cmdline': ['avahi-daemon'], 'cpu_percent': 0, 'cpu_times': {'system': 1.51, 'user': 1.34}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1273856, 'rss': 5726208, 'shared': 5066752, 'text': 163840, 'vms': 17698816}, 'memory_percent': 0.0348695820264515, 'name': 'avahi-daemon', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'avahi'}, {'childrens': [6292], 'cmdline': ['crashhelper'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.0}, 'io_counters': [896000, 0, 896000, 0, 1], 'memory_info': {'data': 9740288, 'dirty': 0, 'lib': 0, 'rss': 4173824, 'shared': 4042752, 'text': 1593344, 'vms': 21860352}, 'memory_percent': 0.025416383465632384, 'name': 'crashhelper', 'nice': 0, 'nprocs': 1, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [4690], 'cmdline': ['(sd-pam)'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 1351680, 'dirty': 0, 'lib': 0, 'rss': 3502080, 'shared': 1892352, 'text': 86016, 'vms': 22138880}, 'memory_percent': 0.021325817333773985, 'name': '(sd-pam)', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [6023], 'cmdline': ['uuidd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 434176, 'dirty': 0, 'lib': 0, 'rss': 3420160, 'shared': 3158016, 'text': 12288, 'vms': 12046336}, 'memory_percent': 0.02082696780549857, 'name': 'uuidd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'uuidd'}, {'childrens': [3691], 'cmdline': ['rtkit-daemon'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.32, 'user': 0.18}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 17211392, 'dirty': 0, 'lib': 0, 'rss': 3248128, 'shared': 2985984, 'text': 28672, 'vms': 23490560}, 'memory_percent': 0.0197793837961202, 'name': 'rtkit-daemon', 'nice': 1, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'rtkit'}, {'childrens': [45419], 'cmdline': ['chrome_crashpad_handler'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.0}, 'io_counters': [2293760, 204800, 2293760, 204800, 1], 'memory_info': {'data': 17600512, 'dirty': 0, 'lib': 0, 'rss': 3055616, 'shared': 2924544, 'text': 1085440, 'vms': 34382123008}, 'memory_percent': 0.018607087404672974, 'name': 'chrome_crashpad_handler', 'nice': 0, 'nprocs': 1, 'num_threads': 3, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2627], 'cmdline': ['cron'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.37, 'children_user': 0.12, 'iowait': 0.0, 'system': 0.04, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 450560, 'dirty': 0, 'lib': 0, 'rss': 2756608, 'shared': 2625536, 'text': 32768, 'vms': 9588736}, 'memory_percent': 0.01678628662646771, 'name': 'cron', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [446418], 'cmdline': ['make'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 1], 'memory_info': {'data': 520192, 'dirty': 0, 'lib': 0, 'rss': 2666496, 'shared': 2404352, 'text': 172032, 'vms': 8802304}, 'memory_percent': 0.01623755214536475, 'name': 'make', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [3557, 3575], 'cmdline': ['kerneloops'], 'cpu_percent': 0, 'cpu_times': {'system': 0.02, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1064960, 'rss': 4669440, 'shared': 3858432, 'text': 24576, 'vms': 26099712}, 'memory_percent': 0.028434423111698644, 'name': 'kerneloops', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'kernoops'}, {'childrens': [3155, 3156], 'cmdline': ['dnsmasq'], 'cpu_percent': 0, 'cpu_times': {'system': 0.03}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 1040384, 'rss': 3190784, 'shared': 2314240, 'text': 745472, 'vms': 23519232}, 'memory_percent': 0.019430189126327407, 'name': 'dnsmasq', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': '_'}, {'childrens': [4782], 'cmdline': ['fusermount3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 364544, 'dirty': 0, 'lib': 0, 'rss': 1986560, 'shared': 1986560, 'text': 20480, 'vms': 2768896}, 'memory_percent': 0.012097101060678808, 'name': 'fusermount3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [97100], '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': 1908736, 'shared': 1908736, 'text': 16384, 'vms': 3289088}, 'memory_percent': 0.011623194008817166, 'name': 'sleep', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [446421], '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': [4096, 0, 4096, 0, 1], 'memory_info': {'data': 376832, 'dirty': 0, 'lib': 0, 'rss': 1683456, 'shared': 1683456, 'text': 86016, 'vms': 2871296}, 'memory_percent': 0.010251357806059775, 'name': 'sh', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}, {'childrens': [2959], 'cmdline': ['run-cupsd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.26, 'children_user': 0.01, 'iowait': 0.0, 'system': 0.17, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 372736, 'dirty': 0, 'lib': 0, 'rss': 1429504, 'shared': 1429504, 'text': 81920, 'vms': 2961408}, 'memory_percent': 0.00870492426840599, 'name': 'run-cupsd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2955, 3439], 'cmdline': ['run-cups-browse'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.33, 'children_user': 0.01, 'system': 0.18, 'user': 0.02}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {'data': 745472, 'rss': 2269184, 'shared': 2269184, 'text': 163840, 'vms': 5922816}, 'memory_percent': 0.013818131933228991, 'name': 'run-cups-browse', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2], 'cmdline': ['kthreadd'], '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': 'kthreadd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [16], 'cmdline': ['ksoftirqd/0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.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': 'ksoftirqd/0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [17], 'cmdline': ['rcu_preempt'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 21.91, 'user': 0.2}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'rcu_preempt', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.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': 'rcu_exp_gp_kthread_worker', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [20], 'cmdline': ['migration/0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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': 'migration/0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [25], 'cmdline': ['migration/2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.93, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [26], 'cmdline': ['ksoftirqd/2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.56, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [31], 'cmdline': ['migration/4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.96, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [32], 'cmdline': ['ksoftirqd/4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'ksoftirqd/4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.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/6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [38], 'cmdline': ['ksoftirqd/6'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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': 'ksoftirqd/6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [43], 'cmdline': ['migration/8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.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': 'migration/8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [44], 'cmdline': ['ksoftirqd/8'], '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': 'ksoftirqd/8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [49], 'cmdline': ['migration/10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.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': 'migration/10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [50], 'cmdline': ['ksoftirqd/10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.73, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [55], 'cmdline': ['migration/12'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 8.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.4306778907775879, 'username': 'root'}, {'childrens': [56], 'cmdline': ['ksoftirqd/12'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.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': 'ksoftirqd/12', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [58], 'cmdline': ['kworker/12:0H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/12:0H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [61], 'cmdline': ['migration/13'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.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': 'migration/13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [62], 'cmdline': ['ksoftirqd/13'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'ksoftirqd/13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [67], 'cmdline': ['migration/14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.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': 'migration/14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [68], 'cmdline': ['ksoftirqd/14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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/14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [73], 'cmdline': ['migration/15'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.72, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/15', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [74], 'cmdline': ['ksoftirqd/15'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.88, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/15', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [76], 'cmdline': ['kworker/15:0H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/15:0H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [79], 'cmdline': ['migration/1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.34, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.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': 'ksoftirqd/1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.22, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [86], 'cmdline': ['ksoftirqd/3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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': 'ksoftirqd/3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.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': 'migration/5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [92], 'cmdline': ['ksoftirqd/5'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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/5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.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/7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [98], 'cmdline': ['ksoftirqd/7'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.12, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.12, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [104], 'cmdline': ['ksoftirqd/9'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.69, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.12, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'migration/11', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [110], 'cmdline': ['ksoftirqd/11'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.73, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ksoftirqd/11', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [115], 'cmdline': ['kauditd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 5.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': 'kauditd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [116], 'cmdline': ['khungtaskd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.08}, 'io_counters': [0, 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.4306778907775879, 'username': 'root'}, {'childrens': [118], 'cmdline': ['oom_reaper'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'oom_reaper', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [121], 'cmdline': ['kcompactd0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 22.59, 'user': 0.57}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kcompactd0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.03}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'khugepaged', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, '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.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [129], 'cmdline': ['irq/9-acpi'], 'cpu_percent': 11.9, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 11.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': 'irq/9-acpi', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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.4306778907775879, 'username': 'root'}, {'childrens': [133], 'cmdline': ['kworker/R-ata_sff'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-ata_sff', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [134], 'cmdline': ['kworker/R-md'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-md', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [135], 'cmdline': ['kworker/R-md_bitmap'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-md_bitmap', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [136], 'cmdline': ['kworker/R-edac-poller'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-edac-poller', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [137], 'cmdline': ['kworker/R-devfreq_wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-devfreq_wq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [138], 'cmdline': ['watchdogd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'watchdogd', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, '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': 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': 'kworker/13:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [143], 'cmdline': ['kswapd0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 12.88, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kswapd0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [144], 'cmdline': ['ecryptfs-kthread'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'ecryptfs-kthread', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [145], 'cmdline': ['kworker/R-kthrotld'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kthrotld', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [146], 'cmdline': ['irq/123-pciehp'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/123-pciehp', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [148], 'cmdline': ['irq/124-pciehp'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/124-pciehp', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [149], 'cmdline': ['kworker/R-acpi_thermal_pm'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-acpi_thermal_pm', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [151], 'cmdline': ['hwrng'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'hwrng', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [153], 'cmdline': ['kworker/R-hfi-updates'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-hfi-updates', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [154], 'cmdline': ['kworker/R-mld'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-mld', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [155], 'cmdline': ['kworker/1:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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/1:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [156], 'cmdline': ['kworker/R-ipv6_addrconf'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-ipv6_addrconf', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [164], 'cmdline': ['kworker/R-kstrp'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kstrp', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [176], 'cmdline': ['kworker/R-cryptd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-cryptd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [185], 'cmdline': ['kworker/R-charger_manager'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-charger_manager', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [187], 'cmdline': ['kworker/0:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.54, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/0:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [211], 'cmdline': ['kworker/2:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.62, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/2:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [214], 'cmdline': ['kworker/6:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.53, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/6:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [264], 'cmdline': ['kworker/12:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.92, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/12:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [265], 'cmdline': ['kworker/5:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.62, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/5:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [266], 'cmdline': ['kworker/4:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.15, 'user': 0.01}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/4:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [267], 'cmdline': ['kworker/11:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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/11:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [268], 'cmdline': ['kworker/10:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.62, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/10:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [269], 'cmdline': ['kworker/15:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.81, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/15:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [270], 'cmdline': ['kworker/8:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.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/8:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [272], 'cmdline': ['kworker/9:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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/9:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [273], 'cmdline': ['kworker/14:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.97, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/14:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [274], 'cmdline': ['kworker/3:1H-kblockd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.12, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/3:1H-kblockd', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [275], 'cmdline': ['kworker/7:1H-events_highpri'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'kworker/7:1H-events_highpri', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [372], 'cmdline': ['irq/178-VEN_04F3:00'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 26.51, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/178-VEN_04F3:00', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [374], 'cmdline': ['kworker/R-nvme-wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-nvme-wq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [375], 'cmdline': ['kworker/R-nvme-reset-wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-nvme-reset-wq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [376], 'cmdline': ['kworker/R-nvme-delete-wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-nvme-delete-wq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [377], 'cmdline': ['kworker/R-nvme-auth-wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-nvme-auth-wq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [378], 'cmdline': ['spi0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'spi0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [380], 'cmdline': ['kworker/R-USBC000:00-con1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-USBC000:00-con1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [424], 'cmdline': ['kworker/R-USBC000:00-con2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-USBC000:00-con2', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [463], 'cmdline': ['kworker/R-uas'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-uas', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [469], 'cmdline': ['kworker/R-USBC000:00-con3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-USBC000:00-con3', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [637], 'cmdline': ['kworker/R-kdmflush/252:0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kdmflush/252:0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [642], 'cmdline': ['kworker/R-kcryptd_io-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kcryptd_io-252:0-1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [643], 'cmdline': ['kworker/R-kcryptd-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kcryptd-252:0-1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [644], 'cmdline': ['dmcrypt_write/252:0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 4.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': 'dmcrypt_write/252:0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [650], 'cmdline': ['kworker/R-kdmflush/252:1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-kdmflush/252:1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [685], 'cmdline': ['jbd2/dm-1-8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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': 'jbd2/dm-1-8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [686, 1000], 'cmdline': ['kworker/R-ext4-rsv-conversion'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'kworker/R-ext4-rsv-conversion', 'nice': -20, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [805, 220178], '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.4306778907775879, 'username': 'root'}, {'childrens': [990], 'cmdline': ['kworker/R-cfg80211'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/R-cfg80211', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [999], 'cmdline': ['jbd2/nvme0n1p2-8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'jbd2/nvme0n1p2-8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1002], 'cmdline': ['irq/199-iwlwifi:default_queue'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 74.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': 'irq/199-iwlwifi:default_queue', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1003], 'cmdline': ['irq/200-iwlwifi:queue_1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.34, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/200-iwlwifi:queue_1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1004], 'cmdline': ['irq/201-iwlwifi:queue_2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'irq/201-iwlwifi:queue_2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1005], 'cmdline': ['irq/202-iwlwifi:queue_3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 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': 'irq/202-iwlwifi:queue_3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1006], 'cmdline': ['irq/203-iwlwifi:queue_4'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'irq/203-iwlwifi:queue_4', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1007], 'cmdline': ['irq/204-iwlwifi:queue_5'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 197.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': 'irq/204-iwlwifi:queue_5', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1008], 'cmdline': ['irq/205-iwlwifi:queue_6'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 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': 'irq/205-iwlwifi:queue_6', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1009], 'cmdline': ['irq/206-iwlwifi:queue_7'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 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': 'irq/206-iwlwifi:queue_7', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1010], 'cmdline': ['irq/207-iwlwifi:queue_8'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 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': 'irq/207-iwlwifi:queue_8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1011], 'cmdline': ['irq/208-iwlwifi:queue_9'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.44, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/208-iwlwifi:queue_9', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1012], 'cmdline': ['irq/209-iwlwifi:queue_10'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.34, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/209-iwlwifi:queue_10', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1013], 'cmdline': ['irq/210-iwlwifi:queue_11'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.39, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/210-iwlwifi:queue_11', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1014], 'cmdline': ['irq/211-iwlwifi:queue_12'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 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': 'irq/211-iwlwifi:queue_12', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1015], 'cmdline': ['irq/212-iwlwifi:queue_13'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 10.4, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/212-iwlwifi:queue_13', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1016], 'cmdline': ['irq/213-iwlwifi:queue_14'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.68, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/213-iwlwifi:queue_14', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1017], 'cmdline': ['irq/214-iwlwifi:exception'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/214-iwlwifi:exception', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1043], 'cmdline': ['irq/16-processor_thermal_device_pci'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'irq/16-processor_thermal_device_pci', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1207, 1360], 'cmdline': ['kworker/R-ttm'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'kworker/R-ttm', 'nice': -20, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1227], 'cmdline': ['card1-crtc0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'card1-crtc0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1228], 'cmdline': ['card1-crtc1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'card1-crtc1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1229], 'cmdline': ['card1-crtc2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'card1-crtc2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1230], 'cmdline': ['card1-crtc3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'card1-crtc3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1245, 1337], 'cmdline': ['irq/197-cs35l41 IRQ1 Controller'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'irq/197-cs35l41 IRQ1 Controller', 'nice': 0, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1374], 'cmdline': ['irq/231-AudioDSP'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'irq/231-AudioDSP', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1611], 'cmdline': ['irq/232-mei_gsc'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 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.4306778907775879, 'username': 'root'}, {'childrens': [1618], 'cmdline': ['irq/233-mei_gsc'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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/233-mei_gsc', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1985], 'cmdline': ['spl_system_task'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'spl_system_task', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1986], 'cmdline': ['spl_delay_taskq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'spl_delay_taskq', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1987], 'cmdline': ['spl_dynamic_tas'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'spl_dynamic_tas', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1988, 2038, 2039, 2040], 'cmdline': ['spl_kmem_cache'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'spl_kmem_cache', 'nice': -20, 'nprocs': 4, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1989], 'cmdline': ['zvol_tq-0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'zvol_tq-0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1990], 'cmdline': ['zvol_tq-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'zvol_tq-1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1991], 'cmdline': ['zvol_tq-2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'zvol_tq-2', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1992], 'cmdline': ['arc_prune'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'arc_prune', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1993], 'cmdline': ['arc_evict'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.69, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'arc_evict', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1994], 'cmdline': ['arc_reap'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.74, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'arc_reap', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1995], 'cmdline': ['dbu_evict'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'dbu_evict', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1996], 'cmdline': ['dbuf_evict'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.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': 'dbuf_evict', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [1997, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037], 'cmdline': ['z_vdev_file'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.4306778907775879, 'username': 'root'}, {'childrens': [1998], 'cmdline': ['l2arc_feed'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.56}, 'io_counters': [0, 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.4306778907775879, 'username': 'root'}, {'childrens': [2077], 'cmdline': ['z_null_iss'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_null_iss', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2078], 'cmdline': ['z_null_int'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_null_int', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2079], 'cmdline': ['z_rd_iss'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_rd_iss', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2080, 2107, 2154, 2156], 'cmdline': ['z_rd_int_0'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_rd_int_0', 'nice': -20, 'nprocs': 4, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2081, 2105, 2151, 2152], 'cmdline': ['z_rd_int_1'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_rd_int_1', 'nice': -20, 'nprocs': 4, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2082, 2106, 2141, 2150], 'cmdline': ['z_rd_int_2'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_rd_int_2', 'nice': -20, 'nprocs': 4, 'num_threads': 4, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2083, 2166, 2167, 2169, 2170, 2171, 2172, 2174, 2175, 2176], 'cmdline': ['z_wr_iss'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_wr_iss', 'nice': -19, 'nprocs': 10, 'num_threads': 10, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2084], 'cmdline': ['z_wr_iss_h'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_wr_iss_h', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2085, 2177], '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.4306778907775879, 'username': 'root'}, {'childrens': [2086, 2178, 2179], '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.4306778907775879, 'username': 'root'}, {'childrens': [2087, 2183, 3496], 'cmdline': ['z_wr_int_2'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 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.4306778907775879, 'username': 'root'}, {'childrens': [2088], 'cmdline': ['z_wr_int_h'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_wr_int_h', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2089], 'cmdline': ['z_fr_iss_0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_fr_iss_0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2090], 'cmdline': ['z_fr_iss_1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_fr_iss_1', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2091], 'cmdline': ['z_fr_iss_2'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_fr_iss_2', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2092], 'cmdline': ['z_fr_int'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_fr_int', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2093], 'cmdline': ['z_cl_iss'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_cl_iss', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2094], 'cmdline': ['z_cl_int'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_cl_int', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2095], 'cmdline': ['z_ioctl_iss'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_ioctl_iss', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2096], 'cmdline': ['z_ioctl_int'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_ioctl_int', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2097], 'cmdline': ['z_trim_iss'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_trim_iss', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2098], 'cmdline': ['z_trim_int'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_trim_int', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2099], 'cmdline': ['z_zvol'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_zvol', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2100, 4651], 'cmdline': ['z_metaslab'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'z_metaslab', 'nice': -20, 'nprocs': 2, 'num_threads': 2, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2101], 'cmdline': ['z_prefetch'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_prefetch', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2102], 'cmdline': ['z_upgrade'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_upgrade', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119], 'cmdline': ['dp_sync_taskq'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'dp_sync_taskq', 'nice': 19, 'nprocs': 12, 'num_threads': 12, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135], 'cmdline': ['dp_zil_clean_ta'], 'cpu_percent': 0, 'cpu_times': {}, 'io_counters': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 'memory_info': {}, 'memory_percent': 0, 'name': 'dp_zil_clean_ta', 'nice': 19, 'nprocs': 16, 'num_threads': 16, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2136], 'cmdline': ['z_zrele'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_zrele', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2137], 'cmdline': ['z_unlinked_drai'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_unlinked_drai', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2159], 'cmdline': ['txg_quiesce'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.2}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'txg_quiesce', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2160], 'cmdline': ['txg_sync'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.81, 'user': 0.0}, 'io_counters': [0, 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.4306778907775879, 'username': 'root'}, {'childrens': [2161], 'cmdline': ['mmp'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.79, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'mmp', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2162], 'cmdline': ['z_indirect_cond'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_indirect_cond', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2163], 'cmdline': ['z_livelist_dest'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_livelist_dest', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2164], 'cmdline': ['z_livelist_cond'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_livelist_cond', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [2165], 'cmdline': ['z_checkpoint_di'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'z_checkpoint_di', 'nice': 19, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [3888], 'cmdline': ['krfcommd'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'krfcommd', 'nice': -10, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'S', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [42423], 'cmdline': ['kworker/9:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.69, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/9:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [44432], 'cmdline': ['kworker/2:3-events'], '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/2:3-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [45081], 'cmdline': ['kworker/8:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.18, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/8:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [45085], 'cmdline': ['kworker/14:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 3.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/14:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [50368], 'cmdline': ['kworker/1:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.46, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/1:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [77869], 'cmdline': ['kworker/12:2-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.08, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/12:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [81426], 'cmdline': ['kworker/15:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.93, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/15:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [81599], 'cmdline': ['kworker/9: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/9:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [98811], 'cmdline': ['kworker/13:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.67, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/13:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [100168], 'cmdline': ['kworker/11:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.27, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/11:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [116375], 'cmdline': ['kworker/u64:5-i915'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.69, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:5-i915', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [116422], 'cmdline': ['kworker/u64:51-kcryptd-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.33, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:51-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [116431], 'cmdline': ['kworker/u64:61-kcryptd-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.63, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:61-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [116437], 'cmdline': ['kworker/4:5-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.38, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/4:5-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [119640], 'cmdline': ['kworker/0:6-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.79, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/0:6-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [135904], '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.4306778907775879, 'username': 'root'}, {'childrens': [135950], 'cmdline': ['kworker/3:3-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/3:3-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [188220], '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': 1.53, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:1-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [195779], '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.4306778907775879, 'username': 'root'}, {'childrens': [204241], 'cmdline': ['kworker/4:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.15, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/4:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [221578], 'cmdline': ['kworker/5:0-mm_percpu_wq'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.15, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/5:0-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [235307], 'cmdline': ['kworker/6:3'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/6:3', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [252417], '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': 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/u64:0-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [262849], 'cmdline': ['kworker/u65:2-hci0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 2.84, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u65:2-hci0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [277356], 'cmdline': ['kworker/u64:9-kcryptd-252:0-1'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.83, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:9-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [286904], 'cmdline': ['kworker/8: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/8:2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [299041], 'cmdline': ['kworker/10: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/10:1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [330017], 'cmdline': ['kworker/11: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/11:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [331044], 'cmdline': ['kworker/13:1-events'], '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': 'kworker/13:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [331120], 'cmdline': ['kworker/5: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/5:2-mm_percpu_wq', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [333120], 'cmdline': ['kworker/2: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/2:2', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [343213], 'cmdline': ['kworker/u65:1-hci0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 1.22, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u65:1-hci0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [343683], 'cmdline': ['kworker/u64:2-i915'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.2, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:2-i915', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [347943], 'cmdline': ['kworker/3: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/3:0', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [361497], 'cmdline': ['kworker/14:1-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:1-i915-unordered', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [365683], 'cmdline': ['kworker/7:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.01, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/7:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [393979], 'cmdline': ['kworker/15: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/15:3-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [396496], 'cmdline': ['kworker/0:1-cgroup_destroy'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.0, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/0:1-cgroup_destroy', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [399624], 'cmdline': ['kworker/7:2-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:2-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [403964], '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.51, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:3-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [408867], 'cmdline': ['kworker/6:1-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.06, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/6:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [409518], 'cmdline': ['kworker/10:0-events'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.25, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/10:0-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [411195], '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.23, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u64:4-kcryptd-252:0-1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [413107], 'cmdline': ['kworker/12: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/12:1', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [413852], 'cmdline': ['kworker/u65:0-hci0'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.65, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'kworker/u65:0-hci0', 'nice': -20, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [425322], 'cmdline': ['kworker/14:2-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:2-i915-unordered', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [436654], 'cmdline': ['kworker/7: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/7:1-events', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [444361], 'cmdline': ['kworker/u64:6-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/u64:6-ipv6_addrconf', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [444362], '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.4306778907775879, 'username': 'root'}, {'childrens': [444363], 'cmdline': ['kworker/u64: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': 'kworker/u64:8', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'I', 'time_since_update': 0.4306778907775879, 'username': 'root'}, {'childrens': [446592], 'cmdline': ['rg'], 'cpu_percent': 0, 'cpu_times': {'children_system': 0.0, 'children_user': 0.0, 'iowait': 0.0, 'system': 0.03, 'user': 0.0}, 'io_counters': [0, 0, 0, 0, 0], 'memory_info': {'data': 0, 'dirty': 0, 'lib': 0, 'rss': 0, 'shared': 0, 'text': 0, 'vms': 0}, 'memory_percent': 0, 'name': 'rg', 'nice': 0, 'nprocs': 1, 'num_threads': 1, 'pid': '_', 'status': 'Z', 'time_since_update': 0.4306778907775879, 'username': 'nicolargo'}] 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': 35.0, 'interrupt': None, 'iowait': 0.0, 'irq': 0.0, 'key': 'cpu_number', 'nice': 0.0, 'softirq': 0.0, 'steal': 0.0, 'system': 12.0, 'total': 65.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', 'ipv6leakintrf0', 'pvpnksintrf0'] >>> gl.network["wlp0s20f3"] {'alias': None, 'bytes_all': 0, 'bytes_all_gauge': 15386705726, 'bytes_all_rate_per_sec': 0.0, 'bytes_recv': 0, 'bytes_recv_gauge': 14056592911, 'bytes_recv_rate_per_sec': 0.0, 'bytes_sent': 0, 'bytes_sent_gauge': 1330112815, 'bytes_sent_rate_per_sec': 0.0, 'interface_name': 'wlp0s20f3', 'key': 'interface_name', 'speed': 0, 'time_since_update': 0.10325121879577637} 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': 134429472, 'guest': 0.0, 'idle': 85.0, 'interrupts': 78024545, 'iowait': 0.7, 'irq': 0.0, 'nice': 0.0, 'soft_interrupts': 40587496, 'steal': 0.0, 'syscalls': 0, 'system': 7.6, 'total': 15.5, 'user': 6.7} >>> gl.cpu.keys() ['total', 'user', 'nice', 'system', 'idle', 'iowait', 'irq', 'steal', 'guest', 'ctx_switches', 'interrupts', 'soft_interrupts', 'syscalls', 'cpucore'] >>> gl.cpu["total"] 15.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.2506086826324463} 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() [45624, 47073, 46264, 6462, 6208, 45552, 7116, 47319, 7109, 4995, 7112, 5390, 2962, 7374, 45398, 6493, 45635, 8243, 8352, 45634, 45711, 5629, 45516, 5940, 46240, 46641, 5230, 5979, 78337, 340364, 5131, 46497, 3548, 93349, 110439, 221136, 43195, 45497, 5952, 446435, 137563, 6467, 6926, 45401, 45400, 2976, 46202, 11995, 746, 5438, 46203, 2621, 6448, 5581, 5387, 8117, 5474, 5601, 5122, 5169, 2970, 5143, 5324, 3544, 2705, 5645, 5162, 46207, 5976, 2651, 5225, 4947, 5147, 4848, 1, 2610, 2487, 5155, 2655, 6546, 2653, 3018, 4704, 5394, 4683, 3552, 5623, 4700, 5875, 2616, 3433, 5149, 2828, 5254, 4705, 2946, 2707, 5174, 5199, 3530, 4660, 4708, 55223, 2929, 5145, 5223, 3434, 3601, 11634, 2636, 5404, 8729, 11597, 5542, 5429, 2488, 5152, 5247, 2831, 2624, 5204, 5803, 2638, 783, 4936, 2486, 2613, 4994, 4766, 5503, 5421, 5103, 5341, 2607, 4944, 5182, 5418, 43204, 5322, 5146, 5388, 2628, 4718, 5446, 4913, 5192, 4775, 2619, 2606, 4833, 5130, 135989, 46298, 43301, 46057, 4919, 2773, 4701, 47339, 5008, 2605, 6292, 4690, 6023, 3691, 45419, 2627, 446418, 3557, 3575, 45730, 3155, 4782, 97100, 446421, 2959, 2955, 2701, 3156, 3439, 2, 3, 4, 5, 6, 7, 9, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32, 34, 35, 36, 37, 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, 118, 120, 121, 122, 123, 124, 125, 126, 129, 132, 133, 134, 135, 136, 137, 138, 141, 143, 144, 145, 146, 148, 149, 151, 153, 154, 155, 156, 164, 176, 185, 187, 211, 214, 264, 265, 266, 267, 268, 269, 270, 272, 273, 274, 275, 372, 374, 375, 376, 377, 378, 380, 424, 463, 469, 637, 642, 643, 644, 650, 685, 686, 805, 990, 999, 1000, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1043, 1207, 1227, 1228, 1229, 1230, 1245, 1337, 1360, 1374, 1611, 1618, 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 2029, 2030, 2031, 2032, 2033, 2034, 2035, 2036, 2037, 2038, 2039, 2040, 2077, 2078, 2079, 2080, 2081, 2082, 2083, 2084, 2085, 2086, 2087, 2088, 2089, 2090, 2091, 2092, 2093, 2094, 2095, 2096, 2097, 2098, 2099, 2100, 2101, 2102, 2105, 2106, 2107, 2108, 2109, 2110, 2111, 2112, 2113, 2114, 2115, 2116, 2117, 2118, 2119, 2120, 2121, 2122, 2123, 2124, 2125, 2126, 2127, 2128, 2129, 2130, 2131, 2132, 2133, 2134, 2135, 2136, 2137, 2141, 2150, 2151, 2152, 2154, 2156, 2159, 2160, 2161, 2162, 2163, 2164, 2165, 2166, 2167, 2169, 2170, 2171, 2172, 2174, 2175, 2176, 2177, 2178, 2179, 2183, 3496, 3888, 4651, 42423, 44432, 45081, 45085, 50368, 77869, 81426, 81599, 98811, 100168, 116375, 116422, 116431, 116437, 119640, 135904, 135950, 188220, 195779, 204241, 220178, 221578, 235307, 252417, 262849, 277356, 286904, 299041, 330017, 331044, 331120, 333120, 343213, 343683, 347943, 361497, 365683, 393979, 396496, 399624, 403964, 408867, 409518, 411195, 413107, 413852, 425322, 436654, 444361, 444362, 444363, 446592] >>> gl.processlist["45624"] {'cmdline': ['/proc/self/exe', '--type=utility', '--utility-sub-type=node.mojom.NodeService', '--lang=en-US', '--service-sandbox-type=none', '--no-sandbox', '--dns-result-order=ipv4first', '--experimental-network-inspection', '--inspect-port=0', '--crashpad-handler-pid=45419', '--enable-crash-reporter=864d4bb7-dd20-4851-830f-29e81dd93517,no_channel', '--user-data-dir=/home/nicolargo/.config/Code', '--standard-schemes=vscode-webview,vscode-file', '--secure-schemes=vscode-webview,vscode-file', '--cors-schemes=vscode-webview,vscode-file', '--fetch-schemes=vscode-webview,vscode-file', '--service-worker-schemes=vscode-webview', '--code-cache-schemes=vscode-webview,vscode-file', '--shared-files=v8_context_snapshot_data:100', '--field-trial-handle=3,i,3230732958182493075,7702003965805358118,262144', '--enable-features=DocumentPolicyIncludeJSCallStacksInCrashReports,EarlyEstablishGpuChannel,EstablishGpuChannelAsync', '--disable-features=CalculateNativeWinOcclusion,SpareRendererForSitePerProcess', '--variations-seed-version'], 'cpu_percent': 93.5, 'cpu_times': {'children_system': 1190.88, 'children_user': 252.3, 'iowait': 0.0, 'system': 889.96, 'user': 3765.67}, 'gids': {'effective': 1000, 'real': 1000, 'saved': 1000}, 'io_counters': [762354688, 303865856, 762354688, 303865856, 1, 73490432, 1728512, 73490432, 1728512, 1, 43582464, 249856, 43582464, 249856, 1, 77307904, 0, 77307904, 0, 1, 70991872, 55152640, 70991872, 55152640, 1, 25166848, 0, 25166848, 0, 1, 128754688, 1858166784, 128754688, 1858166784, 1, 1007616, 4096, 1007616, 4096, 1, 4467712, 0, 4467712, 0, 1, 4739072, 0, 4739072, 0, 1, 6306816, 0, 6306816, 0, 1, 133120, 0, 133120, 0, 1, 6281216, 4370432, 6281216, 4370432, 1, 3007488, 0, 3007488, 0, 1, 1037312, 0, 1037312, 0, 1, 73490432, 1728512, 73490432, 1728512, 1, 43582464, 249856, 43582464, 249856, 1, 77307904, 0, 77307904, 0, 1, 70991872, 55152640, 70991872, 55152640, 1, 25166848, 0, 25166848, 0, 1, 128754688, 1858166784, 128754688, 1858166784, 1, 1007616, 4096, 1007616, 4096, 1, 4467712, 0, 4467712, 0, 1, 4739072, 0, 4739072, 0, 1, 6306816, 0, 6306816, 0, 1, 133120, 0, 133120, 0, 1, 6281216, 4370432, 6281216, 4370432, 1, 3007488, 0, 3007488, 0, 1, 1037312, 0, 1037312, 0, 1], 'key': 'pid', 'memory_info': {'data': 5382053888, 'dirty': 0, 'lib': 0, 'rss': 3942359040, 'shared': 128200704, 'text': 142934016, 'vms': 1524454277120}, 'memory_percent': 24.006884123490202, 'name': 'code', 'nice': 0, 'num_threads': 58, 'pid': 45624, 'status': 'R', 'time_since_update': 0.4306778907775879, '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': 2.95361328125, 'min15': 2.2939453125, 'min5': 2.4140625} >>> gl.load.keys() ['min1', 'min5', 'min15', 'cpucore'] >>> gl.load["min1"] 2.95361328125 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=