From f6d253122c0b0817bf90652d51065d8c23a8fb0e Mon Sep 17 00:00:00 2001 From: Tony Perkins Date: Tue, 23 Mar 2021 21:36:04 -0700 Subject: [PATCH] Add the ps command to sdb. --- sdb/commands/linux/ps.py | 154 +++++ sdb/commands/stacks.py | 4 +- sdb/commands/threads.py | 25 +- .../data/regression_output/linux/ps | 575 ++++++++++++++++++ .../data/regression_output/linux/ps -A | 575 ++++++++++++++++++ .../data/regression_output/linux/ps -C bash | 5 + .../data/regression_output/linux/ps -e | 575 ++++++++++++++++++ .../regression_output/linux/ps -o pid,ppid | 575 ++++++++++++++++++ .../data/regression_output/linux/ps -p 4275 | 3 + .../data/regression_output/linux/ps -x | 575 ++++++++++++++++++ tests/integration/test_linux_generic.py | 9 + 11 files changed, 3067 insertions(+), 8 deletions(-) create mode 100644 sdb/commands/linux/ps.py create mode 100644 tests/integration/data/regression_output/linux/ps create mode 100644 tests/integration/data/regression_output/linux/ps -A create mode 100644 tests/integration/data/regression_output/linux/ps -C bash create mode 100644 tests/integration/data/regression_output/linux/ps -e create mode 100644 tests/integration/data/regression_output/linux/ps -o pid,ppid create mode 100644 tests/integration/data/regression_output/linux/ps -p 4275 create mode 100644 tests/integration/data/regression_output/linux/ps -x diff --git a/sdb/commands/linux/ps.py b/sdb/commands/linux/ps.py new file mode 100644 index 00000000..034a0475 --- /dev/null +++ b/sdb/commands/linux/ps.py @@ -0,0 +1,154 @@ +# +# Copyright 2021 Datto Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +# pylint: disable=missing-docstring + +import datetime +import argparse +from typing import Callable, Dict, Iterable, List, Union + +import drgn +from drgn.helpers.linux.pid import for_each_task + +import sdb +from sdb.commands.stacks import Stacks +from sdb.commands.threads import Threads + +class Ps(Threads): + """ + Locate and print information about processes + + POTENTIAL COLUMNS + task - address of the task_struct + uid - user id + pid - the pid of the thread's process + time - cumulative CPU time, "[DD-]HH:MM:SS" format + state - the state of the thread + prio - the priority of the thread + comm - the thread's command + cmdline - the thread's command line (when available) + + EXAMPLE + sdb> ps -e + task uid pid time stime ppid cmd + ------------------ ---- ---- ------- ------- ----- ---------------- + 0xffff9995001a0000 1000 4387 0:00:00 0:00:00 1218 inotify_reader + 0xffff9995001a2d00 1000 4382 0:00:00 0:00:00 1218 slack + 0xffff9995001a4380 1000 4383 0:00:04 0:00:00 1218 slack + 0xffff9995001a5a00 1000 4554 0:11:00 0:09:56 4118 AudioIP~ent RPC + 0xffff99950a430000 1000 4284 0:00:00 0:00:00 4118 HTML5 Parser + 0xffff99950a431680 1000 4157 0:00:12 0:00:08 1218 localStorage DBa + ... + """ + + names = ["ps"] + input_type = "struct task_struct *" + output_type = "struct task_struct *" + + FIELDS: Dict[str, Callable[[drgn.Object], Union[str, int]]] = { + "task": + lambda obj: hex(obj.value_()), + "uid": + lambda obj: int(obj.real_cred.uid.val), + "pid": + lambda obj: int(obj.pid), + "time": + lambda obj: str( + datetime.timedelta(seconds=int(obj.utime) / 1000 / 1000)), + "stime": + lambda obj: str( + datetime.timedelta(seconds=int(obj.stime) / 1000 / 1000)), + "ppid": + lambda obj: int(obj.parent.pid), + "stat": + lambda obj: str(Stacks.task_struct_get_state(obj)), + "cmd": + lambda obj: str(obj.comm.string_().decode("utf-8")), + } + + @classmethod + def _init_parser(cls, name: str) -> argparse.ArgumentParser: + parser = super()._init_parser(name) + parser.add_argument('-e', '--every', action='store_true', \ + help="Select all processes. Identical to -A") + parser.add_argument('-A', '--all', action='store_true', \ + help="Select all processes. Identical to -e") + parser.add_argument('-C', '--C', type=str, \ + help="Print only the process IDs of a command") + parser.add_argument('-x', '--x', action='store_true', \ + help="Show PID, TIME, CMD") + parser.add_argument('--no-headers', '--no-heading', \ + action='store_true', \ + help="Show the output without headers.") + parser.add_argument('-p', '--pid', type=int, nargs="+", \ + help="Select by process ID. Identical to --pid.") + parser.add_argument('-P', '--ppid', type=int, nargs="+", \ + help="Select by parent process ID. \ + This selects the processes with \ + a parent process ID in the pid list." + ) + parser.add_argument('-o', + '--format', + type=str, + help="User-defined format. \ + format is a single argument in the form of a blank-separated \ + or comma-separated list, which offers a way to specify individual\ + output columns. Headers may be renamed (ps -o pid,ppid) as desired. " + ) + return parser + + def get_table_key(self) -> str: + return "pid" + + def get_filtered_fields(self) -> List[str]: + fields = list(self.FIELDS.keys()) + fields_option_ae = [ + x for x in fields if x in "task, uid, pid, ppid, stime, time, cmd" + ] + fields_option_x = [x for x in fields if x in "pid, stat, time, cmd"] + fields_option_default = [x for x in fields if x in "pid, time, cmd"] + + if self.args.every or self.args.all: + fields = fields_option_ae + elif self.args.x: + fields = fields_option_x + elif self.args.format: + fields_option_o = 'task,' + self.args.format.lower() + fields_option_o = [x for x in fields if x in fields_option_o] + fields = fields_option_o + else: + fields = fields_option_default + return fields + + def show_headers(self) -> bool: + return not self.args.no_headers + + def no_input(self) -> Iterable[drgn.Object]: + cmds = self.args.C.split(",") if self.args.C else [] + pids = self.args.pid if self.args.pid else [] + ppids = self.args.ppid if self.args.ppid else [] + for obj in for_each_task(sdb.get_prog()): + if self.args.pid: + if obj.pid not in pids: + continue + if self.args.C: + cmd = str(obj.comm.string_().decode("utf-8")) + if cmd not in cmds: + continue + if self.args.ppid: + if obj.parent.pid not in ppids: + continue + yield obj diff --git a/sdb/commands/stacks.py b/sdb/commands/stacks.py index 3e06efcf..924619c3 100644 --- a/sdb/commands/stacks.py +++ b/sdb/commands/stacks.py @@ -359,8 +359,8 @@ def print_header(self) -> None: # @staticmethod def aggregate_stacks( - objs: Iterable[drgn.Object] - ) -> List[Tuple[Tuple[str, Tuple[int, ...]], List[drgn.Object]]]: + objs: Iterable[drgn.Object]) \ + -> List[Tuple[Tuple[str, Tuple[int, ...]], List[drgn.Object]]]: stack_aggr: Dict[Tuple[str, Tuple[int, ...]], List[drgn.Object]] = defaultdict(list) for task in objs: diff --git a/sdb/commands/threads.py b/sdb/commands/threads.py index e46eb25a..2aa47766 100644 --- a/sdb/commands/threads.py +++ b/sdb/commands/threads.py @@ -17,7 +17,7 @@ # pylint: disable=missing-docstring from textwrap import shorten -from typing import Callable, Dict, Iterable, Union +from typing import Callable, Dict, Iterable, List, Union import drgn from drgn.helpers.linux.pid import for_each_task @@ -85,13 +85,26 @@ class Threads(sdb.Locator, sdb.PrettyPrinter): "cmdline": _cmdline, } + def get_filtered_fields(self) -> List[str]: + return list(self.FIELDS.keys()) + + def get_table_key(self) -> str: + # pylint: disable=R0201 + return "task" + + def show_headers(self) -> bool: + # pylint: disable=R0201 + return True + def pretty_print(self, objs: Iterable[drgn.Object]) -> None: - fields = list(Threads.FIELDS.keys()) - table = Table(fields, None, {"task": str}) + fields = self.get_filtered_fields() + table_key = self.get_table_key() + + table = Table(fields, None, {table_key: str}) for obj in objs: - row_dict = {field: Threads.FIELDS[field](obj) for field in fields} - table.add_row(row_dict["task"], row_dict) - table.print_() + row_dict = {field: self.FIELDS[field](obj) for field in fields} + table.add_row(row_dict[table_key], row_dict) + table.print_(print_headers=self.show_headers()) def no_input(self) -> Iterable[drgn.Object]: yield from for_each_task(sdb.get_prog()) diff --git a/tests/integration/data/regression_output/linux/ps b/tests/integration/data/regression_output/linux/ps new file mode 100644 index 00000000..2a23741b --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps @@ -0,0 +1,575 @@ +pid time cmd +---- -------- --------------- +1 0:02:44 systemd +2 0:00:00 kthreadd +3 0:00:00 rcu_gp +4 0:00:00 rcu_par_gp +5 0:00:00 kworker/0:0 +6 0:00:00 kworker/0:0H +7 0:00:00 kworker/u4:0 +8 0:00:00 mm_percpu_wq +9 0:00:00 ksoftirqd/0 +10 0:00:00 rcu_sched +11 0:00:00 migration/0 +12 0:00:00 idle_inject/0 +13 0:00:00 kworker/0:1 +14 0:00:00 cpuhp/0 +15 0:00:00 cpuhp/1 +16 0:00:00 idle_inject/1 +17 0:00:00 migration/1 +18 0:00:00 ksoftirqd/1 +19 0:00:00 kworker/1:0 +20 0:00:00 kworker/1:0H +21 0:00:00 kdevtmpfs +22 0:00:00 netns +23 0:00:00 rcu_tasks_kthre +24 0:00:00 kauditd +25 0:00:00 khungtaskd +26 0:00:00 oom_reaper +27 0:00:00 writeback +28 0:00:00 kcompactd0 +29 0:00:00 ksmd +30 0:00:00 khugepaged +31 0:00:00 crypto +32 0:00:00 kintegrityd +33 0:00:00 kblockd +34 0:00:00 tpm_dev_wq +35 0:00:00 ata_sff +36 0:00:00 md +37 0:00:00 edac-poller +38 0:00:00 devfreq_wq +39 0:00:00 watchdogd +40 0:00:00 kworker/1:1 +41 0:00:00 kworker/u4:1 +44 0:00:00 kswapd0 +45 0:00:00 kworker/u5:0 +46 0:00:00 ecryptfs-kthrea +135 0:00:00 kthrotld +136 0:00:00 irq/24-pciehp +137 0:00:00 irq/25-pciehp +138 0:00:00 irq/26-pciehp +139 0:00:00 irq/27-pciehp +140 0:00:00 irq/28-pciehp +141 0:00:00 irq/29-pciehp +142 0:00:00 irq/30-pciehp +143 0:00:00 irq/31-pciehp +144 0:00:00 irq/32-pciehp +145 0:00:00 irq/33-pciehp +146 0:00:00 irq/34-pciehp +147 0:00:00 irq/35-pciehp +148 0:00:00 irq/36-pciehp +149 0:00:00 irq/37-pciehp +150 0:00:00 irq/38-pciehp +151 0:00:00 irq/39-pciehp +152 0:00:00 irq/40-pciehp +153 0:00:00 irq/41-pciehp +154 0:00:00 irq/42-pciehp +155 0:00:00 irq/43-pciehp +156 0:00:00 irq/44-pciehp +157 0:00:00 irq/45-pciehp +158 0:00:00 irq/46-pciehp +159 0:00:00 irq/47-pciehp +160 0:00:00 irq/48-pciehp +161 0:00:00 irq/49-pciehp +162 0:00:00 irq/50-pciehp +163 0:00:00 irq/51-pciehp +164 0:00:00 irq/52-pciehp +165 0:00:00 irq/53-pciehp +166 0:00:00 irq/54-pciehp +167 0:00:00 irq/55-pciehp +168 0:00:00 acpi_thermal_pm +169 0:00:00 scsi_eh_0 +170 0:00:00 scsi_tmf_0 +171 0:00:00 scsi_eh_1 +172 0:00:00 scsi_tmf_1 +173 0:00:00 kworker/u4:2 +174 0:00:00 kworker/u4:3 +175 0:00:00 kstrp +199 0:00:00 charger_manager +200 0:00:00 kworker/1:1H +251 0:00:00 mpt_poll_0 +253 0:00:00 mpt/0 +264 0:00:00 kworker/0:1H +265 0:00:00 scsi_eh_2 +266 0:00:00 scsi_tmf_2 +267 0:00:00 kworker/u4:4 +268 0:00:00 kworker/u4:5 +318 0:00:00 raid5wq +346 0:00:00 spl_system_task +347 0:00:00 spl_delay_taskq +348 0:00:00 spl_dynamic_tas +349 0:00:00 spl_kmem_cache +357 0:00:00 zvol +367 0:00:00 arc_prune +371 0:00:00 zthr_procedure +372 0:00:00 zthr_procedure +373 0:00:00 dbu_evict +375 0:00:00 dbuf_evict +378 0:00:00 z_vdev_file +379 0:00:00 l2arc_feed +446 0:00:00 z_null_iss +447 0:00:00 z_null_int +448 0:00:00 z_rd_iss +449 0:00:00 z_rd_int +450 0:00:00 z_rd_int +451 0:00:00 z_rd_int +452 0:00:00 z_rd_int +453 0:00:00 z_rd_int +454 0:00:00 z_rd_int +455 0:00:00 z_rd_int +456 0:00:00 z_rd_int +457 0:00:00 z_wr_iss +458 0:00:00 z_wr_iss_h +459 0:00:00 z_wr_int +460 0:00:00 z_wr_int +461 0:00:00 z_wr_int +462 0:00:00 z_wr_int +463 0:00:00 z_wr_int +464 0:00:00 z_wr_int +465 0:00:00 z_wr_int +466 0:00:00 z_wr_int +467 0:00:00 z_wr_int_h +468 0:00:00 z_fr_iss +469 0:00:00 z_fr_iss +470 0:00:00 z_fr_iss +471 0:00:00 z_fr_iss +472 0:00:00 z_fr_iss +473 0:00:00 z_fr_iss +474 0:00:00 z_fr_iss +475 0:00:00 z_fr_iss +476 0:00:00 z_fr_int +477 0:00:00 z_cl_iss +478 0:00:00 z_cl_int +479 0:00:00 z_ioctl_iss +480 0:00:00 z_ioctl_int +481 0:00:00 z_trim_iss +482 0:00:00 z_trim_int +483 0:00:00 z_zvol +484 0:00:00 z_prefetch +485 0:00:00 z_upgrade +487 0:00:00 dp_sync_taskq +488 0:00:00 dp_zil_clean_ta +489 0:00:00 dp_zil_clean_ta +490 0:00:00 z_iput +491 0:00:00 z_unlinked_drai +493 0:00:00 metaslab_group_ +494 0:00:00 metaslab_group_ +551 0:00:00 txg_quiesce +552 0:00:00 txg_sync +553 0:00:00 mmp +554 0:00:00 zthr_procedure +555 0:00:00 zthr_procedure +556 0:00:00 zthr_procedure +557 0:00:00 zthr_procedure +735 0:00:00 kworker/0:2 +743 0:03:12 systemd-journal +765 0:00:00 kworker/0:3 +766 0:00:00 kworker/0:4 +767 0:00:00 rpciod +774 0:00:00 xprtiod +779 0:00:00 blkmapd +781 0:13:08 systemd-udevd +830 0:00:00 irq/16-vmwgfx +837 0:00:00 ttm_swap +935 0:00:00 kworker/1:2 +1031 0:00:08 VGAuthService +1033 0:02:04 vmtoolsd +1037 0:00:52 auditd +1038 0:00:00 auditd +1237 0:00:00 z_null_iss +1238 0:00:00 z_null_int +1239 0:00:00 z_rd_iss +1240 0:00:00 z_rd_int +1241 0:00:00 z_rd_int +1242 0:00:00 z_rd_int +1243 0:00:00 z_rd_int +1244 0:00:00 z_rd_int +1245 0:00:00 z_rd_int +1246 0:00:00 z_rd_int +1247 0:00:00 z_rd_int +1248 0:00:00 z_wr_iss +1249 0:00:00 z_wr_iss_h +1250 0:00:00 z_wr_int +1251 0:00:00 z_wr_int +1252 0:00:00 z_wr_int +1253 0:00:00 z_wr_int +1254 0:00:00 z_wr_int +1255 0:00:00 z_wr_int +1256 0:00:00 z_wr_int +1257 0:00:00 z_wr_int +1258 0:00:00 z_wr_int_h +1259 0:00:00 z_fr_iss +1260 0:00:00 z_fr_iss +1261 0:00:00 z_fr_iss +1262 0:00:00 z_fr_iss +1263 0:00:00 z_fr_iss +1264 0:00:00 z_fr_iss +1265 0:00:00 z_fr_iss +1266 0:00:00 z_fr_iss +1267 0:00:00 z_fr_int +1268 0:00:00 z_cl_iss +1269 0:00:00 z_cl_int +1270 0:00:00 z_ioctl_iss +1271 0:00:00 z_ioctl_int +1272 0:00:00 z_trim_iss +1273 0:00:00 z_trim_int +1274 0:00:00 z_zvol +1275 0:00:00 z_prefetch +1276 0:00:00 z_upgrade +1281 0:00:00 dp_sync_taskq +1282 0:00:00 dp_zil_clean_ta +1283 0:00:00 dp_zil_clean_ta +1284 0:00:00 z_iput +1285 0:00:00 z_unlinked_drai +1290 0:00:00 metaslab_group_ +1291 0:00:00 metaslab_group_ +1335 0:00:00 txg_quiesce +1336 0:00:00 txg_sync +1337 0:00:00 mmp +1338 0:00:00 zthr_procedure +1339 0:00:00 zthr_procedure +1340 0:00:00 zthr_procedure +1341 0:00:00 zthr_procedure +1542 0:00:24 systemd-network +1578 0:00:40 systemd-resolve +1688 0:00:08 sshd +1728 0:00:04 rsyslogd +1730 0:00:40 dbus-daemon +1756 0:00:04 cron +1772 0:00:08 nscd +1781 0:01:32 networkd-dispat +1782 0:00:04 zed +1783 0:00:32 systemd-logind +1784 0:00:04 nscd +1785 0:00:00 nscd +1786 0:00:00 nscd +1787 0:00:00 nscd +1788 0:00:00 nscd +1789 0:00:00 nscd +1790 0:00:00 nscd +1791 0:00:00 nscd +1792 0:00:36 snmpd +1793 0:00:28 in:imuxsock +1794 0:00:00 in:imklog +1795 0:00:12 rs:main Q:Reg +1797 0:00:00 zed +1798 0:00:00 zed +1845 0:00:00 rsync +1857 0:00:00 delphix-stat-se +1858 0:00:04 sed +1860 0:00:00 delphix-stat-se +1861 0:00:00 sed +1870 0:00:00 delphix-stat-se +1871 0:00:00 sed +1878 0:00:00 rpc.idmapd +1887 0:00:00 rpc.mountd +1895 0:00:04 delphix-stat-se +1903 0:00:00 sed +1906 0:00:00 timeout +1910 0:00:00 timeout +1911 0:00:12 polkitd +1918 0:35:24 profile +1919 0:00:04 delphix-stat-se +1926 0:00:00 kworker/u5:1 +1934 0:00:00 sed +1936 0:00:00 timeout +1940 0:00:00 mpstat +1941 0:00:04 delphix-stat-se +1942 0:00:04 sed +1952 0:00:04 nginx +1958 0:00:00 iostat +1959 0:00:00 delphix-stat-se +1964 0:00:00 sed +1968 0:00:00 gmain +1972 0:00:00 gdbus +1977 0:00:00 delphix-stat-se +1979 0:00:00 nfsd +1982 0:00:00 sed +1984 0:00:00 nfsd +1986 0:00:00 nfsd +1987 0:00:00 nfsd +1990 0:00:00 delphix-stat-se +1991 0:00:00 nfsd +1992 0:00:00 nfsd +1994 0:00:00 nfsd +1995 0:00:08 sed +1996 0:00:00 nfsd +1998 0:00:00 nfsd +2002 0:00:00 nfsd +2004 0:00:00 nfsd +2007 0:00:00 nfsd +2011 0:00:00 delphix-stat-se +2012 0:00:00 sed +2013 0:00:00 nfsd +2017 0:00:00 nfsd +2019 0:00:00 nfsd +2021 0:00:08 nfs_delete +2025 0:00:00 nfsd +2028 0:00:00 nfsd +2035 0:00:00 nfsd +2039 0:00:00 nfsd +2042 0:00:00 nfsd +2044 0:00:00 nfsd +2045 0:00:00 gmain +2049 0:00:00 nfsd +2050 0:00:00 nfsd +2054 0:00:00 nfsd +2055 0:00:04 sudo +2057 0:00:00 nfsd +2058 0:00:00 nfsd +2059 0:00:00 nfsd +2062 0:00:00 nfsd +2063 0:00:00 nfsd +2064 0:00:00 nfsd +2066 0:00:00 nfsd +2067 0:00:00 nfsd +2068 0:00:00 nfsd +2069 0:00:00 nfsd +2071 0:00:00 nfsd +2072 0:00:00 nfsd +2073 0:00:00 nfsd +2074 0:00:00 nfsd +2075 0:00:00 nfsd +2076 0:00:00 nfsd +2077 0:00:00 nfsd +2078 0:00:00 nfsd +2079 0:00:12 postgres +2080 0:00:00 nfsd +2082 0:00:00 nfsd +2083 0:00:00 sleep +2084 0:00:00 nfsd +2085 0:00:00 nfsd +2086 0:00:00 nfsd +2087 0:00:00 nfsd +2088 0:00:00 nfsd +2089 0:00:00 nfsd +2091 0:00:00 nfsd +2092 0:00:00 nfsd +2093 0:00:00 nfsd +2095 0:00:00 nfsd +2096 0:00:00 nfsd +2097 0:00:00 nfsd +2098 0:00:00 nfsd +2099 0:00:00 nfsd +2100 0:00:00 nfsd +2101 0:00:00 nfsd +2103 0:00:00 nfsd +2104 0:00:00 nfsd +2105 0:00:00 nfsd +2106 0:00:00 nfsd +2121 0:00:24 rngd +2124 0:00:08 automount +2125 0:00:04 automount +2126 0:00:00 automount +2127 0:00:00 agetty +2132 0:00:36 login +2150 0:00:00 automount +2156 0:00:00 automount +2250 0:00:00 postgres +2251 0:00:04 postgres +2252 0:00:00 postgres +2253 0:00:04 postgres +2254 0:00:12 postgres +2255 0:00:00 postgres +2438 0:00:00 target_completi +2439 0:00:00 xcopy_wq +2445 0:00:00 iscsi_np +2853 0:00:00 java +2856 16:50:40 java +2857 0:18:44 java +2858 0:18:04 java +2859 0:42:04 java +2861 0:00:56 java +2862 0:01:24 java +2865 0:00:00 java +2866 0:00:00 java +2867 0:00:00 java +2868 10:56:20 java +2869 1:48:48 java +2870 0:00:00 java +2874 0:00:00 sleep +2877 0:00:00 java +2878 0:00:04 sleep +2879 0:00:00 sleep +2880 0:01:44 java +2910 0:00:08 java +3249 0:00:00 kworker/1:3 +3853 0:00:00 java +3856 0:00:20 java +3857 0:00:04 java +3858 0:00:08 java +3859 0:00:00 java +3860 0:00:00 java +3861 0:00:08 java +3862 0:00:12 java +3863 0:00:00 java +3864 0:00:04 java +3865 0:00:04 java +3921 0:00:36 java +4003 0:03:00 java +4005 0:02:44 java +4006 0:00:04 java +4007 0:00:00 java +4033 0:00:12 java +4038 0:02:28 java +4070 0:02:32 java +4074 0:02:28 java +4098 0:02:12 java +4099 0:00:00 java +4104 0:01:44 java +4136 0:02:00 java +4141 0:00:44 postgres +4142 0:00:44 postgres +4143 0:00:24 postgres +4144 0:00:32 postgres +4145 0:00:32 postgres +4146 0:00:40 postgres +4147 0:00:20 postgres +4148 0:00:44 postgres +4149 0:00:24 postgres +4150 0:00:44 postgres +4151 0:00:56 postgres +4152 0:00:32 postgres +4153 0:00:44 postgres +4154 0:00:28 postgres +4155 0:00:36 postgres +4156 0:00:40 postgres +4157 0:00:36 postgres +4158 0:01:00 postgres +4159 0:00:20 postgres +4160 0:00:40 postgres +4163 0:02:28 java +4237 0:00:48 systemd +4250 0:00:00 (sd-pam) +4275 0:00:04 bash +4291 0:00:00 java +4292 0:02:04 java +4293 0:00:00 java +4312 0:00:00 java +4363 0:00:00 java +4364 0:00:00 java +4365 0:00:04 java +4366 0:00:00 java +4367 0:00:04 java +4368 0:00:00 java +4369 0:00:04 java +4372 0:00:00 java +4373 0:00:00 java +4374 0:00:00 java +4375 0:00:00 java +4376 0:00:00 java +4379 0:00:20 java +4381 0:00:12 java +4469 0:00:24 java +4473 0:37:16 python2 +4474 0:00:00 java +4475 0:00:00 java +4476 0:00:00 java +4477 0:47:00 python2 +4478 0:00:00 java +4479 0:00:00 java +4480 0:00:00 java +4481 0:01:16 python3 +4482 0:00:00 java +4483 0:13:40 java +4484 0:00:00 java +4496 0:00:24 sshd +4505 0:00:00 sshd +4506 0:00:32 bash +4625 0:00:00 nginx +4665 0:00:00 kworker/1:4 +4666 0:00:00 kworker/1:5 +4722 0:00:28 java +4723 0:00:00 java +4724 0:00:00 java +4725 0:00:00 java +4726 0:00:00 java +4727 0:00:00 java +4728 0:00:00 java +4729 0:00:00 java +4730 0:00:00 java +4731 0:00:00 java +4732 0:00:00 java +4733 0:00:04 java +4734 0:00:04 java +4735 0:00:00 java +4742 0:00:04 native_oom_hand +4756 0:00:00 oom_waiter +5464 0:00:00 sleep +5468 0:00:00 sleep +5472 0:00:00 sleep +5517 0:00:00 z_null_iss +5518 0:00:00 z_null_int +5519 0:00:00 z_rd_iss +5520 0:00:00 z_rd_int +5521 0:00:00 z_rd_int +5522 0:00:00 z_rd_int +5523 0:00:00 z_rd_int +5524 0:00:00 z_rd_int +5525 0:00:00 z_rd_int +5526 0:00:00 z_rd_int +5527 0:00:00 z_rd_int +5528 0:00:00 z_wr_iss +5529 0:00:00 z_wr_iss_h +5530 0:00:00 z_wr_int +5531 0:00:00 z_wr_int +5532 0:00:00 z_wr_int +5533 0:00:00 z_wr_int +5534 0:00:00 z_wr_int +5535 0:00:00 z_wr_int +5536 0:00:00 z_wr_int +5537 0:00:00 z_wr_int +5538 0:00:00 z_wr_int_h +5539 0:00:00 z_fr_iss +5540 0:00:00 z_fr_iss +5541 0:00:00 z_fr_iss +5542 0:00:00 z_fr_iss +5543 0:00:00 z_fr_iss +5544 0:00:00 z_fr_iss +5545 0:00:00 z_fr_iss +5546 0:00:00 z_fr_iss +5547 0:00:00 z_fr_int +5548 0:00:00 z_cl_iss +5549 0:00:00 z_cl_int +5550 0:00:00 z_ioctl_iss +5551 0:00:00 z_ioctl_int +5552 0:00:00 z_trim_iss +5553 0:00:00 z_trim_int +5554 0:00:00 z_zvol +5555 0:00:00 z_prefetch +5556 0:00:00 z_upgrade +5588 0:00:00 metaslab_group_ +5589 0:00:00 metaslab_group_ +5592 0:00:00 dp_sync_taskq +5595 0:00:00 dp_zil_clean_ta +5596 0:00:00 dp_zil_clean_ta +5597 0:00:00 z_iput +5598 0:00:00 z_unlinked_drai +5599 0:00:00 txg_quiesce +5601 0:00:00 txg_sync +5602 0:00:00 mmp +5673 0:00:00 zthr_procedure +5674 0:00:00 zthr_procedure +5675 0:00:00 zthr_procedure +5676 0:00:00 zthr_procedure +5891 0:00:00 z_vdev_file +5899 0:00:00 z_vdev_file +5952 0:00:00 z_vdev_file +5976 0:00:00 z_vdev_file +5981 0:00:04 sudo +5983 0:02:56 dd +6026 0:00:04 sudo +6028 0:00:00 su +6029 0:00:00 bash +6030 0:00:00 z_vdev_file +6184 0:00:00 z_wr_int +6186 0:00:00 z_vdev_file +6188 0:00:00 z_vdev_file +6189 0:00:00 z_wr_int +6190 0:00:00 z_wr_int +6191 0:00:00 z_vdev_file +6192 0:00:00 z_vdev_file +6194 0:00:00 z_wr_int +6196 0:00:00 z_wr_int +6279 0:00:00 z_vdev_file +6309 0:00:00 sleep diff --git a/tests/integration/data/regression_output/linux/ps -A b/tests/integration/data/regression_output/linux/ps -A new file mode 100644 index 00000000..977441ce --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -A @@ -0,0 +1,575 @@ +task uid pid time stime ppid cmd +------------------ ----- ---- -------- ------- ---- --------------- +0xffffa089669edc00 0 1 0:02:44 0:52:48 0 systemd +0xffffa089669ec500 0 2 0:00:00 0:01:48 0 kthreadd +0xffffa089669eae00 0 3 0:00:00 0:00:00 2 rcu_gp +0xffffa089669e8000 0 4 0:00:00 0:00:00 2 rcu_par_gp +0xffffa089669e9700 0 5 0:00:00 0:00:00 2 kworker/0:0 +0xffffa08966a05c00 0 6 0:00:00 0:00:00 2 kworker/0:0H +0xffffa08966a04500 0 7 0:00:00 0:00:48 2 kworker/u4:0 +0xffffa08966a02e00 0 8 0:00:00 0:00:00 2 mm_percpu_wq +0xffffa08966a00000 0 9 0:00:00 0:00:00 2 ksoftirqd/0 +0xffffa08966a01700 0 10 0:00:00 0:00:00 2 rcu_sched +0xffffa08966a0ae00 0 11 0:00:00 0:00:08 2 migration/0 +0xffffa08966a08000 0 12 0:00:00 0:00:00 2 idle_inject/0 +0xffffa08966a09700 0 13 0:00:00 0:00:08 2 kworker/0:1 +0xffffa08966a0c500 0 14 0:00:00 0:00:00 2 cpuhp/0 +0xffffa08966a50000 0 15 0:00:00 0:00:00 2 cpuhp/1 +0xffffa08966a51700 0 16 0:00:00 0:00:00 2 idle_inject/1 +0xffffa08966a55c00 0 17 0:00:00 0:00:04 2 migration/1 +0xffffa08966a54500 0 18 0:00:00 0:00:04 2 ksoftirqd/1 +0xffffa08966a52e00 0 19 0:00:00 0:00:40 2 kworker/1:0 +0xffffa08966a69700 0 20 0:00:00 0:00:00 2 kworker/1:0H +0xffffa08966a6dc00 0 21 0:00:00 0:00:04 2 kdevtmpfs +0xffffa08966a6c500 0 22 0:00:00 0:00:00 2 netns +0xffffa08966a6ae00 0 23 0:00:00 0:00:00 2 rcu_tasks_kthre +0xffffa08966a68000 0 24 0:00:00 0:01:04 2 kauditd +0xffffa08966bcae00 0 25 0:00:00 0:00:00 2 khungtaskd +0xffffa08966bc8000 0 26 0:00:00 0:00:00 2 oom_reaper +0xffffa08966bc9700 0 27 0:00:00 0:00:00 2 writeback +0xffffa08966bcdc00 0 28 0:00:00 0:00:08 2 kcompactd0 +0xffffa08966bcc500 0 29 0:00:00 0:00:00 2 ksmd +0xffffa08966bd2e00 0 30 0:00:00 0:00:00 2 khugepaged +0xffffa08966bd0000 0 31 0:00:00 0:00:00 2 crypto +0xffffa08966bd1700 0 32 0:00:00 0:00:00 2 kintegrityd +0xffffa08966bd5c00 0 33 0:00:00 0:00:00 2 kblockd +0xffffa08966bd4500 0 34 0:00:00 0:00:00 2 tpm_dev_wq +0xffffa089666d5c00 0 35 0:00:00 0:00:00 2 ata_sff +0xffffa089666d4500 0 36 0:00:00 0:00:00 2 md +0xffffa089666d2e00 0 37 0:00:00 0:00:00 2 edac-poller +0xffffa089666d0000 0 38 0:00:00 0:00:00 2 devfreq_wq +0xffffa089666d1700 0 39 0:00:00 0:00:00 2 watchdogd +0xffffa08966795c00 0 40 0:00:00 0:00:00 2 kworker/1:1 +0xffffa08966794500 0 41 0:00:00 0:00:16 2 kworker/u4:1 +0xffffa08966791700 0 44 0:00:00 0:00:04 2 kswapd0 +0xffffa089587bdc00 0 45 0:00:00 0:00:00 2 kworker/u5:0 +0xffffa089587bc500 0 46 0:00:00 0:00:00 2 ecryptfs-kthrea +0xffffa08958039700 0 135 0:00:00 0:00:00 2 kthrotld +0xffffa0895803c500 0 136 0:00:00 0:00:00 2 irq/24-pciehp +0xffffa0895803dc00 0 137 0:00:00 0:00:00 2 irq/25-pciehp +0xffffa0895803ae00 0 138 0:00:00 0:00:00 2 irq/26-pciehp +0xffffa08958038000 0 139 0:00:00 0:00:00 2 irq/27-pciehp +0xffffa0895802c500 0 140 0:00:00 0:00:00 2 irq/28-pciehp +0xffffa0895802dc00 0 141 0:00:00 0:00:00 2 irq/29-pciehp +0xffffa08958029700 0 142 0:00:00 0:00:00 2 irq/30-pciehp +0xffffa08958028000 0 143 0:00:00 0:00:00 2 irq/31-pciehp +0xffffa0895802ae00 0 144 0:00:00 0:00:00 2 irq/32-pciehp +0xffffa0895809ae00 0 145 0:00:00 0:00:00 2 irq/33-pciehp +0xffffa0895809c500 0 146 0:00:00 0:00:00 2 irq/34-pciehp +0xffffa0895809dc00 0 147 0:00:00 0:00:00 2 irq/35-pciehp +0xffffa08958099700 0 148 0:00:00 0:00:00 2 irq/36-pciehp +0xffffa08958098000 0 149 0:00:00 0:00:00 2 irq/37-pciehp +0xffffa08958031700 0 150 0:00:00 0:00:00 2 irq/38-pciehp +0xffffa08958034500 0 151 0:00:00 0:00:00 2 irq/39-pciehp +0xffffa08958035c00 0 152 0:00:00 0:00:00 2 irq/40-pciehp +0xffffa08958030000 0 153 0:00:00 0:00:00 2 irq/41-pciehp +0xffffa08958032e00 0 154 0:00:00 0:00:00 2 irq/42-pciehp +0xffffa089580e2e00 0 155 0:00:00 0:00:00 2 irq/43-pciehp +0xffffa089580e5c00 0 156 0:00:00 0:00:00 2 irq/44-pciehp +0xffffa089580e1700 0 157 0:00:00 0:00:00 2 irq/45-pciehp +0xffffa089580e0000 0 158 0:00:00 0:00:00 2 irq/46-pciehp +0xffffa089580e4500 0 159 0:00:00 0:00:00 2 irq/47-pciehp +0xffffa08958089700 0 160 0:00:00 0:00:00 2 irq/48-pciehp +0xffffa0895808ae00 0 161 0:00:00 0:00:00 2 irq/49-pciehp +0xffffa0895808dc00 0 162 0:00:00 0:00:00 2 irq/50-pciehp +0xffffa08958088000 0 163 0:00:00 0:00:00 2 irq/51-pciehp +0xffffa0895808c500 0 164 0:00:00 0:00:00 2 irq/52-pciehp +0xffffa0895820c500 0 165 0:00:00 0:00:00 2 irq/53-pciehp +0xffffa0895820ae00 0 166 0:00:00 0:00:00 2 irq/54-pciehp +0xffffa08958208000 0 167 0:00:00 0:00:00 2 irq/55-pciehp +0xffffa08958209700 0 168 0:00:00 0:00:00 2 acpi_thermal_pm +0xffffa0895820dc00 0 169 0:00:00 0:00:04 2 scsi_eh_0 +0xffffa08957d18000 0 170 0:00:00 0:00:00 2 scsi_tmf_0 +0xffffa08957d19700 0 171 0:00:00 0:00:04 2 scsi_eh_1 +0xffffa08957d1dc00 0 172 0:00:00 0:00:00 2 scsi_tmf_1 +0xffffa08957d1c500 0 173 0:00:00 0:01:00 2 kworker/u4:2 +0xffffa08958082e00 0 174 0:00:00 0:00:52 2 kworker/u4:3 +0xffffa08958084500 0 175 0:00:00 0:00:00 2 kstrp +0xffffa08957db8000 0 199 0:00:00 0:00:00 2 charger_manager +0xffffa08957dbdc00 0 200 0:00:00 0:00:00 2 kworker/1:1H +0xffffa08957db5c00 0 251 0:00:00 0:00:00 2 mpt_poll_0 +0xffffa089587b9700 0 253 0:00:00 0:00:00 2 mpt/0 +0xffffa08957585c00 0 264 0:00:00 0:00:00 2 kworker/0:1H +0xffffa08957582e00 0 265 0:00:00 0:00:00 2 scsi_eh_2 +0xffffa08957580000 0 266 0:00:00 0:00:00 2 scsi_tmf_2 +0xffffa08957581700 0 267 0:00:00 0:00:16 2 kworker/u4:4 +0xffffa08957584500 0 268 0:00:00 0:00:00 2 kworker/u4:5 +0xffffa08966790000 0 318 0:00:00 0:00:00 2 raid5wq +0xffffa08957da8000 0 346 0:00:00 0:00:04 2 spl_system_task +0xffffa08957dadc00 0 347 0:00:00 0:00:00 2 spl_delay_taskq +0xffffa08957dac500 0 348 0:00:00 0:00:24 2 spl_dynamic_tas +0xffffa08957daae00 0 349 0:00:00 0:01:32 2 spl_kmem_cache +0xffffa08966792e00 0 357 0:00:00 0:00:00 2 zvol +0xffffa08956848000 0 367 0:00:00 0:00:00 2 arc_prune +0xffffa0895684c500 0 371 0:00:00 0:00:00 2 zthr_procedure +0xffffa08956849700 0 372 0:00:00 0:00:04 2 zthr_procedure +0xffffa0895684ae00 0 373 0:00:00 0:00:04 2 dbu_evict +0xffffa0895684dc00 0 375 0:00:00 0:01:52 2 dbuf_evict +0xffffa089580b2e00 0 378 0:00:00 0:00:16 2 z_vdev_file +0xffffa089580b1700 0 379 0:00:00 0:00:00 2 l2arc_feed +0xffffa089587bae00 0 446 0:00:00 0:00:16 2 z_null_iss +0xffffa089587b8000 0 447 0:00:00 0:00:28 2 z_null_int +0xffffa08957dbc500 0 448 0:00:00 0:00:00 2 z_rd_iss +0xffffa08957dbae00 0 449 0:00:00 0:13:00 2 z_rd_int +0xffffa08957db9700 0 450 0:00:00 0:11:20 2 z_rd_int +0xffffa08957db0000 0 451 0:00:00 0:12:32 2 z_rd_int +0xffffa08957db1700 0 452 0:00:00 0:11:04 2 z_rd_int +0xffffa08957db2e00 0 453 0:00:00 0:13:08 2 z_rd_int +0xffffa08957db4500 0 454 0:00:00 0:12:48 2 z_rd_int +0xffffa08953515c00 0 455 0:00:00 0:12:00 2 z_rd_int +0xffffa08953514500 0 456 0:00:00 0:11:20 2 z_rd_int +0xffffa08953512e00 0 457 0:00:00 1:24:20 2 z_wr_iss +0xffffa08953510000 0 458 0:00:00 0:06:36 2 z_wr_iss_h +0xffffa08953511700 0 459 0:00:00 0:01:36 2 z_wr_int +0xffffa0895350ae00 0 460 0:00:00 0:01:56 2 z_wr_int +0xffffa08953508000 0 461 0:00:00 0:01:08 2 z_wr_int +0xffffa08953509700 0 462 0:00:00 0:01:20 2 z_wr_int +0xffffa0895350dc00 0 463 0:00:00 0:01:44 2 z_wr_int +0xffffa0895350c500 0 464 0:00:00 0:01:56 2 z_wr_int +0xffffa089534b4500 0 465 0:00:00 0:02:44 2 z_wr_int +0xffffa089534b2e00 0 466 0:00:00 0:01:20 2 z_wr_int +0xffffa089534b0000 0 467 0:00:00 0:00:48 2 z_wr_int_h +0xffffa089534b1700 0 468 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534b5c00 0 469 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a2e00 0 470 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a0000 0 471 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a1700 0 472 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a5c00 0 473 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a4500 0 474 0:00:00 0:00:00 2 z_fr_iss +0xffffa08953474500 0 475 0:00:00 0:00:00 2 z_fr_iss +0xffffa08953472e00 0 476 0:00:00 0:00:00 2 z_fr_int +0xffffa08953470000 0 477 0:00:00 0:00:00 2 z_cl_iss +0xffffa08953471700 0 478 0:00:00 0:00:00 2 z_cl_int +0xffffa08953475c00 0 479 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0895346c500 0 480 0:00:00 0:00:12 2 z_ioctl_int +0xffffa0895346ae00 0 481 0:00:00 0:00:00 2 z_trim_iss +0xffffa08953468000 0 482 0:00:00 0:00:00 2 z_trim_int +0xffffa08953469700 0 483 0:00:00 0:00:12 2 z_zvol +0xffffa0895346dc00 0 484 0:00:00 0:00:00 2 z_prefetch +0xffffa089533fdc00 0 485 0:00:00 0:00:00 2 z_upgrade +0xffffa089533fc500 0 487 0:00:00 0:03:28 2 dp_sync_taskq +0xffffa089533fae00 0 488 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa089533f8000 0 489 0:00:00 0:00:08 2 dp_zil_clean_ta +0xffffa089533f9700 0 490 0:00:00 0:00:00 2 z_iput +0xffffa08952e71700 0 491 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa08952e75c00 0 493 0:00:00 0:00:04 2 metaslab_group_ +0xffffa08952e70000 0 494 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08957e3c500 0 551 0:00:00 0:00:00 2 txg_quiesce +0xffffa08957da9700 0 552 0:00:00 0:02:04 2 txg_sync +0xffffa08952e5ae00 0 553 0:00:00 0:00:04 2 mmp +0xffffa08952e5dc00 0 554 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e58000 0 555 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e5c500 0 556 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e59700 0 557 0:00:00 0:00:00 2 zthr_procedure +0xffffa089320e0000 0 735 0:00:00 0:00:04 2 kworker/0:2 +0xffffa089320e1700 0 743 0:03:12 0:06:12 1 systemd-journal +0xffffa0893085dc00 0 765 0:00:00 0:00:32 2 kworker/0:3 +0xffffa08952e72e00 0 766 0:00:00 0:00:32 2 kworker/0:4 +0xffffa08952e74500 0 767 0:00:00 0:00:00 2 rpciod +0xffffa089304e8000 0 774 0:00:00 0:00:00 2 xprtiod +0xffffa08931968000 0 779 0:00:00 0:00:08 1 blkmapd +0xffffa0893196dc00 0 781 0:13:08 0:06:00 1 systemd-udevd +0xffffa089320e5c00 0 830 0:00:00 0:00:00 2 irq/16-vmwgfx +0xffffa08957e38000 0 837 0:00:00 0:00:00 2 ttm_swap +0xffffa089304ec500 0 935 0:00:00 0:00:04 2 kworker/1:2 +0xffffa08958081700 0 1031 0:00:08 0:00:28 1 VGAuthService +0xffffa089320e4500 0 1033 0:02:04 0:01:40 1 vmtoolsd +0xffffa08952ec4500 0 1037 0:00:52 0:03:44 1 auditd +0xffffa0893a532e00 0 1038 0:00:00 0:01:08 1 auditd +0xffffa0894e7b2e00 0 1237 0:00:00 0:00:28 2 z_null_iss +0xffffa0894e7f4500 0 1238 0:00:00 0:00:32 2 z_null_int +0xffffa0894e7f2e00 0 1239 0:00:00 0:00:00 2 z_rd_iss +0xffffa0894e7f0000 0 1240 0:00:00 0:00:04 2 z_rd_int +0xffffa0894e7f1700 0 1241 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f5c00 0 1242 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fdc00 0 1243 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fc500 0 1244 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fae00 0 1245 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f8000 0 1246 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f9700 0 1247 0:00:00 0:00:00 2 z_rd_int +0xffffa0894ea71700 0 1248 0:00:00 0:00:00 2 z_wr_iss +0xffffa0894ea75c00 0 1249 0:00:00 0:00:00 2 z_wr_iss_h +0xffffa0894ea74500 0 1250 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea72e00 0 1251 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea70000 0 1252 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea7dc00 0 1253 0:00:00 0:00:04 2 z_wr_int +0xffffa0894ea7c500 0 1254 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea7ae00 0 1255 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea78000 0 1256 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea79700 0 1257 0:00:00 0:00:00 2 z_wr_int +0xffffa0894eaaae00 0 1258 0:00:00 0:00:00 2 z_wr_int_h +0xffffa0894eaa8000 0 1259 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaa9700 0 1260 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaadc00 0 1261 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaac500 0 1262 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabae00 0 1263 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eab8000 0 1264 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eab9700 0 1265 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabdc00 0 1266 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabc500 0 1267 0:00:00 0:00:00 2 z_fr_int +0xffffa0894eb61700 0 1268 0:00:00 0:00:00 2 z_cl_iss +0xffffa0894eb65c00 0 1269 0:00:00 0:00:00 2 z_cl_int +0xffffa0894eb64500 0 1270 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0894eb62e00 0 1271 0:00:00 0:00:00 2 z_ioctl_int +0xffffa0894eb60000 0 1272 0:00:00 0:00:00 2 z_trim_iss +0xffffa0894eb69700 0 1273 0:00:00 0:00:00 2 z_trim_int +0xffffa0894eb6dc00 0 1274 0:00:00 0:00:00 2 z_zvol +0xffffa0894eb6c500 0 1275 0:00:00 0:00:00 2 z_prefetch +0xffffa0894eb6ae00 0 1276 0:00:00 0:00:00 2 z_upgrade +0xffffa0894ebb2e00 0 1281 0:00:00 0:00:00 2 dp_sync_taskq +0xffffa0894ebb0000 0 1282 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0894ebb1700 0 1283 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0894ebb4500 0 1284 0:00:00 0:00:00 2 z_iput +0xffffa0894ebb5c00 0 1285 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa0893085c500 0 1290 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08930858000 0 1291 0:00:00 0:00:00 2 metaslab_group_ +0xffffa089553a8000 0 1335 0:00:00 0:00:00 2 txg_quiesce +0xffffa089553a9700 0 1336 0:00:00 0:00:08 2 txg_sync +0xffffa089553adc00 0 1337 0:00:00 0:00:00 2 mmp +0xffffa089553ac500 0 1338 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553bae00 0 1339 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553b8000 0 1340 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553b9700 0 1341 0:00:00 0:00:00 2 zthr_procedure +0xffffa0893085ae00 101 1542 0:00:24 0:00:44 1 systemd-network +0xffffa089408f1700 102 1578 0:00:40 0:00:24 1 systemd-resolve +0xffffa089408f2e00 0 1688 0:00:08 0:00:12 1 sshd +0xffffa08940965c00 103 1728 0:00:04 0:00:16 1 rsyslogd +0xffffa08940962e00 104 1730 0:00:40 0:00:48 1 dbus-daemon +0xffffa08931969700 0 1756 0:00:04 0:00:00 1 cron +0xffffa0894e6a9700 0 1772 0:00:08 0:00:12 1 nscd +0xffffa089408f8000 0 1781 0:01:32 0:01:00 1 networkd-dispat +0xffffa089408fdc00 0 1782 0:00:04 0:00:40 1 zed +0xffffa089408fc500 0 1783 0:00:32 0:00:24 1 systemd-logind +0xffffa0895601dc00 0 1784 0:00:04 0:00:00 1 nscd +0xffffa08956018000 0 1785 0:00:00 0:00:08 1 nscd +0xffffa08956019700 0 1786 0:00:00 0:00:04 1 nscd +0xffffa0895601c500 0 1787 0:00:00 0:00:12 1 nscd +0xffffa0895601ae00 0 1788 0:00:00 0:00:08 1 nscd +0xffffa089560c1700 0 1789 0:00:00 0:00:08 1 nscd +0xffffa089560c4500 0 1790 0:00:00 0:00:00 1 nscd +0xffffa089560c2e00 0 1791 0:00:00 0:00:00 1 nscd +0xffffa089553bc500 107 1792 0:00:36 0:01:08 1 snmpd +0xffffa089408f5c00 103 1793 0:00:28 0:00:24 1 in:imuxsock +0xffffa089408f4500 103 1794 0:00:00 0:00:04 1 in:imklog +0xffffa08930859700 103 1795 0:00:12 0:00:32 1 rs:main Q:Reg +0xffffa0895541dc00 0 1797 0:00:00 0:00:00 1 zed +0xffffa0895541ae00 0 1798 0:00:00 0:00:00 1 zed +0xffffa08957d1ae00 0 1845 0:00:00 0:00:00 1 rsync +0xffffa0893691dc00 0 1857 0:00:00 0:00:00 1 delphix-stat-se +0xffffa08936918000 0 1858 0:00:04 0:00:04 1 sed +0xffffa0893691c500 0 1860 0:00:00 0:00:00 1 delphix-stat-se +0xffffa08936919700 0 1861 0:00:00 0:00:00 1 sed +0xffffa0893691ae00 0 1870 0:00:00 0:00:00 1 delphix-stat-se +0xffffa0893304dc00 0 1871 0:00:00 0:00:00 1 sed +0xffffa08952ec2e00 0 1878 0:00:00 0:00:00 1 rpc.idmapd +0xffffa08952ec0000 0 1887 0:00:00 0:00:00 1 rpc.mountd +0xffffa08933048000 0 1895 0:00:04 0:00:04 1 delphix-stat-se +0xffffa08933049700 0 1903 0:00:00 0:00:00 1 sed +0xffffa0893649ae00 0 1906 0:00:00 0:00:00 1860 timeout +0xffffa08936498000 0 1910 0:00:00 0:00:00 1857 timeout +0xffffa089304edc00 0 1911 0:00:12 0:00:20 1 polkitd +0xffffa089320c1700 0 1918 0:35:24 0:12:28 1910 profile +0xffffa0893304c500 0 1919 0:00:04 0:00:04 1 delphix-stat-se +0xffffa08957e39700 0 1926 0:00:00 0:00:00 2 kworker/u5:1 +0xffffa0893304ae00 0 1934 0:00:00 0:00:00 1 sed +0xffffa089320c4500 0 1936 0:00:00 0:00:00 1870 timeout +0xffffa089320c5c00 0 1940 0:00:00 0:00:00 1906 mpstat +0xffffa08931d50000 0 1941 0:00:04 0:00:04 1 delphix-stat-se +0xffffa089320c0000 0 1942 0:00:04 0:00:24 1 sed +0xffffa0893319dc00 0 1952 0:00:04 0:00:00 1 nginx +0xffffa0894b280000 0 1958 0:00:00 0:00:00 1936 iostat +0xffffa0894b281700 0 1959 0:00:00 0:00:00 1 delphix-stat-se +0xffffa0894b282e00 0 1964 0:00:00 0:00:04 1 sed +0xffffa08952ec5c00 0 1968 0:00:00 0:00:00 1 gmain +0xffffa08930464500 0 1972 0:00:00 0:00:00 1 gdbus +0xffffa089320c2e00 0 1977 0:00:00 0:00:04 1 delphix-stat-se +0xffffa08958085c00 0 1979 0:00:00 0:00:04 2 nfsd +0xffffa0896510dc00 0 1982 0:00:00 0:00:04 1 sed +0xffffa0894e7b0000 0 1984 0:00:00 0:00:00 2 nfsd +0xffffa0894e7b5c00 0 1986 0:00:00 0:00:00 2 nfsd +0xffffa0894e7b1700 0 1987 0:00:00 0:00:00 2 nfsd +0xffffa0896510ae00 0 1990 0:00:00 0:00:04 1 delphix-stat-se +0xffffa0894e7b4500 0 1991 0:00:00 0:00:00 2 nfsd +0xffffa089580b0000 0 1992 0:00:00 0:00:00 2 nfsd +0xffffa089580b5c00 0 1994 0:00:00 0:00:00 2 nfsd +0xffffa089405c9700 0 1995 0:00:08 0:00:08 1 sed +0xffffa089580b4500 0 1996 0:00:00 0:00:00 2 nfsd +0xffffa089408f9700 0 1998 0:00:00 0:00:00 2 nfsd +0xffffa089553bdc00 0 2002 0:00:00 0:00:00 2 nfsd +0xffffa0894e6aae00 0 2004 0:00:00 0:00:00 2 nfsd +0xffffa0894e6ac500 0 2007 0:00:00 0:00:00 2 nfsd +0xffffa0894b285c00 0 2011 0:00:00 0:00:04 1 delphix-stat-se +0xffffa08965109700 0 2012 0:00:00 0:00:16 1 sed +0xffffa0894e6adc00 0 2013 0:00:00 0:00:00 2 nfsd +0xffffa089408fae00 0 2017 0:00:00 0:00:00 2 nfsd +0xffffa08957e3ae00 0 2019 0:00:00 0:00:00 2 nfsd +0xffffa0893649dc00 0 2021 0:00:08 0:00:36 1 nfs_delete +0xffffa089304e9700 0 2025 0:00:00 0:00:00 2 nfsd +0xffffa08940961700 0 2028 0:00:00 0:00:00 2 nfsd +0xffffa08940960000 0 2035 0:00:00 0:00:00 2 nfsd +0xffffa0893bf7ae00 0 2039 0:00:00 0:00:00 2 nfsd +0xffffa0893bf78000 0 2042 0:00:00 0:00:00 2 nfsd +0xffffa0893bf79700 0 2044 0:00:00 0:00:00 2 nfsd +0xffffa0894483dc00 0 2045 0:00:00 0:00:00 1 gmain +0xffffa0893bf7dc00 0 2049 0:00:00 0:00:00 2 nfsd +0xffffa0893bf7c500 0 2050 0:00:00 0:00:00 2 nfsd +0xffffa08957e3dc00 0 2054 0:00:00 0:00:00 2 nfsd +0xffffa08936801700 0 2055 0:00:04 0:00:12 1 sudo +0xffffa0894eb68000 0 2057 0:00:00 0:00:00 2 nfsd +0xffffa08958080000 0 2058 0:00:00 0:00:00 2 nfsd +0xffffa08941f6c500 0 2059 0:00:00 0:00:00 2 nfsd +0xffffa08941f6ae00 0 2062 0:00:00 0:00:00 2 nfsd +0xffffa08941f68000 0 2063 0:00:00 0:00:00 2 nfsd +0xffffa08941f69700 0 2064 0:00:00 0:00:00 2 nfsd +0xffffa08941f6dc00 0 2066 0:00:00 0:00:00 2 nfsd +0xffffa08934e00000 0 2067 0:00:00 0:00:00 2 nfsd +0xffffa08934e01700 0 2068 0:00:00 0:00:00 2 nfsd +0xffffa08934e05c00 0 2069 0:00:00 0:00:00 2 nfsd +0xffffa08934e04500 0 2071 0:00:00 0:00:00 2 nfsd +0xffffa08934e02e00 0 2072 0:00:00 0:00:00 2 nfsd +0xffffa08934b58000 0 2073 0:00:00 0:00:00 2 nfsd +0xffffa08934b59700 0 2074 0:00:00 0:00:00 2 nfsd +0xffffa08934b5dc00 0 2075 0:00:00 0:00:00 2 nfsd +0xffffa08934b5c500 0 2076 0:00:00 0:00:00 2 nfsd +0xffffa08934b5ae00 0 2077 0:00:00 0:00:00 2 nfsd +0xffffa089358f1700 0 2078 0:00:00 0:00:00 2 nfsd +0xffffa08936800000 65437 2079 0:00:12 0:02:24 2055 postgres +0xffffa089358f5c00 0 2080 0:00:00 0:00:00 2 nfsd +0xffffa089358f4500 0 2082 0:00:00 0:00:00 2 nfsd +0xffffa0893dd31700 0 2083 0:00:00 0:00:00 1959 sleep +0xffffa089358f2e00 0 2084 0:00:00 0:00:00 2 nfsd +0xffffa089358f0000 0 2085 0:00:00 0:00:00 2 nfsd +0xffffa0893d89ae00 0 2086 0:00:00 0:00:00 2 nfsd +0xffffa0893d898000 0 2087 0:00:00 0:00:00 2 nfsd +0xffffa0893d899700 0 2088 0:00:00 0:00:00 2 nfsd +0xffffa0893d89dc00 0 2089 0:00:00 0:00:00 2 nfsd +0xffffa0893f96c500 0 2091 0:00:00 0:00:00 2 nfsd +0xffffa0893f96ae00 0 2092 0:00:00 0:00:00 2 nfsd +0xffffa0893f968000 0 2093 0:00:00 0:00:00 2 nfsd +0xffffa0893f969700 0 2095 0:00:00 0:00:00 2 nfsd +0xffffa0893f96dc00 0 2096 0:00:00 0:00:00 2 nfsd +0xffffa0893d89c500 0 2097 0:00:00 0:00:00 2 nfsd +0xffffa089408f0000 0 2098 0:00:00 0:00:00 2 nfsd +0xffffa089553aae00 0 2099 0:00:00 0:00:00 2 nfsd +0xffffa08939f70000 0 2100 0:00:00 0:00:00 2 nfsd +0xffffa08939f71700 0 2101 0:00:00 0:00:00 2 nfsd +0xffffa08939f75c00 0 2103 0:00:00 0:00:00 2 nfsd +0xffffa08939f74500 0 2104 0:00:00 0:00:00 2 nfsd +0xffffa08939f72e00 0 2105 0:00:00 0:00:00 2 nfsd +0xffffa0893c08ae00 0 2106 0:00:00 0:00:00 2 nfsd +0xffffa08950a89700 0 2121 0:00:24 0:00:08 1 rngd +0xffffa089304eae00 0 2124 0:00:08 0:00:12 1 automount +0xffffa089410b9700 0 2125 0:00:04 0:00:00 1 automount +0xffffa089410bae00 0 2126 0:00:00 0:00:00 1 automount +0xffffa0893c2b1700 0 2127 0:00:00 0:00:08 1 agetty +0xffffa0893c2b4500 0 2132 0:00:36 0:01:00 1 login +0xffffa089410bc500 0 2150 0:00:00 0:00:00 1 automount +0xffffa08960f42e00 0 2156 0:00:00 0:00:08 1 automount +0xffffa0894cc81700 65437 2250 0:00:00 0:00:00 2079 postgres +0xffffa0894cc82e00 65437 2251 0:00:04 0:00:16 2079 postgres +0xffffa0894cc80000 65437 2252 0:00:00 0:00:00 2079 postgres +0xffffa0894cc85c00 65437 2253 0:00:04 0:00:00 2079 postgres +0xffffa0894cc84500 65437 2254 0:00:12 0:01:28 2079 postgres +0xffffa0891e0ec500 65437 2255 0:00:00 0:00:00 2079 postgres +0xffffa0890590c500 0 2438 0:00:00 0:00:00 2 target_completi +0xffffa0890590dc00 0 2439 0:00:00 0:00:00 2 xcopy_wq +0xffffa08905909700 0 2445 0:00:00 0:00:00 2 iscsi_np +0xffffa08960a38000 0 2853 0:00:00 0:00:00 1 java +0xffffa08960a3dc00 0 2856 16:50:40 6:15:24 1 java +0xffffa08960a3ae00 0 2857 0:18:44 0:04:24 1 java +0xffffa08960a3c500 0 2858 0:18:04 0:04:16 1 java +0xffffa088ef2d5c00 0 2859 0:42:04 0:07:40 1 java +0xffffa088ef2d2e00 0 2861 0:00:56 0:00:12 1 java +0xffffa088ef2d0000 0 2862 0:01:24 0:00:00 1 java +0xffffa088ef2d4500 0 2865 0:00:00 0:00:04 1 java +0xffffa088ef2d1700 0 2866 0:00:00 0:00:00 1 java +0xffffa088f097dc00 0 2867 0:00:00 0:00:04 1 java +0xffffa088f097ae00 0 2868 10:56:20 0:11:12 1 java +0xffffa088f0978000 0 2869 1:48:48 0:04:56 1 java +0xffffa088f6e5c500 0 2870 0:00:00 0:00:00 1 java +0xffffa0893dd34500 0 2874 0:00:00 0:00:00 2011 sleep +0xffffa088f0979700 0 2877 0:00:00 0:00:00 1 java +0xffffa0893dd30000 0 2878 0:00:04 0:00:00 1990 sleep +0xffffa089405cc500 0 2879 0:00:00 0:00:00 1977 sleep +0xffffa08960a39700 0 2880 0:01:44 0:00:36 1 java +0xffffa08960a24500 0 2910 0:00:08 0:00:04 1 java +0xffffa08905908000 0 3249 0:00:00 0:00:00 2 kworker/1:3 +0xffffa08960a20000 0 3853 0:00:00 0:00:00 1 java +0xffffa08960a25c00 0 3856 0:00:20 0:00:16 1 java +0xffffa08960a22e00 0 3857 0:00:04 0:00:08 1 java +0xffffa08960a21700 0 3858 0:00:08 0:00:04 1 java +0xffffa088f097c500 0 3859 0:00:00 0:00:16 1 java +0xffffa088f677dc00 0 3860 0:00:00 0:00:00 1 java +0xffffa088f6779700 0 3861 0:00:08 0:00:04 1 java +0xffffa088f677c500 0 3862 0:00:12 0:00:12 1 java +0xffffa088f6778000 0 3863 0:00:00 0:00:08 1 java +0xffffa088f677ae00 0 3864 0:00:04 0:00:00 1 java +0xffffa0889cd4dc00 0 3865 0:00:04 0:00:00 1 java +0xffffa088f6e5dc00 0 3921 0:00:36 0:00:00 1 java +0xffffa0889cd48000 0 4003 0:03:00 0:00:32 1 java +0xffffa088f6e5ae00 0 4005 0:02:44 0:00:24 1 java +0xffffa088f6e59700 0 4006 0:00:04 0:00:04 1 java +0xffffa0889cd4ae00 0 4007 0:00:00 0:00:00 1 java +0xffffa088d33d1700 0 4033 0:00:12 0:00:04 1 java +0xffffa088d33d2e00 0 4038 0:02:28 0:00:28 1 java +0xffffa088d33d5c00 0 4070 0:02:32 0:00:12 1 java +0xffffa088d33d0000 0 4074 0:02:28 0:00:16 1 java +0xffffa0889cd4c500 0 4098 0:02:12 0:00:28 1 java +0xffffa0889cd49700 0 4099 0:00:00 0:00:00 1 java +0xffffa08889c92e00 0 4104 0:01:44 0:00:12 1 java +0xffffa08889c95c00 0 4136 0:02:00 0:00:40 1 java +0xffffa0895a329700 65437 4141 0:00:44 0:00:28 2079 postgres +0xffffa0895a32dc00 65437 4142 0:00:44 0:00:36 2079 postgres +0xffffa0895a328000 65437 4143 0:00:24 0:00:20 2079 postgres +0xffffa0895a32ae00 65437 4144 0:00:32 0:00:32 2079 postgres +0xffffa08936805c00 65437 4145 0:00:32 0:00:36 2079 postgres +0xffffa08936804500 65437 4146 0:00:40 0:00:28 2079 postgres +0xffffa08936802e00 65437 4147 0:00:20 0:00:52 2079 postgres +0xffffa088be0fc500 65437 4148 0:00:44 0:01:00 2079 postgres +0xffffa088be0fdc00 65437 4149 0:00:24 0:00:36 2079 postgres +0xffffa088be0f9700 65437 4150 0:00:44 0:00:32 2079 postgres +0xffffa088be0fae00 65437 4151 0:00:56 0:00:52 2079 postgres +0xffffa088be0f8000 65437 4152 0:00:32 0:00:32 2079 postgres +0xffffa08889755c00 65437 4153 0:00:44 0:00:52 2079 postgres +0xffffa08889751700 65437 4154 0:00:28 0:00:32 2079 postgres +0xffffa08889752e00 65437 4155 0:00:36 0:00:32 2079 postgres +0xffffa08889750000 65437 4156 0:00:40 0:00:36 2079 postgres +0xffffa08889754500 65437 4157 0:00:36 0:00:40 2079 postgres +0xffffa08888afc500 65437 4158 0:01:00 0:00:16 2079 postgres +0xffffa08888afdc00 65437 4159 0:00:20 0:00:40 2079 postgres +0xffffa08888af9700 65437 4160 0:00:40 0:00:56 2079 postgres +0xffffa08889c91700 0 4163 0:02:28 0:00:04 1 java +0xffffa0893196c500 65433 4237 0:00:48 0:00:28 1 systemd +0xffffa088c58aae00 65433 4250 0:00:00 0:00:00 4237 (sd-pam) +0xffffa0888cc64500 65433 4275 0:00:04 0:00:24 2132 bash +0xffffa088d33d4500 0 4291 0:00:00 0:00:00 1 java +0xffffa088f6e58000 0 4292 0:02:04 0:00:32 1 java +0xffffa0889366c500 0 4293 0:00:00 0:00:00 1 java +0xffffa08896518000 0 4312 0:00:00 0:00:00 1 java +0xffffa0889651dc00 0 4363 0:00:00 0:00:00 1 java +0xffffa08896519700 0 4364 0:00:00 0:00:00 1 java +0xffffa0889651ae00 0 4365 0:00:04 0:00:00 1 java +0xffffa0889651c500 0 4366 0:00:00 0:00:00 1 java +0xffffa0888e8a1700 0 4367 0:00:04 0:00:00 1 java +0xffffa0888e8a5c00 0 4368 0:00:00 0:00:00 1 java +0xffffa08889c90000 0 4369 0:00:04 0:00:00 1 java +0xffffa08893669700 0 4372 0:00:00 0:00:00 1 java +0xffffa0888e8a0000 0 4373 0:00:00 0:00:00 1 java +0xffffa08889c94500 0 4374 0:00:00 0:00:00 1 java +0xffffa0888e8a2e00 0 4375 0:00:00 0:00:04 1 java +0xffffa0889fdd0000 0 4376 0:00:00 0:00:00 1 java +0xffffa0889fdd2e00 0 4379 0:00:20 0:00:04 1 java +0xffffa088f7408000 0 4381 0:00:12 0:00:04 1 java +0xffffa0889fdd1700 0 4469 0:00:24 0:00:04 1 java +0xffffa088f740c500 0 4473 0:37:16 0:08:32 2856 python2 +0xffffa088f740ae00 0 4474 0:00:00 0:00:00 1 java +0xffffa088f740dc00 0 4475 0:00:00 0:00:00 1 java +0xffffa088f7409700 0 4476 0:00:00 0:00:00 1 java +0xffffa08894564500 0 4477 0:47:00 0:14:12 2856 python2 +0xffffa08894560000 0 4478 0:00:00 0:00:00 1 java +0xffffa08894562e00 0 4479 0:00:00 0:00:00 1 java +0xffffa08894565c00 0 4480 0:00:00 0:00:00 1 java +0xffffa0889445dc00 0 4481 0:01:16 0:00:36 2856 python3 +0xffffa0889445ae00 0 4482 0:00:00 0:00:00 1 java +0xffffa08894458000 0 4483 0:13:40 0:04:00 1 java +0xffffa0889445c500 0 4484 0:00:00 0:00:00 1 java +0xffffa0893196ae00 0 4496 0:00:24 0:00:20 1688 sshd +0xffffa088a150ae00 65433 4505 0:00:00 0:00:44 4496 sshd +0xffffa0888548ae00 65433 4506 0:00:32 0:00:24 4505 bash +0xffffa08931488000 65534 4625 0:00:00 0:00:04 1952 nginx +0xffffa0893c2b2e00 0 4665 0:00:00 0:00:00 2 kworker/1:4 +0xffffa0893c2b5c00 0 4666 0:00:00 0:00:00 2 kworker/1:5 +0xffffa08894a69700 0 4722 0:00:28 0:00:04 1 java +0xffffa08894a6ae00 0 4723 0:00:00 0:00:00 1 java +0xffffa08894a68000 0 4724 0:00:00 0:00:00 1 java +0xffffa08894a6dc00 0 4725 0:00:00 0:00:00 1 java +0xffffa08893668000 0 4726 0:00:00 0:00:00 1 java +0xffffa0889fdd5c00 0 4727 0:00:00 0:00:04 1 java +0xffffa0889fdd4500 0 4728 0:00:00 0:00:00 1 java +0xffffa08894561700 0 4729 0:00:00 0:00:00 1 java +0xffffa08888c49700 0 4730 0:00:00 0:00:00 1 java +0xffffa08888c48000 0 4731 0:00:00 0:00:00 1 java +0xffffa088ca874500 0 4732 0:00:00 0:00:00 1 java +0xffffa088ca871700 0 4733 0:00:04 0:00:00 1 java +0xffffa088ca875c00 0 4734 0:00:04 0:00:08 1 java +0xffffa088ca872e00 0 4735 0:00:00 0:00:04 1 java +0xffffa0893c08c500 0 4742 0:00:04 0:00:00 1 native_oom_hand +0xffffa08941afae00 0 4756 0:00:00 0:00:00 4742 oom_waiter +0xffffa089405cdc00 0 5464 0:00:00 0:00:00 1895 sleep +0xffffa0896510c500 0 5468 0:00:00 0:00:00 1941 sleep +0xffffa0894b284500 0 5472 0:00:00 0:00:00 1919 sleep +0xffffa0893c088000 0 5517 0:00:00 0:00:36 2 z_null_iss +0xffffa0893c08dc00 0 5518 0:00:00 0:00:20 2 z_null_int +0xffffa0893c089700 0 5519 0:00:00 0:00:00 2 z_rd_iss +0xffffa089481b8000 0 5520 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bae00 0 5521 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bdc00 0 5522 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bc500 0 5523 0:00:00 0:00:00 2 z_rd_int +0xffffa089481b9700 0 5524 0:00:00 0:00:00 2 z_rd_int +0xffffa08940964500 0 5525 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58adc00 0 5526 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58a8000 0 5527 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58a9700 0 5528 0:00:00 0:03:56 2 z_wr_iss +0xffffa088c58ac500 0 5529 0:00:00 0:00:00 2 z_wr_iss_h +0xffffa0893c2b0000 0 5530 0:00:00 0:00:04 2 z_wr_int +0xffffa089320e2e00 0 5531 0:00:00 0:00:48 2 z_wr_int +0xffffa0890590ae00 0 5532 0:00:00 0:00:12 2 z_wr_int +0xffffa08952ec1700 0 5533 0:00:00 0:00:24 2 z_wr_int +0xffffa08951028000 0 5534 0:00:00 0:00:32 2 z_wr_int +0xffffa08951029700 0 5535 0:00:00 0:00:12 2 z_wr_int +0xffffa0895102dc00 0 5536 0:00:00 0:00:24 2 z_wr_int +0xffffa0895102c500 0 5537 0:00:00 0:00:36 2 z_wr_int +0xffffa0895102ae00 0 5538 0:00:00 0:00:00 2 z_wr_int_h +0xffffa0888c779700 0 5539 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77dc00 0 5540 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77c500 0 5541 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77ae00 0 5542 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c778000 0 5543 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a69700 0 5544 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6dc00 0 5545 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6c500 0 5546 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6ae00 0 5547 0:00:00 0:00:00 2 z_fr_int +0xffffa08941a68000 0 5548 0:00:00 0:00:00 2 z_cl_iss +0xffffa0889bef1700 0 5549 0:00:00 0:00:00 2 z_cl_int +0xffffa0889bef5c00 0 5550 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0889bef4500 0 5551 0:00:00 0:00:00 2 z_ioctl_int +0xffffa0889bef2e00 0 5552 0:00:00 0:00:00 2 z_trim_iss +0xffffa0889bef0000 0 5553 0:00:00 0:00:00 2 z_trim_int +0xffffa0889c9eae00 0 5554 0:00:00 0:00:00 2 z_zvol +0xffffa0889c9e8000 0 5555 0:00:00 0:00:00 2 z_prefetch +0xffffa0889c9e9700 0 5556 0:00:00 0:00:00 2 z_upgrade +0xffffa08953ac5c00 0 5588 0:00:00 0:00:00 2 metaslab_group_ +0xffffa0889c9edc00 0 5589 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08953acae00 0 5592 0:00:00 0:00:08 2 dp_sync_taskq +0xffffa08953ac8000 0 5595 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0895a31c500 0 5596 0:00:00 0:00:40 2 dp_zil_clean_ta +0xffffa0895a319700 0 5597 0:00:00 0:00:00 2 z_iput +0xffffa0895a31ae00 0 5598 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa0895a318000 0 5599 0:00:00 0:00:00 2 txg_quiesce +0xffffa0895a31dc00 0 5601 0:00:00 0:01:04 2 txg_sync +0xffffa0888d2cdc00 0 5602 0:00:00 0:00:00 2 mmp +0xffffa08883df0000 0 5673 0:00:00 0:00:00 2 zthr_procedure +0xffffa08883df5c00 0 5674 0:00:00 0:00:00 2 zthr_procedure +0xffffa08883df1700 0 5675 0:00:00 0:00:00 2 zthr_procedure +0xffffa08937f4dc00 0 5676 0:00:00 0:00:00 2 zthr_procedure +0xffffa08959894500 0 5891 0:00:00 0:00:24 2 z_vdev_file +0xffffa0888c784500 0 5899 0:00:00 0:00:16 2 z_vdev_file +0xffffa088ce681700 0 5952 0:00:00 0:00:32 2 z_vdev_file +0xffffa0894e6a8000 0 5976 0:00:00 0:00:24 2 z_vdev_file +0xffffa08884834500 0 5981 0:00:04 0:00:16 4506 sudo +0xffffa0888cc62e00 0 5983 0:02:56 2:07:16 5981 dd +0xffffa08884832e00 0 6026 0:00:04 0:00:12 4506 sudo +0xffffa08884830000 0 6028 0:00:00 0:00:20 6026 su +0xffffa08884831700 0 6029 0:00:00 0:00:00 6028 bash +0xffffa0888d2cae00 0 6030 0:00:00 0:00:28 2 z_vdev_file +0xffffa088ce682e00 0 6184 0:00:00 0:00:00 2 z_wr_int +0xffffa08953ac9700 0 6186 0:00:00 0:00:00 2 z_vdev_file +0xffffa08953acdc00 0 6188 0:00:00 0:00:00 2 z_vdev_file +0xffffa0889c9ec500 0 6189 0:00:00 0:00:00 2 z_wr_int +0xffffa08883df2e00 0 6190 0:00:00 0:00:00 2 z_wr_int +0xffffa08883df4500 0 6191 0:00:00 0:00:00 2 z_vdev_file +0xffffa0888d2cc500 0 6192 0:00:00 0:00:00 2 z_vdev_file +0xffffa0888d2c8000 0 6194 0:00:00 0:00:00 2 z_wr_int +0xffffa0888d2fdc00 0 6196 0:00:00 0:00:00 2 z_wr_int +0xffffa087d20edc00 0 6279 0:00:00 0:00:00 2 z_vdev_file +0xffffa088f1e95c00 0 6309 0:00:00 0:00:00 2021 sleep diff --git a/tests/integration/data/regression_output/linux/ps -C bash b/tests/integration/data/regression_output/linux/ps -C bash new file mode 100644 index 00000000..31946988 --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -C bash @@ -0,0 +1,5 @@ +pid time cmd +---- ------- ---- +4275 0:00:04 bash +4506 0:00:32 bash +6029 0:00:00 bash diff --git a/tests/integration/data/regression_output/linux/ps -e b/tests/integration/data/regression_output/linux/ps -e new file mode 100644 index 00000000..977441ce --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -e @@ -0,0 +1,575 @@ +task uid pid time stime ppid cmd +------------------ ----- ---- -------- ------- ---- --------------- +0xffffa089669edc00 0 1 0:02:44 0:52:48 0 systemd +0xffffa089669ec500 0 2 0:00:00 0:01:48 0 kthreadd +0xffffa089669eae00 0 3 0:00:00 0:00:00 2 rcu_gp +0xffffa089669e8000 0 4 0:00:00 0:00:00 2 rcu_par_gp +0xffffa089669e9700 0 5 0:00:00 0:00:00 2 kworker/0:0 +0xffffa08966a05c00 0 6 0:00:00 0:00:00 2 kworker/0:0H +0xffffa08966a04500 0 7 0:00:00 0:00:48 2 kworker/u4:0 +0xffffa08966a02e00 0 8 0:00:00 0:00:00 2 mm_percpu_wq +0xffffa08966a00000 0 9 0:00:00 0:00:00 2 ksoftirqd/0 +0xffffa08966a01700 0 10 0:00:00 0:00:00 2 rcu_sched +0xffffa08966a0ae00 0 11 0:00:00 0:00:08 2 migration/0 +0xffffa08966a08000 0 12 0:00:00 0:00:00 2 idle_inject/0 +0xffffa08966a09700 0 13 0:00:00 0:00:08 2 kworker/0:1 +0xffffa08966a0c500 0 14 0:00:00 0:00:00 2 cpuhp/0 +0xffffa08966a50000 0 15 0:00:00 0:00:00 2 cpuhp/1 +0xffffa08966a51700 0 16 0:00:00 0:00:00 2 idle_inject/1 +0xffffa08966a55c00 0 17 0:00:00 0:00:04 2 migration/1 +0xffffa08966a54500 0 18 0:00:00 0:00:04 2 ksoftirqd/1 +0xffffa08966a52e00 0 19 0:00:00 0:00:40 2 kworker/1:0 +0xffffa08966a69700 0 20 0:00:00 0:00:00 2 kworker/1:0H +0xffffa08966a6dc00 0 21 0:00:00 0:00:04 2 kdevtmpfs +0xffffa08966a6c500 0 22 0:00:00 0:00:00 2 netns +0xffffa08966a6ae00 0 23 0:00:00 0:00:00 2 rcu_tasks_kthre +0xffffa08966a68000 0 24 0:00:00 0:01:04 2 kauditd +0xffffa08966bcae00 0 25 0:00:00 0:00:00 2 khungtaskd +0xffffa08966bc8000 0 26 0:00:00 0:00:00 2 oom_reaper +0xffffa08966bc9700 0 27 0:00:00 0:00:00 2 writeback +0xffffa08966bcdc00 0 28 0:00:00 0:00:08 2 kcompactd0 +0xffffa08966bcc500 0 29 0:00:00 0:00:00 2 ksmd +0xffffa08966bd2e00 0 30 0:00:00 0:00:00 2 khugepaged +0xffffa08966bd0000 0 31 0:00:00 0:00:00 2 crypto +0xffffa08966bd1700 0 32 0:00:00 0:00:00 2 kintegrityd +0xffffa08966bd5c00 0 33 0:00:00 0:00:00 2 kblockd +0xffffa08966bd4500 0 34 0:00:00 0:00:00 2 tpm_dev_wq +0xffffa089666d5c00 0 35 0:00:00 0:00:00 2 ata_sff +0xffffa089666d4500 0 36 0:00:00 0:00:00 2 md +0xffffa089666d2e00 0 37 0:00:00 0:00:00 2 edac-poller +0xffffa089666d0000 0 38 0:00:00 0:00:00 2 devfreq_wq +0xffffa089666d1700 0 39 0:00:00 0:00:00 2 watchdogd +0xffffa08966795c00 0 40 0:00:00 0:00:00 2 kworker/1:1 +0xffffa08966794500 0 41 0:00:00 0:00:16 2 kworker/u4:1 +0xffffa08966791700 0 44 0:00:00 0:00:04 2 kswapd0 +0xffffa089587bdc00 0 45 0:00:00 0:00:00 2 kworker/u5:0 +0xffffa089587bc500 0 46 0:00:00 0:00:00 2 ecryptfs-kthrea +0xffffa08958039700 0 135 0:00:00 0:00:00 2 kthrotld +0xffffa0895803c500 0 136 0:00:00 0:00:00 2 irq/24-pciehp +0xffffa0895803dc00 0 137 0:00:00 0:00:00 2 irq/25-pciehp +0xffffa0895803ae00 0 138 0:00:00 0:00:00 2 irq/26-pciehp +0xffffa08958038000 0 139 0:00:00 0:00:00 2 irq/27-pciehp +0xffffa0895802c500 0 140 0:00:00 0:00:00 2 irq/28-pciehp +0xffffa0895802dc00 0 141 0:00:00 0:00:00 2 irq/29-pciehp +0xffffa08958029700 0 142 0:00:00 0:00:00 2 irq/30-pciehp +0xffffa08958028000 0 143 0:00:00 0:00:00 2 irq/31-pciehp +0xffffa0895802ae00 0 144 0:00:00 0:00:00 2 irq/32-pciehp +0xffffa0895809ae00 0 145 0:00:00 0:00:00 2 irq/33-pciehp +0xffffa0895809c500 0 146 0:00:00 0:00:00 2 irq/34-pciehp +0xffffa0895809dc00 0 147 0:00:00 0:00:00 2 irq/35-pciehp +0xffffa08958099700 0 148 0:00:00 0:00:00 2 irq/36-pciehp +0xffffa08958098000 0 149 0:00:00 0:00:00 2 irq/37-pciehp +0xffffa08958031700 0 150 0:00:00 0:00:00 2 irq/38-pciehp +0xffffa08958034500 0 151 0:00:00 0:00:00 2 irq/39-pciehp +0xffffa08958035c00 0 152 0:00:00 0:00:00 2 irq/40-pciehp +0xffffa08958030000 0 153 0:00:00 0:00:00 2 irq/41-pciehp +0xffffa08958032e00 0 154 0:00:00 0:00:00 2 irq/42-pciehp +0xffffa089580e2e00 0 155 0:00:00 0:00:00 2 irq/43-pciehp +0xffffa089580e5c00 0 156 0:00:00 0:00:00 2 irq/44-pciehp +0xffffa089580e1700 0 157 0:00:00 0:00:00 2 irq/45-pciehp +0xffffa089580e0000 0 158 0:00:00 0:00:00 2 irq/46-pciehp +0xffffa089580e4500 0 159 0:00:00 0:00:00 2 irq/47-pciehp +0xffffa08958089700 0 160 0:00:00 0:00:00 2 irq/48-pciehp +0xffffa0895808ae00 0 161 0:00:00 0:00:00 2 irq/49-pciehp +0xffffa0895808dc00 0 162 0:00:00 0:00:00 2 irq/50-pciehp +0xffffa08958088000 0 163 0:00:00 0:00:00 2 irq/51-pciehp +0xffffa0895808c500 0 164 0:00:00 0:00:00 2 irq/52-pciehp +0xffffa0895820c500 0 165 0:00:00 0:00:00 2 irq/53-pciehp +0xffffa0895820ae00 0 166 0:00:00 0:00:00 2 irq/54-pciehp +0xffffa08958208000 0 167 0:00:00 0:00:00 2 irq/55-pciehp +0xffffa08958209700 0 168 0:00:00 0:00:00 2 acpi_thermal_pm +0xffffa0895820dc00 0 169 0:00:00 0:00:04 2 scsi_eh_0 +0xffffa08957d18000 0 170 0:00:00 0:00:00 2 scsi_tmf_0 +0xffffa08957d19700 0 171 0:00:00 0:00:04 2 scsi_eh_1 +0xffffa08957d1dc00 0 172 0:00:00 0:00:00 2 scsi_tmf_1 +0xffffa08957d1c500 0 173 0:00:00 0:01:00 2 kworker/u4:2 +0xffffa08958082e00 0 174 0:00:00 0:00:52 2 kworker/u4:3 +0xffffa08958084500 0 175 0:00:00 0:00:00 2 kstrp +0xffffa08957db8000 0 199 0:00:00 0:00:00 2 charger_manager +0xffffa08957dbdc00 0 200 0:00:00 0:00:00 2 kworker/1:1H +0xffffa08957db5c00 0 251 0:00:00 0:00:00 2 mpt_poll_0 +0xffffa089587b9700 0 253 0:00:00 0:00:00 2 mpt/0 +0xffffa08957585c00 0 264 0:00:00 0:00:00 2 kworker/0:1H +0xffffa08957582e00 0 265 0:00:00 0:00:00 2 scsi_eh_2 +0xffffa08957580000 0 266 0:00:00 0:00:00 2 scsi_tmf_2 +0xffffa08957581700 0 267 0:00:00 0:00:16 2 kworker/u4:4 +0xffffa08957584500 0 268 0:00:00 0:00:00 2 kworker/u4:5 +0xffffa08966790000 0 318 0:00:00 0:00:00 2 raid5wq +0xffffa08957da8000 0 346 0:00:00 0:00:04 2 spl_system_task +0xffffa08957dadc00 0 347 0:00:00 0:00:00 2 spl_delay_taskq +0xffffa08957dac500 0 348 0:00:00 0:00:24 2 spl_dynamic_tas +0xffffa08957daae00 0 349 0:00:00 0:01:32 2 spl_kmem_cache +0xffffa08966792e00 0 357 0:00:00 0:00:00 2 zvol +0xffffa08956848000 0 367 0:00:00 0:00:00 2 arc_prune +0xffffa0895684c500 0 371 0:00:00 0:00:00 2 zthr_procedure +0xffffa08956849700 0 372 0:00:00 0:00:04 2 zthr_procedure +0xffffa0895684ae00 0 373 0:00:00 0:00:04 2 dbu_evict +0xffffa0895684dc00 0 375 0:00:00 0:01:52 2 dbuf_evict +0xffffa089580b2e00 0 378 0:00:00 0:00:16 2 z_vdev_file +0xffffa089580b1700 0 379 0:00:00 0:00:00 2 l2arc_feed +0xffffa089587bae00 0 446 0:00:00 0:00:16 2 z_null_iss +0xffffa089587b8000 0 447 0:00:00 0:00:28 2 z_null_int +0xffffa08957dbc500 0 448 0:00:00 0:00:00 2 z_rd_iss +0xffffa08957dbae00 0 449 0:00:00 0:13:00 2 z_rd_int +0xffffa08957db9700 0 450 0:00:00 0:11:20 2 z_rd_int +0xffffa08957db0000 0 451 0:00:00 0:12:32 2 z_rd_int +0xffffa08957db1700 0 452 0:00:00 0:11:04 2 z_rd_int +0xffffa08957db2e00 0 453 0:00:00 0:13:08 2 z_rd_int +0xffffa08957db4500 0 454 0:00:00 0:12:48 2 z_rd_int +0xffffa08953515c00 0 455 0:00:00 0:12:00 2 z_rd_int +0xffffa08953514500 0 456 0:00:00 0:11:20 2 z_rd_int +0xffffa08953512e00 0 457 0:00:00 1:24:20 2 z_wr_iss +0xffffa08953510000 0 458 0:00:00 0:06:36 2 z_wr_iss_h +0xffffa08953511700 0 459 0:00:00 0:01:36 2 z_wr_int +0xffffa0895350ae00 0 460 0:00:00 0:01:56 2 z_wr_int +0xffffa08953508000 0 461 0:00:00 0:01:08 2 z_wr_int +0xffffa08953509700 0 462 0:00:00 0:01:20 2 z_wr_int +0xffffa0895350dc00 0 463 0:00:00 0:01:44 2 z_wr_int +0xffffa0895350c500 0 464 0:00:00 0:01:56 2 z_wr_int +0xffffa089534b4500 0 465 0:00:00 0:02:44 2 z_wr_int +0xffffa089534b2e00 0 466 0:00:00 0:01:20 2 z_wr_int +0xffffa089534b0000 0 467 0:00:00 0:00:48 2 z_wr_int_h +0xffffa089534b1700 0 468 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534b5c00 0 469 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a2e00 0 470 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a0000 0 471 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a1700 0 472 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a5c00 0 473 0:00:00 0:00:00 2 z_fr_iss +0xffffa089534a4500 0 474 0:00:00 0:00:00 2 z_fr_iss +0xffffa08953474500 0 475 0:00:00 0:00:00 2 z_fr_iss +0xffffa08953472e00 0 476 0:00:00 0:00:00 2 z_fr_int +0xffffa08953470000 0 477 0:00:00 0:00:00 2 z_cl_iss +0xffffa08953471700 0 478 0:00:00 0:00:00 2 z_cl_int +0xffffa08953475c00 0 479 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0895346c500 0 480 0:00:00 0:00:12 2 z_ioctl_int +0xffffa0895346ae00 0 481 0:00:00 0:00:00 2 z_trim_iss +0xffffa08953468000 0 482 0:00:00 0:00:00 2 z_trim_int +0xffffa08953469700 0 483 0:00:00 0:00:12 2 z_zvol +0xffffa0895346dc00 0 484 0:00:00 0:00:00 2 z_prefetch +0xffffa089533fdc00 0 485 0:00:00 0:00:00 2 z_upgrade +0xffffa089533fc500 0 487 0:00:00 0:03:28 2 dp_sync_taskq +0xffffa089533fae00 0 488 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa089533f8000 0 489 0:00:00 0:00:08 2 dp_zil_clean_ta +0xffffa089533f9700 0 490 0:00:00 0:00:00 2 z_iput +0xffffa08952e71700 0 491 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa08952e75c00 0 493 0:00:00 0:00:04 2 metaslab_group_ +0xffffa08952e70000 0 494 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08957e3c500 0 551 0:00:00 0:00:00 2 txg_quiesce +0xffffa08957da9700 0 552 0:00:00 0:02:04 2 txg_sync +0xffffa08952e5ae00 0 553 0:00:00 0:00:04 2 mmp +0xffffa08952e5dc00 0 554 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e58000 0 555 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e5c500 0 556 0:00:00 0:00:00 2 zthr_procedure +0xffffa08952e59700 0 557 0:00:00 0:00:00 2 zthr_procedure +0xffffa089320e0000 0 735 0:00:00 0:00:04 2 kworker/0:2 +0xffffa089320e1700 0 743 0:03:12 0:06:12 1 systemd-journal +0xffffa0893085dc00 0 765 0:00:00 0:00:32 2 kworker/0:3 +0xffffa08952e72e00 0 766 0:00:00 0:00:32 2 kworker/0:4 +0xffffa08952e74500 0 767 0:00:00 0:00:00 2 rpciod +0xffffa089304e8000 0 774 0:00:00 0:00:00 2 xprtiod +0xffffa08931968000 0 779 0:00:00 0:00:08 1 blkmapd +0xffffa0893196dc00 0 781 0:13:08 0:06:00 1 systemd-udevd +0xffffa089320e5c00 0 830 0:00:00 0:00:00 2 irq/16-vmwgfx +0xffffa08957e38000 0 837 0:00:00 0:00:00 2 ttm_swap +0xffffa089304ec500 0 935 0:00:00 0:00:04 2 kworker/1:2 +0xffffa08958081700 0 1031 0:00:08 0:00:28 1 VGAuthService +0xffffa089320e4500 0 1033 0:02:04 0:01:40 1 vmtoolsd +0xffffa08952ec4500 0 1037 0:00:52 0:03:44 1 auditd +0xffffa0893a532e00 0 1038 0:00:00 0:01:08 1 auditd +0xffffa0894e7b2e00 0 1237 0:00:00 0:00:28 2 z_null_iss +0xffffa0894e7f4500 0 1238 0:00:00 0:00:32 2 z_null_int +0xffffa0894e7f2e00 0 1239 0:00:00 0:00:00 2 z_rd_iss +0xffffa0894e7f0000 0 1240 0:00:00 0:00:04 2 z_rd_int +0xffffa0894e7f1700 0 1241 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f5c00 0 1242 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fdc00 0 1243 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fc500 0 1244 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7fae00 0 1245 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f8000 0 1246 0:00:00 0:00:00 2 z_rd_int +0xffffa0894e7f9700 0 1247 0:00:00 0:00:00 2 z_rd_int +0xffffa0894ea71700 0 1248 0:00:00 0:00:00 2 z_wr_iss +0xffffa0894ea75c00 0 1249 0:00:00 0:00:00 2 z_wr_iss_h +0xffffa0894ea74500 0 1250 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea72e00 0 1251 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea70000 0 1252 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea7dc00 0 1253 0:00:00 0:00:04 2 z_wr_int +0xffffa0894ea7c500 0 1254 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea7ae00 0 1255 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea78000 0 1256 0:00:00 0:00:00 2 z_wr_int +0xffffa0894ea79700 0 1257 0:00:00 0:00:00 2 z_wr_int +0xffffa0894eaaae00 0 1258 0:00:00 0:00:00 2 z_wr_int_h +0xffffa0894eaa8000 0 1259 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaa9700 0 1260 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaadc00 0 1261 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eaac500 0 1262 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabae00 0 1263 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eab8000 0 1264 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eab9700 0 1265 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabdc00 0 1266 0:00:00 0:00:00 2 z_fr_iss +0xffffa0894eabc500 0 1267 0:00:00 0:00:00 2 z_fr_int +0xffffa0894eb61700 0 1268 0:00:00 0:00:00 2 z_cl_iss +0xffffa0894eb65c00 0 1269 0:00:00 0:00:00 2 z_cl_int +0xffffa0894eb64500 0 1270 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0894eb62e00 0 1271 0:00:00 0:00:00 2 z_ioctl_int +0xffffa0894eb60000 0 1272 0:00:00 0:00:00 2 z_trim_iss +0xffffa0894eb69700 0 1273 0:00:00 0:00:00 2 z_trim_int +0xffffa0894eb6dc00 0 1274 0:00:00 0:00:00 2 z_zvol +0xffffa0894eb6c500 0 1275 0:00:00 0:00:00 2 z_prefetch +0xffffa0894eb6ae00 0 1276 0:00:00 0:00:00 2 z_upgrade +0xffffa0894ebb2e00 0 1281 0:00:00 0:00:00 2 dp_sync_taskq +0xffffa0894ebb0000 0 1282 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0894ebb1700 0 1283 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0894ebb4500 0 1284 0:00:00 0:00:00 2 z_iput +0xffffa0894ebb5c00 0 1285 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa0893085c500 0 1290 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08930858000 0 1291 0:00:00 0:00:00 2 metaslab_group_ +0xffffa089553a8000 0 1335 0:00:00 0:00:00 2 txg_quiesce +0xffffa089553a9700 0 1336 0:00:00 0:00:08 2 txg_sync +0xffffa089553adc00 0 1337 0:00:00 0:00:00 2 mmp +0xffffa089553ac500 0 1338 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553bae00 0 1339 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553b8000 0 1340 0:00:00 0:00:00 2 zthr_procedure +0xffffa089553b9700 0 1341 0:00:00 0:00:00 2 zthr_procedure +0xffffa0893085ae00 101 1542 0:00:24 0:00:44 1 systemd-network +0xffffa089408f1700 102 1578 0:00:40 0:00:24 1 systemd-resolve +0xffffa089408f2e00 0 1688 0:00:08 0:00:12 1 sshd +0xffffa08940965c00 103 1728 0:00:04 0:00:16 1 rsyslogd +0xffffa08940962e00 104 1730 0:00:40 0:00:48 1 dbus-daemon +0xffffa08931969700 0 1756 0:00:04 0:00:00 1 cron +0xffffa0894e6a9700 0 1772 0:00:08 0:00:12 1 nscd +0xffffa089408f8000 0 1781 0:01:32 0:01:00 1 networkd-dispat +0xffffa089408fdc00 0 1782 0:00:04 0:00:40 1 zed +0xffffa089408fc500 0 1783 0:00:32 0:00:24 1 systemd-logind +0xffffa0895601dc00 0 1784 0:00:04 0:00:00 1 nscd +0xffffa08956018000 0 1785 0:00:00 0:00:08 1 nscd +0xffffa08956019700 0 1786 0:00:00 0:00:04 1 nscd +0xffffa0895601c500 0 1787 0:00:00 0:00:12 1 nscd +0xffffa0895601ae00 0 1788 0:00:00 0:00:08 1 nscd +0xffffa089560c1700 0 1789 0:00:00 0:00:08 1 nscd +0xffffa089560c4500 0 1790 0:00:00 0:00:00 1 nscd +0xffffa089560c2e00 0 1791 0:00:00 0:00:00 1 nscd +0xffffa089553bc500 107 1792 0:00:36 0:01:08 1 snmpd +0xffffa089408f5c00 103 1793 0:00:28 0:00:24 1 in:imuxsock +0xffffa089408f4500 103 1794 0:00:00 0:00:04 1 in:imklog +0xffffa08930859700 103 1795 0:00:12 0:00:32 1 rs:main Q:Reg +0xffffa0895541dc00 0 1797 0:00:00 0:00:00 1 zed +0xffffa0895541ae00 0 1798 0:00:00 0:00:00 1 zed +0xffffa08957d1ae00 0 1845 0:00:00 0:00:00 1 rsync +0xffffa0893691dc00 0 1857 0:00:00 0:00:00 1 delphix-stat-se +0xffffa08936918000 0 1858 0:00:04 0:00:04 1 sed +0xffffa0893691c500 0 1860 0:00:00 0:00:00 1 delphix-stat-se +0xffffa08936919700 0 1861 0:00:00 0:00:00 1 sed +0xffffa0893691ae00 0 1870 0:00:00 0:00:00 1 delphix-stat-se +0xffffa0893304dc00 0 1871 0:00:00 0:00:00 1 sed +0xffffa08952ec2e00 0 1878 0:00:00 0:00:00 1 rpc.idmapd +0xffffa08952ec0000 0 1887 0:00:00 0:00:00 1 rpc.mountd +0xffffa08933048000 0 1895 0:00:04 0:00:04 1 delphix-stat-se +0xffffa08933049700 0 1903 0:00:00 0:00:00 1 sed +0xffffa0893649ae00 0 1906 0:00:00 0:00:00 1860 timeout +0xffffa08936498000 0 1910 0:00:00 0:00:00 1857 timeout +0xffffa089304edc00 0 1911 0:00:12 0:00:20 1 polkitd +0xffffa089320c1700 0 1918 0:35:24 0:12:28 1910 profile +0xffffa0893304c500 0 1919 0:00:04 0:00:04 1 delphix-stat-se +0xffffa08957e39700 0 1926 0:00:00 0:00:00 2 kworker/u5:1 +0xffffa0893304ae00 0 1934 0:00:00 0:00:00 1 sed +0xffffa089320c4500 0 1936 0:00:00 0:00:00 1870 timeout +0xffffa089320c5c00 0 1940 0:00:00 0:00:00 1906 mpstat +0xffffa08931d50000 0 1941 0:00:04 0:00:04 1 delphix-stat-se +0xffffa089320c0000 0 1942 0:00:04 0:00:24 1 sed +0xffffa0893319dc00 0 1952 0:00:04 0:00:00 1 nginx +0xffffa0894b280000 0 1958 0:00:00 0:00:00 1936 iostat +0xffffa0894b281700 0 1959 0:00:00 0:00:00 1 delphix-stat-se +0xffffa0894b282e00 0 1964 0:00:00 0:00:04 1 sed +0xffffa08952ec5c00 0 1968 0:00:00 0:00:00 1 gmain +0xffffa08930464500 0 1972 0:00:00 0:00:00 1 gdbus +0xffffa089320c2e00 0 1977 0:00:00 0:00:04 1 delphix-stat-se +0xffffa08958085c00 0 1979 0:00:00 0:00:04 2 nfsd +0xffffa0896510dc00 0 1982 0:00:00 0:00:04 1 sed +0xffffa0894e7b0000 0 1984 0:00:00 0:00:00 2 nfsd +0xffffa0894e7b5c00 0 1986 0:00:00 0:00:00 2 nfsd +0xffffa0894e7b1700 0 1987 0:00:00 0:00:00 2 nfsd +0xffffa0896510ae00 0 1990 0:00:00 0:00:04 1 delphix-stat-se +0xffffa0894e7b4500 0 1991 0:00:00 0:00:00 2 nfsd +0xffffa089580b0000 0 1992 0:00:00 0:00:00 2 nfsd +0xffffa089580b5c00 0 1994 0:00:00 0:00:00 2 nfsd +0xffffa089405c9700 0 1995 0:00:08 0:00:08 1 sed +0xffffa089580b4500 0 1996 0:00:00 0:00:00 2 nfsd +0xffffa089408f9700 0 1998 0:00:00 0:00:00 2 nfsd +0xffffa089553bdc00 0 2002 0:00:00 0:00:00 2 nfsd +0xffffa0894e6aae00 0 2004 0:00:00 0:00:00 2 nfsd +0xffffa0894e6ac500 0 2007 0:00:00 0:00:00 2 nfsd +0xffffa0894b285c00 0 2011 0:00:00 0:00:04 1 delphix-stat-se +0xffffa08965109700 0 2012 0:00:00 0:00:16 1 sed +0xffffa0894e6adc00 0 2013 0:00:00 0:00:00 2 nfsd +0xffffa089408fae00 0 2017 0:00:00 0:00:00 2 nfsd +0xffffa08957e3ae00 0 2019 0:00:00 0:00:00 2 nfsd +0xffffa0893649dc00 0 2021 0:00:08 0:00:36 1 nfs_delete +0xffffa089304e9700 0 2025 0:00:00 0:00:00 2 nfsd +0xffffa08940961700 0 2028 0:00:00 0:00:00 2 nfsd +0xffffa08940960000 0 2035 0:00:00 0:00:00 2 nfsd +0xffffa0893bf7ae00 0 2039 0:00:00 0:00:00 2 nfsd +0xffffa0893bf78000 0 2042 0:00:00 0:00:00 2 nfsd +0xffffa0893bf79700 0 2044 0:00:00 0:00:00 2 nfsd +0xffffa0894483dc00 0 2045 0:00:00 0:00:00 1 gmain +0xffffa0893bf7dc00 0 2049 0:00:00 0:00:00 2 nfsd +0xffffa0893bf7c500 0 2050 0:00:00 0:00:00 2 nfsd +0xffffa08957e3dc00 0 2054 0:00:00 0:00:00 2 nfsd +0xffffa08936801700 0 2055 0:00:04 0:00:12 1 sudo +0xffffa0894eb68000 0 2057 0:00:00 0:00:00 2 nfsd +0xffffa08958080000 0 2058 0:00:00 0:00:00 2 nfsd +0xffffa08941f6c500 0 2059 0:00:00 0:00:00 2 nfsd +0xffffa08941f6ae00 0 2062 0:00:00 0:00:00 2 nfsd +0xffffa08941f68000 0 2063 0:00:00 0:00:00 2 nfsd +0xffffa08941f69700 0 2064 0:00:00 0:00:00 2 nfsd +0xffffa08941f6dc00 0 2066 0:00:00 0:00:00 2 nfsd +0xffffa08934e00000 0 2067 0:00:00 0:00:00 2 nfsd +0xffffa08934e01700 0 2068 0:00:00 0:00:00 2 nfsd +0xffffa08934e05c00 0 2069 0:00:00 0:00:00 2 nfsd +0xffffa08934e04500 0 2071 0:00:00 0:00:00 2 nfsd +0xffffa08934e02e00 0 2072 0:00:00 0:00:00 2 nfsd +0xffffa08934b58000 0 2073 0:00:00 0:00:00 2 nfsd +0xffffa08934b59700 0 2074 0:00:00 0:00:00 2 nfsd +0xffffa08934b5dc00 0 2075 0:00:00 0:00:00 2 nfsd +0xffffa08934b5c500 0 2076 0:00:00 0:00:00 2 nfsd +0xffffa08934b5ae00 0 2077 0:00:00 0:00:00 2 nfsd +0xffffa089358f1700 0 2078 0:00:00 0:00:00 2 nfsd +0xffffa08936800000 65437 2079 0:00:12 0:02:24 2055 postgres +0xffffa089358f5c00 0 2080 0:00:00 0:00:00 2 nfsd +0xffffa089358f4500 0 2082 0:00:00 0:00:00 2 nfsd +0xffffa0893dd31700 0 2083 0:00:00 0:00:00 1959 sleep +0xffffa089358f2e00 0 2084 0:00:00 0:00:00 2 nfsd +0xffffa089358f0000 0 2085 0:00:00 0:00:00 2 nfsd +0xffffa0893d89ae00 0 2086 0:00:00 0:00:00 2 nfsd +0xffffa0893d898000 0 2087 0:00:00 0:00:00 2 nfsd +0xffffa0893d899700 0 2088 0:00:00 0:00:00 2 nfsd +0xffffa0893d89dc00 0 2089 0:00:00 0:00:00 2 nfsd +0xffffa0893f96c500 0 2091 0:00:00 0:00:00 2 nfsd +0xffffa0893f96ae00 0 2092 0:00:00 0:00:00 2 nfsd +0xffffa0893f968000 0 2093 0:00:00 0:00:00 2 nfsd +0xffffa0893f969700 0 2095 0:00:00 0:00:00 2 nfsd +0xffffa0893f96dc00 0 2096 0:00:00 0:00:00 2 nfsd +0xffffa0893d89c500 0 2097 0:00:00 0:00:00 2 nfsd +0xffffa089408f0000 0 2098 0:00:00 0:00:00 2 nfsd +0xffffa089553aae00 0 2099 0:00:00 0:00:00 2 nfsd +0xffffa08939f70000 0 2100 0:00:00 0:00:00 2 nfsd +0xffffa08939f71700 0 2101 0:00:00 0:00:00 2 nfsd +0xffffa08939f75c00 0 2103 0:00:00 0:00:00 2 nfsd +0xffffa08939f74500 0 2104 0:00:00 0:00:00 2 nfsd +0xffffa08939f72e00 0 2105 0:00:00 0:00:00 2 nfsd +0xffffa0893c08ae00 0 2106 0:00:00 0:00:00 2 nfsd +0xffffa08950a89700 0 2121 0:00:24 0:00:08 1 rngd +0xffffa089304eae00 0 2124 0:00:08 0:00:12 1 automount +0xffffa089410b9700 0 2125 0:00:04 0:00:00 1 automount +0xffffa089410bae00 0 2126 0:00:00 0:00:00 1 automount +0xffffa0893c2b1700 0 2127 0:00:00 0:00:08 1 agetty +0xffffa0893c2b4500 0 2132 0:00:36 0:01:00 1 login +0xffffa089410bc500 0 2150 0:00:00 0:00:00 1 automount +0xffffa08960f42e00 0 2156 0:00:00 0:00:08 1 automount +0xffffa0894cc81700 65437 2250 0:00:00 0:00:00 2079 postgres +0xffffa0894cc82e00 65437 2251 0:00:04 0:00:16 2079 postgres +0xffffa0894cc80000 65437 2252 0:00:00 0:00:00 2079 postgres +0xffffa0894cc85c00 65437 2253 0:00:04 0:00:00 2079 postgres +0xffffa0894cc84500 65437 2254 0:00:12 0:01:28 2079 postgres +0xffffa0891e0ec500 65437 2255 0:00:00 0:00:00 2079 postgres +0xffffa0890590c500 0 2438 0:00:00 0:00:00 2 target_completi +0xffffa0890590dc00 0 2439 0:00:00 0:00:00 2 xcopy_wq +0xffffa08905909700 0 2445 0:00:00 0:00:00 2 iscsi_np +0xffffa08960a38000 0 2853 0:00:00 0:00:00 1 java +0xffffa08960a3dc00 0 2856 16:50:40 6:15:24 1 java +0xffffa08960a3ae00 0 2857 0:18:44 0:04:24 1 java +0xffffa08960a3c500 0 2858 0:18:04 0:04:16 1 java +0xffffa088ef2d5c00 0 2859 0:42:04 0:07:40 1 java +0xffffa088ef2d2e00 0 2861 0:00:56 0:00:12 1 java +0xffffa088ef2d0000 0 2862 0:01:24 0:00:00 1 java +0xffffa088ef2d4500 0 2865 0:00:00 0:00:04 1 java +0xffffa088ef2d1700 0 2866 0:00:00 0:00:00 1 java +0xffffa088f097dc00 0 2867 0:00:00 0:00:04 1 java +0xffffa088f097ae00 0 2868 10:56:20 0:11:12 1 java +0xffffa088f0978000 0 2869 1:48:48 0:04:56 1 java +0xffffa088f6e5c500 0 2870 0:00:00 0:00:00 1 java +0xffffa0893dd34500 0 2874 0:00:00 0:00:00 2011 sleep +0xffffa088f0979700 0 2877 0:00:00 0:00:00 1 java +0xffffa0893dd30000 0 2878 0:00:04 0:00:00 1990 sleep +0xffffa089405cc500 0 2879 0:00:00 0:00:00 1977 sleep +0xffffa08960a39700 0 2880 0:01:44 0:00:36 1 java +0xffffa08960a24500 0 2910 0:00:08 0:00:04 1 java +0xffffa08905908000 0 3249 0:00:00 0:00:00 2 kworker/1:3 +0xffffa08960a20000 0 3853 0:00:00 0:00:00 1 java +0xffffa08960a25c00 0 3856 0:00:20 0:00:16 1 java +0xffffa08960a22e00 0 3857 0:00:04 0:00:08 1 java +0xffffa08960a21700 0 3858 0:00:08 0:00:04 1 java +0xffffa088f097c500 0 3859 0:00:00 0:00:16 1 java +0xffffa088f677dc00 0 3860 0:00:00 0:00:00 1 java +0xffffa088f6779700 0 3861 0:00:08 0:00:04 1 java +0xffffa088f677c500 0 3862 0:00:12 0:00:12 1 java +0xffffa088f6778000 0 3863 0:00:00 0:00:08 1 java +0xffffa088f677ae00 0 3864 0:00:04 0:00:00 1 java +0xffffa0889cd4dc00 0 3865 0:00:04 0:00:00 1 java +0xffffa088f6e5dc00 0 3921 0:00:36 0:00:00 1 java +0xffffa0889cd48000 0 4003 0:03:00 0:00:32 1 java +0xffffa088f6e5ae00 0 4005 0:02:44 0:00:24 1 java +0xffffa088f6e59700 0 4006 0:00:04 0:00:04 1 java +0xffffa0889cd4ae00 0 4007 0:00:00 0:00:00 1 java +0xffffa088d33d1700 0 4033 0:00:12 0:00:04 1 java +0xffffa088d33d2e00 0 4038 0:02:28 0:00:28 1 java +0xffffa088d33d5c00 0 4070 0:02:32 0:00:12 1 java +0xffffa088d33d0000 0 4074 0:02:28 0:00:16 1 java +0xffffa0889cd4c500 0 4098 0:02:12 0:00:28 1 java +0xffffa0889cd49700 0 4099 0:00:00 0:00:00 1 java +0xffffa08889c92e00 0 4104 0:01:44 0:00:12 1 java +0xffffa08889c95c00 0 4136 0:02:00 0:00:40 1 java +0xffffa0895a329700 65437 4141 0:00:44 0:00:28 2079 postgres +0xffffa0895a32dc00 65437 4142 0:00:44 0:00:36 2079 postgres +0xffffa0895a328000 65437 4143 0:00:24 0:00:20 2079 postgres +0xffffa0895a32ae00 65437 4144 0:00:32 0:00:32 2079 postgres +0xffffa08936805c00 65437 4145 0:00:32 0:00:36 2079 postgres +0xffffa08936804500 65437 4146 0:00:40 0:00:28 2079 postgres +0xffffa08936802e00 65437 4147 0:00:20 0:00:52 2079 postgres +0xffffa088be0fc500 65437 4148 0:00:44 0:01:00 2079 postgres +0xffffa088be0fdc00 65437 4149 0:00:24 0:00:36 2079 postgres +0xffffa088be0f9700 65437 4150 0:00:44 0:00:32 2079 postgres +0xffffa088be0fae00 65437 4151 0:00:56 0:00:52 2079 postgres +0xffffa088be0f8000 65437 4152 0:00:32 0:00:32 2079 postgres +0xffffa08889755c00 65437 4153 0:00:44 0:00:52 2079 postgres +0xffffa08889751700 65437 4154 0:00:28 0:00:32 2079 postgres +0xffffa08889752e00 65437 4155 0:00:36 0:00:32 2079 postgres +0xffffa08889750000 65437 4156 0:00:40 0:00:36 2079 postgres +0xffffa08889754500 65437 4157 0:00:36 0:00:40 2079 postgres +0xffffa08888afc500 65437 4158 0:01:00 0:00:16 2079 postgres +0xffffa08888afdc00 65437 4159 0:00:20 0:00:40 2079 postgres +0xffffa08888af9700 65437 4160 0:00:40 0:00:56 2079 postgres +0xffffa08889c91700 0 4163 0:02:28 0:00:04 1 java +0xffffa0893196c500 65433 4237 0:00:48 0:00:28 1 systemd +0xffffa088c58aae00 65433 4250 0:00:00 0:00:00 4237 (sd-pam) +0xffffa0888cc64500 65433 4275 0:00:04 0:00:24 2132 bash +0xffffa088d33d4500 0 4291 0:00:00 0:00:00 1 java +0xffffa088f6e58000 0 4292 0:02:04 0:00:32 1 java +0xffffa0889366c500 0 4293 0:00:00 0:00:00 1 java +0xffffa08896518000 0 4312 0:00:00 0:00:00 1 java +0xffffa0889651dc00 0 4363 0:00:00 0:00:00 1 java +0xffffa08896519700 0 4364 0:00:00 0:00:00 1 java +0xffffa0889651ae00 0 4365 0:00:04 0:00:00 1 java +0xffffa0889651c500 0 4366 0:00:00 0:00:00 1 java +0xffffa0888e8a1700 0 4367 0:00:04 0:00:00 1 java +0xffffa0888e8a5c00 0 4368 0:00:00 0:00:00 1 java +0xffffa08889c90000 0 4369 0:00:04 0:00:00 1 java +0xffffa08893669700 0 4372 0:00:00 0:00:00 1 java +0xffffa0888e8a0000 0 4373 0:00:00 0:00:00 1 java +0xffffa08889c94500 0 4374 0:00:00 0:00:00 1 java +0xffffa0888e8a2e00 0 4375 0:00:00 0:00:04 1 java +0xffffa0889fdd0000 0 4376 0:00:00 0:00:00 1 java +0xffffa0889fdd2e00 0 4379 0:00:20 0:00:04 1 java +0xffffa088f7408000 0 4381 0:00:12 0:00:04 1 java +0xffffa0889fdd1700 0 4469 0:00:24 0:00:04 1 java +0xffffa088f740c500 0 4473 0:37:16 0:08:32 2856 python2 +0xffffa088f740ae00 0 4474 0:00:00 0:00:00 1 java +0xffffa088f740dc00 0 4475 0:00:00 0:00:00 1 java +0xffffa088f7409700 0 4476 0:00:00 0:00:00 1 java +0xffffa08894564500 0 4477 0:47:00 0:14:12 2856 python2 +0xffffa08894560000 0 4478 0:00:00 0:00:00 1 java +0xffffa08894562e00 0 4479 0:00:00 0:00:00 1 java +0xffffa08894565c00 0 4480 0:00:00 0:00:00 1 java +0xffffa0889445dc00 0 4481 0:01:16 0:00:36 2856 python3 +0xffffa0889445ae00 0 4482 0:00:00 0:00:00 1 java +0xffffa08894458000 0 4483 0:13:40 0:04:00 1 java +0xffffa0889445c500 0 4484 0:00:00 0:00:00 1 java +0xffffa0893196ae00 0 4496 0:00:24 0:00:20 1688 sshd +0xffffa088a150ae00 65433 4505 0:00:00 0:00:44 4496 sshd +0xffffa0888548ae00 65433 4506 0:00:32 0:00:24 4505 bash +0xffffa08931488000 65534 4625 0:00:00 0:00:04 1952 nginx +0xffffa0893c2b2e00 0 4665 0:00:00 0:00:00 2 kworker/1:4 +0xffffa0893c2b5c00 0 4666 0:00:00 0:00:00 2 kworker/1:5 +0xffffa08894a69700 0 4722 0:00:28 0:00:04 1 java +0xffffa08894a6ae00 0 4723 0:00:00 0:00:00 1 java +0xffffa08894a68000 0 4724 0:00:00 0:00:00 1 java +0xffffa08894a6dc00 0 4725 0:00:00 0:00:00 1 java +0xffffa08893668000 0 4726 0:00:00 0:00:00 1 java +0xffffa0889fdd5c00 0 4727 0:00:00 0:00:04 1 java +0xffffa0889fdd4500 0 4728 0:00:00 0:00:00 1 java +0xffffa08894561700 0 4729 0:00:00 0:00:00 1 java +0xffffa08888c49700 0 4730 0:00:00 0:00:00 1 java +0xffffa08888c48000 0 4731 0:00:00 0:00:00 1 java +0xffffa088ca874500 0 4732 0:00:00 0:00:00 1 java +0xffffa088ca871700 0 4733 0:00:04 0:00:00 1 java +0xffffa088ca875c00 0 4734 0:00:04 0:00:08 1 java +0xffffa088ca872e00 0 4735 0:00:00 0:00:04 1 java +0xffffa0893c08c500 0 4742 0:00:04 0:00:00 1 native_oom_hand +0xffffa08941afae00 0 4756 0:00:00 0:00:00 4742 oom_waiter +0xffffa089405cdc00 0 5464 0:00:00 0:00:00 1895 sleep +0xffffa0896510c500 0 5468 0:00:00 0:00:00 1941 sleep +0xffffa0894b284500 0 5472 0:00:00 0:00:00 1919 sleep +0xffffa0893c088000 0 5517 0:00:00 0:00:36 2 z_null_iss +0xffffa0893c08dc00 0 5518 0:00:00 0:00:20 2 z_null_int +0xffffa0893c089700 0 5519 0:00:00 0:00:00 2 z_rd_iss +0xffffa089481b8000 0 5520 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bae00 0 5521 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bdc00 0 5522 0:00:00 0:00:00 2 z_rd_int +0xffffa089481bc500 0 5523 0:00:00 0:00:00 2 z_rd_int +0xffffa089481b9700 0 5524 0:00:00 0:00:00 2 z_rd_int +0xffffa08940964500 0 5525 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58adc00 0 5526 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58a8000 0 5527 0:00:00 0:00:00 2 z_rd_int +0xffffa088c58a9700 0 5528 0:00:00 0:03:56 2 z_wr_iss +0xffffa088c58ac500 0 5529 0:00:00 0:00:00 2 z_wr_iss_h +0xffffa0893c2b0000 0 5530 0:00:00 0:00:04 2 z_wr_int +0xffffa089320e2e00 0 5531 0:00:00 0:00:48 2 z_wr_int +0xffffa0890590ae00 0 5532 0:00:00 0:00:12 2 z_wr_int +0xffffa08952ec1700 0 5533 0:00:00 0:00:24 2 z_wr_int +0xffffa08951028000 0 5534 0:00:00 0:00:32 2 z_wr_int +0xffffa08951029700 0 5535 0:00:00 0:00:12 2 z_wr_int +0xffffa0895102dc00 0 5536 0:00:00 0:00:24 2 z_wr_int +0xffffa0895102c500 0 5537 0:00:00 0:00:36 2 z_wr_int +0xffffa0895102ae00 0 5538 0:00:00 0:00:00 2 z_wr_int_h +0xffffa0888c779700 0 5539 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77dc00 0 5540 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77c500 0 5541 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c77ae00 0 5542 0:00:00 0:00:00 2 z_fr_iss +0xffffa0888c778000 0 5543 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a69700 0 5544 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6dc00 0 5545 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6c500 0 5546 0:00:00 0:00:00 2 z_fr_iss +0xffffa08941a6ae00 0 5547 0:00:00 0:00:00 2 z_fr_int +0xffffa08941a68000 0 5548 0:00:00 0:00:00 2 z_cl_iss +0xffffa0889bef1700 0 5549 0:00:00 0:00:00 2 z_cl_int +0xffffa0889bef5c00 0 5550 0:00:00 0:00:00 2 z_ioctl_iss +0xffffa0889bef4500 0 5551 0:00:00 0:00:00 2 z_ioctl_int +0xffffa0889bef2e00 0 5552 0:00:00 0:00:00 2 z_trim_iss +0xffffa0889bef0000 0 5553 0:00:00 0:00:00 2 z_trim_int +0xffffa0889c9eae00 0 5554 0:00:00 0:00:00 2 z_zvol +0xffffa0889c9e8000 0 5555 0:00:00 0:00:00 2 z_prefetch +0xffffa0889c9e9700 0 5556 0:00:00 0:00:00 2 z_upgrade +0xffffa08953ac5c00 0 5588 0:00:00 0:00:00 2 metaslab_group_ +0xffffa0889c9edc00 0 5589 0:00:00 0:00:00 2 metaslab_group_ +0xffffa08953acae00 0 5592 0:00:00 0:00:08 2 dp_sync_taskq +0xffffa08953ac8000 0 5595 0:00:00 0:00:00 2 dp_zil_clean_ta +0xffffa0895a31c500 0 5596 0:00:00 0:00:40 2 dp_zil_clean_ta +0xffffa0895a319700 0 5597 0:00:00 0:00:00 2 z_iput +0xffffa0895a31ae00 0 5598 0:00:00 0:00:00 2 z_unlinked_drai +0xffffa0895a318000 0 5599 0:00:00 0:00:00 2 txg_quiesce +0xffffa0895a31dc00 0 5601 0:00:00 0:01:04 2 txg_sync +0xffffa0888d2cdc00 0 5602 0:00:00 0:00:00 2 mmp +0xffffa08883df0000 0 5673 0:00:00 0:00:00 2 zthr_procedure +0xffffa08883df5c00 0 5674 0:00:00 0:00:00 2 zthr_procedure +0xffffa08883df1700 0 5675 0:00:00 0:00:00 2 zthr_procedure +0xffffa08937f4dc00 0 5676 0:00:00 0:00:00 2 zthr_procedure +0xffffa08959894500 0 5891 0:00:00 0:00:24 2 z_vdev_file +0xffffa0888c784500 0 5899 0:00:00 0:00:16 2 z_vdev_file +0xffffa088ce681700 0 5952 0:00:00 0:00:32 2 z_vdev_file +0xffffa0894e6a8000 0 5976 0:00:00 0:00:24 2 z_vdev_file +0xffffa08884834500 0 5981 0:00:04 0:00:16 4506 sudo +0xffffa0888cc62e00 0 5983 0:02:56 2:07:16 5981 dd +0xffffa08884832e00 0 6026 0:00:04 0:00:12 4506 sudo +0xffffa08884830000 0 6028 0:00:00 0:00:20 6026 su +0xffffa08884831700 0 6029 0:00:00 0:00:00 6028 bash +0xffffa0888d2cae00 0 6030 0:00:00 0:00:28 2 z_vdev_file +0xffffa088ce682e00 0 6184 0:00:00 0:00:00 2 z_wr_int +0xffffa08953ac9700 0 6186 0:00:00 0:00:00 2 z_vdev_file +0xffffa08953acdc00 0 6188 0:00:00 0:00:00 2 z_vdev_file +0xffffa0889c9ec500 0 6189 0:00:00 0:00:00 2 z_wr_int +0xffffa08883df2e00 0 6190 0:00:00 0:00:00 2 z_wr_int +0xffffa08883df4500 0 6191 0:00:00 0:00:00 2 z_vdev_file +0xffffa0888d2cc500 0 6192 0:00:00 0:00:00 2 z_vdev_file +0xffffa0888d2c8000 0 6194 0:00:00 0:00:00 2 z_wr_int +0xffffa0888d2fdc00 0 6196 0:00:00 0:00:00 2 z_wr_int +0xffffa087d20edc00 0 6279 0:00:00 0:00:00 2 z_vdev_file +0xffffa088f1e95c00 0 6309 0:00:00 0:00:00 2021 sleep diff --git a/tests/integration/data/regression_output/linux/ps -o pid,ppid b/tests/integration/data/regression_output/linux/ps -o pid,ppid new file mode 100644 index 00000000..b5b367c7 --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -o pid,ppid @@ -0,0 +1,575 @@ +task pid ppid +------------------ ---- ---- +0xffffa089669edc00 1 0 +0xffffa089669ec500 2 0 +0xffffa089669eae00 3 2 +0xffffa089669e8000 4 2 +0xffffa089669e9700 5 2 +0xffffa08966a05c00 6 2 +0xffffa08966a04500 7 2 +0xffffa08966a02e00 8 2 +0xffffa08966a00000 9 2 +0xffffa08966a01700 10 2 +0xffffa08966a0ae00 11 2 +0xffffa08966a08000 12 2 +0xffffa08966a09700 13 2 +0xffffa08966a0c500 14 2 +0xffffa08966a50000 15 2 +0xffffa08966a51700 16 2 +0xffffa08966a55c00 17 2 +0xffffa08966a54500 18 2 +0xffffa08966a52e00 19 2 +0xffffa08966a69700 20 2 +0xffffa08966a6dc00 21 2 +0xffffa08966a6c500 22 2 +0xffffa08966a6ae00 23 2 +0xffffa08966a68000 24 2 +0xffffa08966bcae00 25 2 +0xffffa08966bc8000 26 2 +0xffffa08966bc9700 27 2 +0xffffa08966bcdc00 28 2 +0xffffa08966bcc500 29 2 +0xffffa08966bd2e00 30 2 +0xffffa08966bd0000 31 2 +0xffffa08966bd1700 32 2 +0xffffa08966bd5c00 33 2 +0xffffa08966bd4500 34 2 +0xffffa089666d5c00 35 2 +0xffffa089666d4500 36 2 +0xffffa089666d2e00 37 2 +0xffffa089666d0000 38 2 +0xffffa089666d1700 39 2 +0xffffa08966795c00 40 2 +0xffffa08966794500 41 2 +0xffffa08966791700 44 2 +0xffffa089587bdc00 45 2 +0xffffa089587bc500 46 2 +0xffffa08958039700 135 2 +0xffffa0895803c500 136 2 +0xffffa0895803dc00 137 2 +0xffffa0895803ae00 138 2 +0xffffa08958038000 139 2 +0xffffa0895802c500 140 2 +0xffffa0895802dc00 141 2 +0xffffa08958029700 142 2 +0xffffa08958028000 143 2 +0xffffa0895802ae00 144 2 +0xffffa0895809ae00 145 2 +0xffffa0895809c500 146 2 +0xffffa0895809dc00 147 2 +0xffffa08958099700 148 2 +0xffffa08958098000 149 2 +0xffffa08958031700 150 2 +0xffffa08958034500 151 2 +0xffffa08958035c00 152 2 +0xffffa08958030000 153 2 +0xffffa08958032e00 154 2 +0xffffa089580e2e00 155 2 +0xffffa089580e5c00 156 2 +0xffffa089580e1700 157 2 +0xffffa089580e0000 158 2 +0xffffa089580e4500 159 2 +0xffffa08958089700 160 2 +0xffffa0895808ae00 161 2 +0xffffa0895808dc00 162 2 +0xffffa08958088000 163 2 +0xffffa0895808c500 164 2 +0xffffa0895820c500 165 2 +0xffffa0895820ae00 166 2 +0xffffa08958208000 167 2 +0xffffa08958209700 168 2 +0xffffa0895820dc00 169 2 +0xffffa08957d18000 170 2 +0xffffa08957d19700 171 2 +0xffffa08957d1dc00 172 2 +0xffffa08957d1c500 173 2 +0xffffa08958082e00 174 2 +0xffffa08958084500 175 2 +0xffffa08957db8000 199 2 +0xffffa08957dbdc00 200 2 +0xffffa08957db5c00 251 2 +0xffffa089587b9700 253 2 +0xffffa08957585c00 264 2 +0xffffa08957582e00 265 2 +0xffffa08957580000 266 2 +0xffffa08957581700 267 2 +0xffffa08957584500 268 2 +0xffffa08966790000 318 2 +0xffffa08957da8000 346 2 +0xffffa08957dadc00 347 2 +0xffffa08957dac500 348 2 +0xffffa08957daae00 349 2 +0xffffa08966792e00 357 2 +0xffffa08956848000 367 2 +0xffffa0895684c500 371 2 +0xffffa08956849700 372 2 +0xffffa0895684ae00 373 2 +0xffffa0895684dc00 375 2 +0xffffa089580b2e00 378 2 +0xffffa089580b1700 379 2 +0xffffa089587bae00 446 2 +0xffffa089587b8000 447 2 +0xffffa08957dbc500 448 2 +0xffffa08957dbae00 449 2 +0xffffa08957db9700 450 2 +0xffffa08957db0000 451 2 +0xffffa08957db1700 452 2 +0xffffa08957db2e00 453 2 +0xffffa08957db4500 454 2 +0xffffa08953515c00 455 2 +0xffffa08953514500 456 2 +0xffffa08953512e00 457 2 +0xffffa08953510000 458 2 +0xffffa08953511700 459 2 +0xffffa0895350ae00 460 2 +0xffffa08953508000 461 2 +0xffffa08953509700 462 2 +0xffffa0895350dc00 463 2 +0xffffa0895350c500 464 2 +0xffffa089534b4500 465 2 +0xffffa089534b2e00 466 2 +0xffffa089534b0000 467 2 +0xffffa089534b1700 468 2 +0xffffa089534b5c00 469 2 +0xffffa089534a2e00 470 2 +0xffffa089534a0000 471 2 +0xffffa089534a1700 472 2 +0xffffa089534a5c00 473 2 +0xffffa089534a4500 474 2 +0xffffa08953474500 475 2 +0xffffa08953472e00 476 2 +0xffffa08953470000 477 2 +0xffffa08953471700 478 2 +0xffffa08953475c00 479 2 +0xffffa0895346c500 480 2 +0xffffa0895346ae00 481 2 +0xffffa08953468000 482 2 +0xffffa08953469700 483 2 +0xffffa0895346dc00 484 2 +0xffffa089533fdc00 485 2 +0xffffa089533fc500 487 2 +0xffffa089533fae00 488 2 +0xffffa089533f8000 489 2 +0xffffa089533f9700 490 2 +0xffffa08952e71700 491 2 +0xffffa08952e75c00 493 2 +0xffffa08952e70000 494 2 +0xffffa08957e3c500 551 2 +0xffffa08957da9700 552 2 +0xffffa08952e5ae00 553 2 +0xffffa08952e5dc00 554 2 +0xffffa08952e58000 555 2 +0xffffa08952e5c500 556 2 +0xffffa08952e59700 557 2 +0xffffa089320e0000 735 2 +0xffffa089320e1700 743 1 +0xffffa0893085dc00 765 2 +0xffffa08952e72e00 766 2 +0xffffa08952e74500 767 2 +0xffffa089304e8000 774 2 +0xffffa08931968000 779 1 +0xffffa0893196dc00 781 1 +0xffffa089320e5c00 830 2 +0xffffa08957e38000 837 2 +0xffffa089304ec500 935 2 +0xffffa08958081700 1031 1 +0xffffa089320e4500 1033 1 +0xffffa08952ec4500 1037 1 +0xffffa0893a532e00 1038 1 +0xffffa0894e7b2e00 1237 2 +0xffffa0894e7f4500 1238 2 +0xffffa0894e7f2e00 1239 2 +0xffffa0894e7f0000 1240 2 +0xffffa0894e7f1700 1241 2 +0xffffa0894e7f5c00 1242 2 +0xffffa0894e7fdc00 1243 2 +0xffffa0894e7fc500 1244 2 +0xffffa0894e7fae00 1245 2 +0xffffa0894e7f8000 1246 2 +0xffffa0894e7f9700 1247 2 +0xffffa0894ea71700 1248 2 +0xffffa0894ea75c00 1249 2 +0xffffa0894ea74500 1250 2 +0xffffa0894ea72e00 1251 2 +0xffffa0894ea70000 1252 2 +0xffffa0894ea7dc00 1253 2 +0xffffa0894ea7c500 1254 2 +0xffffa0894ea7ae00 1255 2 +0xffffa0894ea78000 1256 2 +0xffffa0894ea79700 1257 2 +0xffffa0894eaaae00 1258 2 +0xffffa0894eaa8000 1259 2 +0xffffa0894eaa9700 1260 2 +0xffffa0894eaadc00 1261 2 +0xffffa0894eaac500 1262 2 +0xffffa0894eabae00 1263 2 +0xffffa0894eab8000 1264 2 +0xffffa0894eab9700 1265 2 +0xffffa0894eabdc00 1266 2 +0xffffa0894eabc500 1267 2 +0xffffa0894eb61700 1268 2 +0xffffa0894eb65c00 1269 2 +0xffffa0894eb64500 1270 2 +0xffffa0894eb62e00 1271 2 +0xffffa0894eb60000 1272 2 +0xffffa0894eb69700 1273 2 +0xffffa0894eb6dc00 1274 2 +0xffffa0894eb6c500 1275 2 +0xffffa0894eb6ae00 1276 2 +0xffffa0894ebb2e00 1281 2 +0xffffa0894ebb0000 1282 2 +0xffffa0894ebb1700 1283 2 +0xffffa0894ebb4500 1284 2 +0xffffa0894ebb5c00 1285 2 +0xffffa0893085c500 1290 2 +0xffffa08930858000 1291 2 +0xffffa089553a8000 1335 2 +0xffffa089553a9700 1336 2 +0xffffa089553adc00 1337 2 +0xffffa089553ac500 1338 2 +0xffffa089553bae00 1339 2 +0xffffa089553b8000 1340 2 +0xffffa089553b9700 1341 2 +0xffffa0893085ae00 1542 1 +0xffffa089408f1700 1578 1 +0xffffa089408f2e00 1688 1 +0xffffa08940965c00 1728 1 +0xffffa08940962e00 1730 1 +0xffffa08931969700 1756 1 +0xffffa0894e6a9700 1772 1 +0xffffa089408f8000 1781 1 +0xffffa089408fdc00 1782 1 +0xffffa089408fc500 1783 1 +0xffffa0895601dc00 1784 1 +0xffffa08956018000 1785 1 +0xffffa08956019700 1786 1 +0xffffa0895601c500 1787 1 +0xffffa0895601ae00 1788 1 +0xffffa089560c1700 1789 1 +0xffffa089560c4500 1790 1 +0xffffa089560c2e00 1791 1 +0xffffa089553bc500 1792 1 +0xffffa089408f5c00 1793 1 +0xffffa089408f4500 1794 1 +0xffffa08930859700 1795 1 +0xffffa0895541dc00 1797 1 +0xffffa0895541ae00 1798 1 +0xffffa08957d1ae00 1845 1 +0xffffa0893691dc00 1857 1 +0xffffa08936918000 1858 1 +0xffffa0893691c500 1860 1 +0xffffa08936919700 1861 1 +0xffffa0893691ae00 1870 1 +0xffffa0893304dc00 1871 1 +0xffffa08952ec2e00 1878 1 +0xffffa08952ec0000 1887 1 +0xffffa08933048000 1895 1 +0xffffa08933049700 1903 1 +0xffffa0893649ae00 1906 1860 +0xffffa08936498000 1910 1857 +0xffffa089304edc00 1911 1 +0xffffa089320c1700 1918 1910 +0xffffa0893304c500 1919 1 +0xffffa08957e39700 1926 2 +0xffffa0893304ae00 1934 1 +0xffffa089320c4500 1936 1870 +0xffffa089320c5c00 1940 1906 +0xffffa08931d50000 1941 1 +0xffffa089320c0000 1942 1 +0xffffa0893319dc00 1952 1 +0xffffa0894b280000 1958 1936 +0xffffa0894b281700 1959 1 +0xffffa0894b282e00 1964 1 +0xffffa08952ec5c00 1968 1 +0xffffa08930464500 1972 1 +0xffffa089320c2e00 1977 1 +0xffffa08958085c00 1979 2 +0xffffa0896510dc00 1982 1 +0xffffa0894e7b0000 1984 2 +0xffffa0894e7b5c00 1986 2 +0xffffa0894e7b1700 1987 2 +0xffffa0896510ae00 1990 1 +0xffffa0894e7b4500 1991 2 +0xffffa089580b0000 1992 2 +0xffffa089580b5c00 1994 2 +0xffffa089405c9700 1995 1 +0xffffa089580b4500 1996 2 +0xffffa089408f9700 1998 2 +0xffffa089553bdc00 2002 2 +0xffffa0894e6aae00 2004 2 +0xffffa0894e6ac500 2007 2 +0xffffa0894b285c00 2011 1 +0xffffa08965109700 2012 1 +0xffffa0894e6adc00 2013 2 +0xffffa089408fae00 2017 2 +0xffffa08957e3ae00 2019 2 +0xffffa0893649dc00 2021 1 +0xffffa089304e9700 2025 2 +0xffffa08940961700 2028 2 +0xffffa08940960000 2035 2 +0xffffa0893bf7ae00 2039 2 +0xffffa0893bf78000 2042 2 +0xffffa0893bf79700 2044 2 +0xffffa0894483dc00 2045 1 +0xffffa0893bf7dc00 2049 2 +0xffffa0893bf7c500 2050 2 +0xffffa08957e3dc00 2054 2 +0xffffa08936801700 2055 1 +0xffffa0894eb68000 2057 2 +0xffffa08958080000 2058 2 +0xffffa08941f6c500 2059 2 +0xffffa08941f6ae00 2062 2 +0xffffa08941f68000 2063 2 +0xffffa08941f69700 2064 2 +0xffffa08941f6dc00 2066 2 +0xffffa08934e00000 2067 2 +0xffffa08934e01700 2068 2 +0xffffa08934e05c00 2069 2 +0xffffa08934e04500 2071 2 +0xffffa08934e02e00 2072 2 +0xffffa08934b58000 2073 2 +0xffffa08934b59700 2074 2 +0xffffa08934b5dc00 2075 2 +0xffffa08934b5c500 2076 2 +0xffffa08934b5ae00 2077 2 +0xffffa089358f1700 2078 2 +0xffffa08936800000 2079 2055 +0xffffa089358f5c00 2080 2 +0xffffa089358f4500 2082 2 +0xffffa0893dd31700 2083 1959 +0xffffa089358f2e00 2084 2 +0xffffa089358f0000 2085 2 +0xffffa0893d89ae00 2086 2 +0xffffa0893d898000 2087 2 +0xffffa0893d899700 2088 2 +0xffffa0893d89dc00 2089 2 +0xffffa0893f96c500 2091 2 +0xffffa0893f96ae00 2092 2 +0xffffa0893f968000 2093 2 +0xffffa0893f969700 2095 2 +0xffffa0893f96dc00 2096 2 +0xffffa0893d89c500 2097 2 +0xffffa089408f0000 2098 2 +0xffffa089553aae00 2099 2 +0xffffa08939f70000 2100 2 +0xffffa08939f71700 2101 2 +0xffffa08939f75c00 2103 2 +0xffffa08939f74500 2104 2 +0xffffa08939f72e00 2105 2 +0xffffa0893c08ae00 2106 2 +0xffffa08950a89700 2121 1 +0xffffa089304eae00 2124 1 +0xffffa089410b9700 2125 1 +0xffffa089410bae00 2126 1 +0xffffa0893c2b1700 2127 1 +0xffffa0893c2b4500 2132 1 +0xffffa089410bc500 2150 1 +0xffffa08960f42e00 2156 1 +0xffffa0894cc81700 2250 2079 +0xffffa0894cc82e00 2251 2079 +0xffffa0894cc80000 2252 2079 +0xffffa0894cc85c00 2253 2079 +0xffffa0894cc84500 2254 2079 +0xffffa0891e0ec500 2255 2079 +0xffffa0890590c500 2438 2 +0xffffa0890590dc00 2439 2 +0xffffa08905909700 2445 2 +0xffffa08960a38000 2853 1 +0xffffa08960a3dc00 2856 1 +0xffffa08960a3ae00 2857 1 +0xffffa08960a3c500 2858 1 +0xffffa088ef2d5c00 2859 1 +0xffffa088ef2d2e00 2861 1 +0xffffa088ef2d0000 2862 1 +0xffffa088ef2d4500 2865 1 +0xffffa088ef2d1700 2866 1 +0xffffa088f097dc00 2867 1 +0xffffa088f097ae00 2868 1 +0xffffa088f0978000 2869 1 +0xffffa088f6e5c500 2870 1 +0xffffa0893dd34500 2874 2011 +0xffffa088f0979700 2877 1 +0xffffa0893dd30000 2878 1990 +0xffffa089405cc500 2879 1977 +0xffffa08960a39700 2880 1 +0xffffa08960a24500 2910 1 +0xffffa08905908000 3249 2 +0xffffa08960a20000 3853 1 +0xffffa08960a25c00 3856 1 +0xffffa08960a22e00 3857 1 +0xffffa08960a21700 3858 1 +0xffffa088f097c500 3859 1 +0xffffa088f677dc00 3860 1 +0xffffa088f6779700 3861 1 +0xffffa088f677c500 3862 1 +0xffffa088f6778000 3863 1 +0xffffa088f677ae00 3864 1 +0xffffa0889cd4dc00 3865 1 +0xffffa088f6e5dc00 3921 1 +0xffffa0889cd48000 4003 1 +0xffffa088f6e5ae00 4005 1 +0xffffa088f6e59700 4006 1 +0xffffa0889cd4ae00 4007 1 +0xffffa088d33d1700 4033 1 +0xffffa088d33d2e00 4038 1 +0xffffa088d33d5c00 4070 1 +0xffffa088d33d0000 4074 1 +0xffffa0889cd4c500 4098 1 +0xffffa0889cd49700 4099 1 +0xffffa08889c92e00 4104 1 +0xffffa08889c95c00 4136 1 +0xffffa0895a329700 4141 2079 +0xffffa0895a32dc00 4142 2079 +0xffffa0895a328000 4143 2079 +0xffffa0895a32ae00 4144 2079 +0xffffa08936805c00 4145 2079 +0xffffa08936804500 4146 2079 +0xffffa08936802e00 4147 2079 +0xffffa088be0fc500 4148 2079 +0xffffa088be0fdc00 4149 2079 +0xffffa088be0f9700 4150 2079 +0xffffa088be0fae00 4151 2079 +0xffffa088be0f8000 4152 2079 +0xffffa08889755c00 4153 2079 +0xffffa08889751700 4154 2079 +0xffffa08889752e00 4155 2079 +0xffffa08889750000 4156 2079 +0xffffa08889754500 4157 2079 +0xffffa08888afc500 4158 2079 +0xffffa08888afdc00 4159 2079 +0xffffa08888af9700 4160 2079 +0xffffa08889c91700 4163 1 +0xffffa0893196c500 4237 1 +0xffffa088c58aae00 4250 4237 +0xffffa0888cc64500 4275 2132 +0xffffa088d33d4500 4291 1 +0xffffa088f6e58000 4292 1 +0xffffa0889366c500 4293 1 +0xffffa08896518000 4312 1 +0xffffa0889651dc00 4363 1 +0xffffa08896519700 4364 1 +0xffffa0889651ae00 4365 1 +0xffffa0889651c500 4366 1 +0xffffa0888e8a1700 4367 1 +0xffffa0888e8a5c00 4368 1 +0xffffa08889c90000 4369 1 +0xffffa08893669700 4372 1 +0xffffa0888e8a0000 4373 1 +0xffffa08889c94500 4374 1 +0xffffa0888e8a2e00 4375 1 +0xffffa0889fdd0000 4376 1 +0xffffa0889fdd2e00 4379 1 +0xffffa088f7408000 4381 1 +0xffffa0889fdd1700 4469 1 +0xffffa088f740c500 4473 2856 +0xffffa088f740ae00 4474 1 +0xffffa088f740dc00 4475 1 +0xffffa088f7409700 4476 1 +0xffffa08894564500 4477 2856 +0xffffa08894560000 4478 1 +0xffffa08894562e00 4479 1 +0xffffa08894565c00 4480 1 +0xffffa0889445dc00 4481 2856 +0xffffa0889445ae00 4482 1 +0xffffa08894458000 4483 1 +0xffffa0889445c500 4484 1 +0xffffa0893196ae00 4496 1688 +0xffffa088a150ae00 4505 4496 +0xffffa0888548ae00 4506 4505 +0xffffa08931488000 4625 1952 +0xffffa0893c2b2e00 4665 2 +0xffffa0893c2b5c00 4666 2 +0xffffa08894a69700 4722 1 +0xffffa08894a6ae00 4723 1 +0xffffa08894a68000 4724 1 +0xffffa08894a6dc00 4725 1 +0xffffa08893668000 4726 1 +0xffffa0889fdd5c00 4727 1 +0xffffa0889fdd4500 4728 1 +0xffffa08894561700 4729 1 +0xffffa08888c49700 4730 1 +0xffffa08888c48000 4731 1 +0xffffa088ca874500 4732 1 +0xffffa088ca871700 4733 1 +0xffffa088ca875c00 4734 1 +0xffffa088ca872e00 4735 1 +0xffffa0893c08c500 4742 1 +0xffffa08941afae00 4756 4742 +0xffffa089405cdc00 5464 1895 +0xffffa0896510c500 5468 1941 +0xffffa0894b284500 5472 1919 +0xffffa0893c088000 5517 2 +0xffffa0893c08dc00 5518 2 +0xffffa0893c089700 5519 2 +0xffffa089481b8000 5520 2 +0xffffa089481bae00 5521 2 +0xffffa089481bdc00 5522 2 +0xffffa089481bc500 5523 2 +0xffffa089481b9700 5524 2 +0xffffa08940964500 5525 2 +0xffffa088c58adc00 5526 2 +0xffffa088c58a8000 5527 2 +0xffffa088c58a9700 5528 2 +0xffffa088c58ac500 5529 2 +0xffffa0893c2b0000 5530 2 +0xffffa089320e2e00 5531 2 +0xffffa0890590ae00 5532 2 +0xffffa08952ec1700 5533 2 +0xffffa08951028000 5534 2 +0xffffa08951029700 5535 2 +0xffffa0895102dc00 5536 2 +0xffffa0895102c500 5537 2 +0xffffa0895102ae00 5538 2 +0xffffa0888c779700 5539 2 +0xffffa0888c77dc00 5540 2 +0xffffa0888c77c500 5541 2 +0xffffa0888c77ae00 5542 2 +0xffffa0888c778000 5543 2 +0xffffa08941a69700 5544 2 +0xffffa08941a6dc00 5545 2 +0xffffa08941a6c500 5546 2 +0xffffa08941a6ae00 5547 2 +0xffffa08941a68000 5548 2 +0xffffa0889bef1700 5549 2 +0xffffa0889bef5c00 5550 2 +0xffffa0889bef4500 5551 2 +0xffffa0889bef2e00 5552 2 +0xffffa0889bef0000 5553 2 +0xffffa0889c9eae00 5554 2 +0xffffa0889c9e8000 5555 2 +0xffffa0889c9e9700 5556 2 +0xffffa08953ac5c00 5588 2 +0xffffa0889c9edc00 5589 2 +0xffffa08953acae00 5592 2 +0xffffa08953ac8000 5595 2 +0xffffa0895a31c500 5596 2 +0xffffa0895a319700 5597 2 +0xffffa0895a31ae00 5598 2 +0xffffa0895a318000 5599 2 +0xffffa0895a31dc00 5601 2 +0xffffa0888d2cdc00 5602 2 +0xffffa08883df0000 5673 2 +0xffffa08883df5c00 5674 2 +0xffffa08883df1700 5675 2 +0xffffa08937f4dc00 5676 2 +0xffffa08959894500 5891 2 +0xffffa0888c784500 5899 2 +0xffffa088ce681700 5952 2 +0xffffa0894e6a8000 5976 2 +0xffffa08884834500 5981 4506 +0xffffa0888cc62e00 5983 5981 +0xffffa08884832e00 6026 4506 +0xffffa08884830000 6028 6026 +0xffffa08884831700 6029 6028 +0xffffa0888d2cae00 6030 2 +0xffffa088ce682e00 6184 2 +0xffffa08953ac9700 6186 2 +0xffffa08953acdc00 6188 2 +0xffffa0889c9ec500 6189 2 +0xffffa08883df2e00 6190 2 +0xffffa08883df4500 6191 2 +0xffffa0888d2cc500 6192 2 +0xffffa0888d2c8000 6194 2 +0xffffa0888d2fdc00 6196 2 +0xffffa087d20edc00 6279 2 +0xffffa088f1e95c00 6309 2021 diff --git a/tests/integration/data/regression_output/linux/ps -p 4275 b/tests/integration/data/regression_output/linux/ps -p 4275 new file mode 100644 index 00000000..e54fff4a --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -p 4275 @@ -0,0 +1,3 @@ +pid time cmd +---- ------- ---- +4275 0:00:04 bash diff --git a/tests/integration/data/regression_output/linux/ps -x b/tests/integration/data/regression_output/linux/ps -x new file mode 100644 index 00000000..3674715f --- /dev/null +++ b/tests/integration/data/regression_output/linux/ps -x @@ -0,0 +1,575 @@ +pid time stat cmd +---- -------- ------------- --------------- +1 0:02:44 INTERRUPTIBLE systemd +2 0:00:00 INTERRUPTIBLE kthreadd +3 0:00:00 IDLE rcu_gp +4 0:00:00 IDLE rcu_par_gp +5 0:00:00 IDLE kworker/0:0 +6 0:00:00 IDLE kworker/0:0H +7 0:00:00 IDLE kworker/u4:0 +8 0:00:00 IDLE mm_percpu_wq +9 0:00:00 INTERRUPTIBLE ksoftirqd/0 +10 0:00:00 RUNNING rcu_sched +11 0:00:00 INTERRUPTIBLE migration/0 +12 0:00:00 INTERRUPTIBLE idle_inject/0 +13 0:00:00 IDLE kworker/0:1 +14 0:00:00 INTERRUPTIBLE cpuhp/0 +15 0:00:00 INTERRUPTIBLE cpuhp/1 +16 0:00:00 INTERRUPTIBLE idle_inject/1 +17 0:00:00 INTERRUPTIBLE migration/1 +18 0:00:00 INTERRUPTIBLE ksoftirqd/1 +19 0:00:00 IDLE kworker/1:0 +20 0:00:00 IDLE kworker/1:0H +21 0:00:00 INTERRUPTIBLE kdevtmpfs +22 0:00:00 IDLE netns +23 0:00:00 INTERRUPTIBLE rcu_tasks_kthre +24 0:00:00 INTERRUPTIBLE kauditd +25 0:00:00 INTERRUPTIBLE khungtaskd +26 0:00:00 INTERRUPTIBLE oom_reaper +27 0:00:00 IDLE writeback +28 0:00:00 INTERRUPTIBLE kcompactd0 +29 0:00:00 INTERRUPTIBLE ksmd +30 0:00:00 INTERRUPTIBLE khugepaged +31 0:00:00 IDLE crypto +32 0:00:00 IDLE kintegrityd +33 0:00:00 IDLE kblockd +34 0:00:00 IDLE tpm_dev_wq +35 0:00:00 IDLE ata_sff +36 0:00:00 IDLE md +37 0:00:00 IDLE edac-poller +38 0:00:00 IDLE devfreq_wq +39 0:00:00 INTERRUPTIBLE watchdogd +40 0:00:00 IDLE kworker/1:1 +41 0:00:00 IDLE kworker/u4:1 +44 0:00:00 INTERRUPTIBLE kswapd0 +45 0:00:00 IDLE kworker/u5:0 +46 0:00:00 INTERRUPTIBLE ecryptfs-kthrea +135 0:00:00 IDLE kthrotld +136 0:00:00 INTERRUPTIBLE irq/24-pciehp +137 0:00:00 INTERRUPTIBLE irq/25-pciehp +138 0:00:00 INTERRUPTIBLE irq/26-pciehp +139 0:00:00 INTERRUPTIBLE irq/27-pciehp +140 0:00:00 INTERRUPTIBLE irq/28-pciehp +141 0:00:00 INTERRUPTIBLE irq/29-pciehp +142 0:00:00 INTERRUPTIBLE irq/30-pciehp +143 0:00:00 INTERRUPTIBLE irq/31-pciehp +144 0:00:00 INTERRUPTIBLE irq/32-pciehp +145 0:00:00 INTERRUPTIBLE irq/33-pciehp +146 0:00:00 INTERRUPTIBLE irq/34-pciehp +147 0:00:00 INTERRUPTIBLE irq/35-pciehp +148 0:00:00 INTERRUPTIBLE irq/36-pciehp +149 0:00:00 INTERRUPTIBLE irq/37-pciehp +150 0:00:00 INTERRUPTIBLE irq/38-pciehp +151 0:00:00 INTERRUPTIBLE irq/39-pciehp +152 0:00:00 INTERRUPTIBLE irq/40-pciehp +153 0:00:00 INTERRUPTIBLE irq/41-pciehp +154 0:00:00 INTERRUPTIBLE irq/42-pciehp +155 0:00:00 INTERRUPTIBLE irq/43-pciehp +156 0:00:00 INTERRUPTIBLE irq/44-pciehp +157 0:00:00 INTERRUPTIBLE irq/45-pciehp +158 0:00:00 INTERRUPTIBLE irq/46-pciehp +159 0:00:00 INTERRUPTIBLE irq/47-pciehp +160 0:00:00 INTERRUPTIBLE irq/48-pciehp +161 0:00:00 INTERRUPTIBLE irq/49-pciehp +162 0:00:00 INTERRUPTIBLE irq/50-pciehp +163 0:00:00 INTERRUPTIBLE irq/51-pciehp +164 0:00:00 INTERRUPTIBLE irq/52-pciehp +165 0:00:00 INTERRUPTIBLE irq/53-pciehp +166 0:00:00 INTERRUPTIBLE irq/54-pciehp +167 0:00:00 INTERRUPTIBLE irq/55-pciehp +168 0:00:00 IDLE acpi_thermal_pm +169 0:00:00 INTERRUPTIBLE scsi_eh_0 +170 0:00:00 IDLE scsi_tmf_0 +171 0:00:00 INTERRUPTIBLE scsi_eh_1 +172 0:00:00 IDLE scsi_tmf_1 +173 0:00:00 IDLE kworker/u4:2 +174 0:00:00 IDLE kworker/u4:3 +175 0:00:00 IDLE kstrp +199 0:00:00 IDLE charger_manager +200 0:00:00 IDLE kworker/1:1H +251 0:00:00 IDLE mpt_poll_0 +253 0:00:00 IDLE mpt/0 +264 0:00:00 IDLE kworker/0:1H +265 0:00:00 INTERRUPTIBLE scsi_eh_2 +266 0:00:00 IDLE scsi_tmf_2 +267 0:00:00 IDLE kworker/u4:4 +268 0:00:00 IDLE kworker/u4:5 +318 0:00:00 IDLE raid5wq +346 0:00:00 INTERRUPTIBLE spl_system_task +347 0:00:00 INTERRUPTIBLE spl_delay_taskq +348 0:00:00 INTERRUPTIBLE spl_dynamic_tas +349 0:00:00 INTERRUPTIBLE spl_kmem_cache +357 0:00:00 INTERRUPTIBLE zvol +367 0:00:00 INTERRUPTIBLE arc_prune +371 0:00:00 INTERRUPTIBLE zthr_procedure +372 0:00:00 INTERRUPTIBLE zthr_procedure +373 0:00:00 INTERRUPTIBLE dbu_evict +375 0:00:00 INTERRUPTIBLE dbuf_evict +378 0:00:00 INTERRUPTIBLE z_vdev_file +379 0:00:00 INTERRUPTIBLE l2arc_feed +446 0:00:00 INTERRUPTIBLE z_null_iss +447 0:00:00 INTERRUPTIBLE z_null_int +448 0:00:00 INTERRUPTIBLE z_rd_iss +449 0:00:00 INTERRUPTIBLE z_rd_int +450 0:00:00 INTERRUPTIBLE z_rd_int +451 0:00:00 INTERRUPTIBLE z_rd_int +452 0:00:00 INTERRUPTIBLE z_rd_int +453 0:00:00 INTERRUPTIBLE z_rd_int +454 0:00:00 INTERRUPTIBLE z_rd_int +455 0:00:00 INTERRUPTIBLE z_rd_int +456 0:00:00 INTERRUPTIBLE z_rd_int +457 0:00:00 INTERRUPTIBLE z_wr_iss +458 0:00:00 INTERRUPTIBLE z_wr_iss_h +459 0:00:00 INTERRUPTIBLE z_wr_int +460 0:00:00 INTERRUPTIBLE z_wr_int +461 0:00:00 INTERRUPTIBLE z_wr_int +462 0:00:00 INTERRUPTIBLE z_wr_int +463 0:00:00 INTERRUPTIBLE z_wr_int +464 0:00:00 INTERRUPTIBLE z_wr_int +465 0:00:00 INTERRUPTIBLE z_wr_int +466 0:00:00 INTERRUPTIBLE z_wr_int +467 0:00:00 INTERRUPTIBLE z_wr_int_h +468 0:00:00 INTERRUPTIBLE z_fr_iss +469 0:00:00 INTERRUPTIBLE z_fr_iss +470 0:00:00 INTERRUPTIBLE z_fr_iss +471 0:00:00 INTERRUPTIBLE z_fr_iss +472 0:00:00 INTERRUPTIBLE z_fr_iss +473 0:00:00 INTERRUPTIBLE z_fr_iss +474 0:00:00 INTERRUPTIBLE z_fr_iss +475 0:00:00 INTERRUPTIBLE z_fr_iss +476 0:00:00 INTERRUPTIBLE z_fr_int +477 0:00:00 INTERRUPTIBLE z_cl_iss +478 0:00:00 INTERRUPTIBLE z_cl_int +479 0:00:00 INTERRUPTIBLE z_ioctl_iss +480 0:00:00 INTERRUPTIBLE z_ioctl_int +481 0:00:00 INTERRUPTIBLE z_trim_iss +482 0:00:00 INTERRUPTIBLE z_trim_int +483 0:00:00 INTERRUPTIBLE z_zvol +484 0:00:00 INTERRUPTIBLE z_prefetch +485 0:00:00 INTERRUPTIBLE z_upgrade +487 0:00:00 INTERRUPTIBLE dp_sync_taskq +488 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +489 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +490 0:00:00 INTERRUPTIBLE z_iput +491 0:00:00 INTERRUPTIBLE z_unlinked_drai +493 0:00:00 INTERRUPTIBLE metaslab_group_ +494 0:00:00 INTERRUPTIBLE metaslab_group_ +551 0:00:00 INTERRUPTIBLE txg_quiesce +552 0:00:00 INTERRUPTIBLE txg_sync +553 0:00:00 INTERRUPTIBLE mmp +554 0:00:00 INTERRUPTIBLE zthr_procedure +555 0:00:00 INTERRUPTIBLE zthr_procedure +556 0:00:00 INTERRUPTIBLE zthr_procedure +557 0:00:00 INTERRUPTIBLE zthr_procedure +735 0:00:00 IDLE kworker/0:2 +743 0:03:12 INTERRUPTIBLE systemd-journal +765 0:00:00 IDLE kworker/0:3 +766 0:00:00 IDLE kworker/0:4 +767 0:00:00 IDLE rpciod +774 0:00:00 IDLE xprtiod +779 0:00:00 INTERRUPTIBLE blkmapd +781 0:13:08 INTERRUPTIBLE systemd-udevd +830 0:00:00 INTERRUPTIBLE irq/16-vmwgfx +837 0:00:00 IDLE ttm_swap +935 0:00:00 IDLE kworker/1:2 +1031 0:00:08 INTERRUPTIBLE VGAuthService +1033 0:02:04 INTERRUPTIBLE vmtoolsd +1037 0:00:52 INTERRUPTIBLE auditd +1038 0:00:00 INTERRUPTIBLE auditd +1237 0:00:00 INTERRUPTIBLE z_null_iss +1238 0:00:00 INTERRUPTIBLE z_null_int +1239 0:00:00 INTERRUPTIBLE z_rd_iss +1240 0:00:00 INTERRUPTIBLE z_rd_int +1241 0:00:00 INTERRUPTIBLE z_rd_int +1242 0:00:00 INTERRUPTIBLE z_rd_int +1243 0:00:00 INTERRUPTIBLE z_rd_int +1244 0:00:00 INTERRUPTIBLE z_rd_int +1245 0:00:00 INTERRUPTIBLE z_rd_int +1246 0:00:00 INTERRUPTIBLE z_rd_int +1247 0:00:00 INTERRUPTIBLE z_rd_int +1248 0:00:00 INTERRUPTIBLE z_wr_iss +1249 0:00:00 INTERRUPTIBLE z_wr_iss_h +1250 0:00:00 INTERRUPTIBLE z_wr_int +1251 0:00:00 INTERRUPTIBLE z_wr_int +1252 0:00:00 INTERRUPTIBLE z_wr_int +1253 0:00:00 INTERRUPTIBLE z_wr_int +1254 0:00:00 INTERRUPTIBLE z_wr_int +1255 0:00:00 INTERRUPTIBLE z_wr_int +1256 0:00:00 INTERRUPTIBLE z_wr_int +1257 0:00:00 INTERRUPTIBLE z_wr_int +1258 0:00:00 INTERRUPTIBLE z_wr_int_h +1259 0:00:00 INTERRUPTIBLE z_fr_iss +1260 0:00:00 INTERRUPTIBLE z_fr_iss +1261 0:00:00 INTERRUPTIBLE z_fr_iss +1262 0:00:00 INTERRUPTIBLE z_fr_iss +1263 0:00:00 INTERRUPTIBLE z_fr_iss +1264 0:00:00 INTERRUPTIBLE z_fr_iss +1265 0:00:00 INTERRUPTIBLE z_fr_iss +1266 0:00:00 INTERRUPTIBLE z_fr_iss +1267 0:00:00 INTERRUPTIBLE z_fr_int +1268 0:00:00 INTERRUPTIBLE z_cl_iss +1269 0:00:00 INTERRUPTIBLE z_cl_int +1270 0:00:00 INTERRUPTIBLE z_ioctl_iss +1271 0:00:00 INTERRUPTIBLE z_ioctl_int +1272 0:00:00 INTERRUPTIBLE z_trim_iss +1273 0:00:00 INTERRUPTIBLE z_trim_int +1274 0:00:00 INTERRUPTIBLE z_zvol +1275 0:00:00 INTERRUPTIBLE z_prefetch +1276 0:00:00 INTERRUPTIBLE z_upgrade +1281 0:00:00 INTERRUPTIBLE dp_sync_taskq +1282 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +1283 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +1284 0:00:00 INTERRUPTIBLE z_iput +1285 0:00:00 INTERRUPTIBLE z_unlinked_drai +1290 0:00:00 INTERRUPTIBLE metaslab_group_ +1291 0:00:00 INTERRUPTIBLE metaslab_group_ +1335 0:00:00 INTERRUPTIBLE txg_quiesce +1336 0:00:00 INTERRUPTIBLE txg_sync +1337 0:00:00 INTERRUPTIBLE mmp +1338 0:00:00 INTERRUPTIBLE zthr_procedure +1339 0:00:00 INTERRUPTIBLE zthr_procedure +1340 0:00:00 INTERRUPTIBLE zthr_procedure +1341 0:00:00 INTERRUPTIBLE zthr_procedure +1542 0:00:24 INTERRUPTIBLE systemd-network +1578 0:00:40 INTERRUPTIBLE systemd-resolve +1688 0:00:08 INTERRUPTIBLE sshd +1728 0:00:04 INTERRUPTIBLE rsyslogd +1730 0:00:40 INTERRUPTIBLE dbus-daemon +1756 0:00:04 INTERRUPTIBLE cron +1772 0:00:08 INTERRUPTIBLE nscd +1781 0:01:32 INTERRUPTIBLE networkd-dispat +1782 0:00:04 INTERRUPTIBLE zed +1783 0:00:32 INTERRUPTIBLE systemd-logind +1784 0:00:04 INTERRUPTIBLE nscd +1785 0:00:00 INTERRUPTIBLE nscd +1786 0:00:00 INTERRUPTIBLE nscd +1787 0:00:00 INTERRUPTIBLE nscd +1788 0:00:00 INTERRUPTIBLE nscd +1789 0:00:00 INTERRUPTIBLE nscd +1790 0:00:00 INTERRUPTIBLE nscd +1791 0:00:00 INTERRUPTIBLE nscd +1792 0:00:36 INTERRUPTIBLE snmpd +1793 0:00:28 INTERRUPTIBLE in:imuxsock +1794 0:00:00 INTERRUPTIBLE in:imklog +1795 0:00:12 INTERRUPTIBLE rs:main Q:Reg +1797 0:00:00 INTERRUPTIBLE zed +1798 0:00:00 INTERRUPTIBLE zed +1845 0:00:00 INTERRUPTIBLE rsync +1857 0:00:00 INTERRUPTIBLE delphix-stat-se +1858 0:00:04 INTERRUPTIBLE sed +1860 0:00:00 INTERRUPTIBLE delphix-stat-se +1861 0:00:00 INTERRUPTIBLE sed +1870 0:00:00 INTERRUPTIBLE delphix-stat-se +1871 0:00:00 INTERRUPTIBLE sed +1878 0:00:00 INTERRUPTIBLE rpc.idmapd +1887 0:00:00 INTERRUPTIBLE rpc.mountd +1895 0:00:04 INTERRUPTIBLE delphix-stat-se +1903 0:00:00 INTERRUPTIBLE sed +1906 0:00:00 INTERRUPTIBLE timeout +1910 0:00:00 INTERRUPTIBLE timeout +1911 0:00:12 INTERRUPTIBLE polkitd +1918 0:35:24 INTERRUPTIBLE profile +1919 0:00:04 INTERRUPTIBLE delphix-stat-se +1926 0:00:00 IDLE kworker/u5:1 +1934 0:00:00 INTERRUPTIBLE sed +1936 0:00:00 INTERRUPTIBLE timeout +1940 0:00:00 INTERRUPTIBLE mpstat +1941 0:00:04 INTERRUPTIBLE delphix-stat-se +1942 0:00:04 INTERRUPTIBLE sed +1952 0:00:04 INTERRUPTIBLE nginx +1958 0:00:00 INTERRUPTIBLE iostat +1959 0:00:00 INTERRUPTIBLE delphix-stat-se +1964 0:00:00 INTERRUPTIBLE sed +1968 0:00:00 INTERRUPTIBLE gmain +1972 0:00:00 INTERRUPTIBLE gdbus +1977 0:00:00 INTERRUPTIBLE delphix-stat-se +1979 0:00:00 INTERRUPTIBLE nfsd +1982 0:00:00 INTERRUPTIBLE sed +1984 0:00:00 INTERRUPTIBLE nfsd +1986 0:00:00 INTERRUPTIBLE nfsd +1987 0:00:00 INTERRUPTIBLE nfsd +1990 0:00:00 INTERRUPTIBLE delphix-stat-se +1991 0:00:00 INTERRUPTIBLE nfsd +1992 0:00:00 INTERRUPTIBLE nfsd +1994 0:00:00 INTERRUPTIBLE nfsd +1995 0:00:08 INTERRUPTIBLE sed +1996 0:00:00 INTERRUPTIBLE nfsd +1998 0:00:00 INTERRUPTIBLE nfsd +2002 0:00:00 INTERRUPTIBLE nfsd +2004 0:00:00 INTERRUPTIBLE nfsd +2007 0:00:00 INTERRUPTIBLE nfsd +2011 0:00:00 INTERRUPTIBLE delphix-stat-se +2012 0:00:00 INTERRUPTIBLE sed +2013 0:00:00 INTERRUPTIBLE nfsd +2017 0:00:00 INTERRUPTIBLE nfsd +2019 0:00:00 INTERRUPTIBLE nfsd +2021 0:00:08 INTERRUPTIBLE nfs_delete +2025 0:00:00 INTERRUPTIBLE nfsd +2028 0:00:00 INTERRUPTIBLE nfsd +2035 0:00:00 INTERRUPTIBLE nfsd +2039 0:00:00 INTERRUPTIBLE nfsd +2042 0:00:00 INTERRUPTIBLE nfsd +2044 0:00:00 INTERRUPTIBLE nfsd +2045 0:00:00 INTERRUPTIBLE gmain +2049 0:00:00 INTERRUPTIBLE nfsd +2050 0:00:00 INTERRUPTIBLE nfsd +2054 0:00:00 INTERRUPTIBLE nfsd +2055 0:00:04 INTERRUPTIBLE sudo +2057 0:00:00 INTERRUPTIBLE nfsd +2058 0:00:00 INTERRUPTIBLE nfsd +2059 0:00:00 INTERRUPTIBLE nfsd +2062 0:00:00 INTERRUPTIBLE nfsd +2063 0:00:00 INTERRUPTIBLE nfsd +2064 0:00:00 INTERRUPTIBLE nfsd +2066 0:00:00 INTERRUPTIBLE nfsd +2067 0:00:00 INTERRUPTIBLE nfsd +2068 0:00:00 INTERRUPTIBLE nfsd +2069 0:00:00 INTERRUPTIBLE nfsd +2071 0:00:00 INTERRUPTIBLE nfsd +2072 0:00:00 INTERRUPTIBLE nfsd +2073 0:00:00 INTERRUPTIBLE nfsd +2074 0:00:00 INTERRUPTIBLE nfsd +2075 0:00:00 INTERRUPTIBLE nfsd +2076 0:00:00 INTERRUPTIBLE nfsd +2077 0:00:00 INTERRUPTIBLE nfsd +2078 0:00:00 INTERRUPTIBLE nfsd +2079 0:00:12 INTERRUPTIBLE postgres +2080 0:00:00 INTERRUPTIBLE nfsd +2082 0:00:00 INTERRUPTIBLE nfsd +2083 0:00:00 INTERRUPTIBLE sleep +2084 0:00:00 INTERRUPTIBLE nfsd +2085 0:00:00 INTERRUPTIBLE nfsd +2086 0:00:00 INTERRUPTIBLE nfsd +2087 0:00:00 INTERRUPTIBLE nfsd +2088 0:00:00 INTERRUPTIBLE nfsd +2089 0:00:00 INTERRUPTIBLE nfsd +2091 0:00:00 INTERRUPTIBLE nfsd +2092 0:00:00 INTERRUPTIBLE nfsd +2093 0:00:00 INTERRUPTIBLE nfsd +2095 0:00:00 INTERRUPTIBLE nfsd +2096 0:00:00 INTERRUPTIBLE nfsd +2097 0:00:00 INTERRUPTIBLE nfsd +2098 0:00:00 INTERRUPTIBLE nfsd +2099 0:00:00 INTERRUPTIBLE nfsd +2100 0:00:00 INTERRUPTIBLE nfsd +2101 0:00:00 INTERRUPTIBLE nfsd +2103 0:00:00 INTERRUPTIBLE nfsd +2104 0:00:00 INTERRUPTIBLE nfsd +2105 0:00:00 INTERRUPTIBLE nfsd +2106 0:00:00 INTERRUPTIBLE nfsd +2121 0:00:24 INTERRUPTIBLE rngd +2124 0:00:08 INTERRUPTIBLE automount +2125 0:00:04 INTERRUPTIBLE automount +2126 0:00:00 INTERRUPTIBLE automount +2127 0:00:00 INTERRUPTIBLE agetty +2132 0:00:36 INTERRUPTIBLE login +2150 0:00:00 INTERRUPTIBLE automount +2156 0:00:00 INTERRUPTIBLE automount +2250 0:00:00 INTERRUPTIBLE postgres +2251 0:00:04 INTERRUPTIBLE postgres +2252 0:00:00 INTERRUPTIBLE postgres +2253 0:00:04 INTERRUPTIBLE postgres +2254 0:00:12 INTERRUPTIBLE postgres +2255 0:00:00 INTERRUPTIBLE postgres +2438 0:00:00 IDLE target_completi +2439 0:00:00 IDLE xcopy_wq +2445 0:00:00 INTERRUPTIBLE iscsi_np +2853 0:00:00 INTERRUPTIBLE java +2856 16:50:40 INTERRUPTIBLE java +2857 0:18:44 INTERRUPTIBLE java +2858 0:18:04 INTERRUPTIBLE java +2859 0:42:04 INTERRUPTIBLE java +2861 0:00:56 INTERRUPTIBLE java +2862 0:01:24 INTERRUPTIBLE java +2865 0:00:00 INTERRUPTIBLE java +2866 0:00:00 INTERRUPTIBLE java +2867 0:00:00 INTERRUPTIBLE java +2868 10:56:20 INTERRUPTIBLE java +2869 1:48:48 INTERRUPTIBLE java +2870 0:00:00 INTERRUPTIBLE java +2874 0:00:00 INTERRUPTIBLE sleep +2877 0:00:00 INTERRUPTIBLE java +2878 0:00:04 INTERRUPTIBLE sleep +2879 0:00:00 INTERRUPTIBLE sleep +2880 0:01:44 INTERRUPTIBLE java +2910 0:00:08 INTERRUPTIBLE java +3249 0:00:00 IDLE kworker/1:3 +3853 0:00:00 INTERRUPTIBLE java +3856 0:00:20 INTERRUPTIBLE java +3857 0:00:04 INTERRUPTIBLE java +3858 0:00:08 INTERRUPTIBLE java +3859 0:00:00 INTERRUPTIBLE java +3860 0:00:00 INTERRUPTIBLE java +3861 0:00:08 INTERRUPTIBLE java +3862 0:00:12 INTERRUPTIBLE java +3863 0:00:00 INTERRUPTIBLE java +3864 0:00:04 INTERRUPTIBLE java +3865 0:00:04 INTERRUPTIBLE java +3921 0:00:36 INTERRUPTIBLE java +4003 0:03:00 INTERRUPTIBLE java +4005 0:02:44 INTERRUPTIBLE java +4006 0:00:04 INTERRUPTIBLE java +4007 0:00:00 INTERRUPTIBLE java +4033 0:00:12 INTERRUPTIBLE java +4038 0:02:28 INTERRUPTIBLE java +4070 0:02:32 INTERRUPTIBLE java +4074 0:02:28 INTERRUPTIBLE java +4098 0:02:12 INTERRUPTIBLE java +4099 0:00:00 INTERRUPTIBLE java +4104 0:01:44 INTERRUPTIBLE java +4136 0:02:00 INTERRUPTIBLE java +4141 0:00:44 INTERRUPTIBLE postgres +4142 0:00:44 INTERRUPTIBLE postgres +4143 0:00:24 INTERRUPTIBLE postgres +4144 0:00:32 INTERRUPTIBLE postgres +4145 0:00:32 INTERRUPTIBLE postgres +4146 0:00:40 INTERRUPTIBLE postgres +4147 0:00:20 INTERRUPTIBLE postgres +4148 0:00:44 INTERRUPTIBLE postgres +4149 0:00:24 INTERRUPTIBLE postgres +4150 0:00:44 INTERRUPTIBLE postgres +4151 0:00:56 INTERRUPTIBLE postgres +4152 0:00:32 INTERRUPTIBLE postgres +4153 0:00:44 INTERRUPTIBLE postgres +4154 0:00:28 INTERRUPTIBLE postgres +4155 0:00:36 INTERRUPTIBLE postgres +4156 0:00:40 INTERRUPTIBLE postgres +4157 0:00:36 INTERRUPTIBLE postgres +4158 0:01:00 INTERRUPTIBLE postgres +4159 0:00:20 INTERRUPTIBLE postgres +4160 0:00:40 INTERRUPTIBLE postgres +4163 0:02:28 INTERRUPTIBLE java +4237 0:00:48 INTERRUPTIBLE systemd +4250 0:00:00 INTERRUPTIBLE (sd-pam) +4275 0:00:04 INTERRUPTIBLE bash +4291 0:00:00 INTERRUPTIBLE java +4292 0:02:04 INTERRUPTIBLE java +4293 0:00:00 INTERRUPTIBLE java +4312 0:00:00 INTERRUPTIBLE java +4363 0:00:00 INTERRUPTIBLE java +4364 0:00:00 INTERRUPTIBLE java +4365 0:00:04 INTERRUPTIBLE java +4366 0:00:00 INTERRUPTIBLE java +4367 0:00:04 INTERRUPTIBLE java +4368 0:00:00 INTERRUPTIBLE java +4369 0:00:04 INTERRUPTIBLE java +4372 0:00:00 INTERRUPTIBLE java +4373 0:00:00 INTERRUPTIBLE java +4374 0:00:00 INTERRUPTIBLE java +4375 0:00:00 INTERRUPTIBLE java +4376 0:00:00 INTERRUPTIBLE java +4379 0:00:20 INTERRUPTIBLE java +4381 0:00:12 INTERRUPTIBLE java +4469 0:00:24 INTERRUPTIBLE java +4473 0:37:16 INTERRUPTIBLE python2 +4474 0:00:00 INTERRUPTIBLE java +4475 0:00:00 INTERRUPTIBLE java +4476 0:00:00 INTERRUPTIBLE java +4477 0:47:00 INTERRUPTIBLE python2 +4478 0:00:00 INTERRUPTIBLE java +4479 0:00:00 INTERRUPTIBLE java +4480 0:00:00 INTERRUPTIBLE java +4481 0:01:16 INTERRUPTIBLE python3 +4482 0:00:00 INTERRUPTIBLE java +4483 0:13:40 INTERRUPTIBLE java +4484 0:00:00 INTERRUPTIBLE java +4496 0:00:24 INTERRUPTIBLE sshd +4505 0:00:00 INTERRUPTIBLE sshd +4506 0:00:32 INTERRUPTIBLE bash +4625 0:00:00 INTERRUPTIBLE nginx +4665 0:00:00 IDLE kworker/1:4 +4666 0:00:00 IDLE kworker/1:5 +4722 0:00:28 INTERRUPTIBLE java +4723 0:00:00 INTERRUPTIBLE java +4724 0:00:00 INTERRUPTIBLE java +4725 0:00:00 INTERRUPTIBLE java +4726 0:00:00 INTERRUPTIBLE java +4727 0:00:00 INTERRUPTIBLE java +4728 0:00:00 INTERRUPTIBLE java +4729 0:00:00 INTERRUPTIBLE java +4730 0:00:00 INTERRUPTIBLE java +4731 0:00:00 INTERRUPTIBLE java +4732 0:00:00 INTERRUPTIBLE java +4733 0:00:04 INTERRUPTIBLE java +4734 0:00:04 INTERRUPTIBLE java +4735 0:00:00 INTERRUPTIBLE java +4742 0:00:04 INTERRUPTIBLE native_oom_hand +4756 0:00:00 INTERRUPTIBLE oom_waiter +5464 0:00:00 INTERRUPTIBLE sleep +5468 0:00:00 INTERRUPTIBLE sleep +5472 0:00:00 INTERRUPTIBLE sleep +5517 0:00:00 INTERRUPTIBLE z_null_iss +5518 0:00:00 INTERRUPTIBLE z_null_int +5519 0:00:00 INTERRUPTIBLE z_rd_iss +5520 0:00:00 INTERRUPTIBLE z_rd_int +5521 0:00:00 INTERRUPTIBLE z_rd_int +5522 0:00:00 INTERRUPTIBLE z_rd_int +5523 0:00:00 INTERRUPTIBLE z_rd_int +5524 0:00:00 INTERRUPTIBLE z_rd_int +5525 0:00:00 INTERRUPTIBLE z_rd_int +5526 0:00:00 INTERRUPTIBLE z_rd_int +5527 0:00:00 INTERRUPTIBLE z_rd_int +5528 0:00:00 INTERRUPTIBLE z_wr_iss +5529 0:00:00 INTERRUPTIBLE z_wr_iss_h +5530 0:00:00 INTERRUPTIBLE z_wr_int +5531 0:00:00 INTERRUPTIBLE z_wr_int +5532 0:00:00 INTERRUPTIBLE z_wr_int +5533 0:00:00 INTERRUPTIBLE z_wr_int +5534 0:00:00 INTERRUPTIBLE z_wr_int +5535 0:00:00 INTERRUPTIBLE z_wr_int +5536 0:00:00 INTERRUPTIBLE z_wr_int +5537 0:00:00 INTERRUPTIBLE z_wr_int +5538 0:00:00 INTERRUPTIBLE z_wr_int_h +5539 0:00:00 INTERRUPTIBLE z_fr_iss +5540 0:00:00 INTERRUPTIBLE z_fr_iss +5541 0:00:00 INTERRUPTIBLE z_fr_iss +5542 0:00:00 INTERRUPTIBLE z_fr_iss +5543 0:00:00 INTERRUPTIBLE z_fr_iss +5544 0:00:00 INTERRUPTIBLE z_fr_iss +5545 0:00:00 INTERRUPTIBLE z_fr_iss +5546 0:00:00 INTERRUPTIBLE z_fr_iss +5547 0:00:00 INTERRUPTIBLE z_fr_int +5548 0:00:00 INTERRUPTIBLE z_cl_iss +5549 0:00:00 INTERRUPTIBLE z_cl_int +5550 0:00:00 INTERRUPTIBLE z_ioctl_iss +5551 0:00:00 INTERRUPTIBLE z_ioctl_int +5552 0:00:00 INTERRUPTIBLE z_trim_iss +5553 0:00:00 INTERRUPTIBLE z_trim_int +5554 0:00:00 INTERRUPTIBLE z_zvol +5555 0:00:00 INTERRUPTIBLE z_prefetch +5556 0:00:00 INTERRUPTIBLE z_upgrade +5588 0:00:00 INTERRUPTIBLE metaslab_group_ +5589 0:00:00 INTERRUPTIBLE metaslab_group_ +5592 0:00:00 INTERRUPTIBLE dp_sync_taskq +5595 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +5596 0:00:00 INTERRUPTIBLE dp_zil_clean_ta +5597 0:00:00 INTERRUPTIBLE z_iput +5598 0:00:00 INTERRUPTIBLE z_unlinked_drai +5599 0:00:00 INTERRUPTIBLE txg_quiesce +5601 0:00:00 INTERRUPTIBLE txg_sync +5602 0:00:00 INTERRUPTIBLE mmp +5673 0:00:00 INTERRUPTIBLE zthr_procedure +5674 0:00:00 INTERRUPTIBLE zthr_procedure +5675 0:00:00 INTERRUPTIBLE zthr_procedure +5676 0:00:00 INTERRUPTIBLE zthr_procedure +5891 0:00:00 INTERRUPTIBLE z_vdev_file +5899 0:00:00 INTERRUPTIBLE z_vdev_file +5952 0:00:00 INTERRUPTIBLE z_vdev_file +5976 0:00:00 INTERRUPTIBLE z_vdev_file +5981 0:00:04 INTERRUPTIBLE sudo +5983 0:02:56 RUNNING dd +6026 0:00:04 INTERRUPTIBLE sudo +6028 0:00:00 INTERRUPTIBLE su +6029 0:00:00 RUNNING bash +6030 0:00:00 INTERRUPTIBLE z_vdev_file +6184 0:00:00 INTERRUPTIBLE z_wr_int +6186 0:00:00 INTERRUPTIBLE z_vdev_file +6188 0:00:00 INTERRUPTIBLE z_vdev_file +6189 0:00:00 INTERRUPTIBLE z_wr_int +6190 0:00:00 INTERRUPTIBLE z_wr_int +6191 0:00:00 INTERRUPTIBLE z_vdev_file +6192 0:00:00 INTERRUPTIBLE z_vdev_file +6194 0:00:00 INTERRUPTIBLE z_wr_int +6196 0:00:00 INTERRUPTIBLE z_wr_int +6279 0:00:00 INTERRUPTIBLE z_vdev_file +6309 0:00:00 INTERRUPTIBLE sleep diff --git a/tests/integration/test_linux_generic.py b/tests/integration/test_linux_generic.py index 5a1f00ba..e53b034e 100644 --- a/tests/integration/test_linux_generic.py +++ b/tests/integration/test_linux_generic.py @@ -89,6 +89,15 @@ "stacks -m zfs | count", "echo 0xffffa089669edc00 | stack", + # ps + "ps", + "ps -C bash", + "ps -p 4275", + "ps -e", + "ps -x", + "ps -o pid,ppid", + "ps -A", + # threads "threads", "threads | count",