From 7ad5a9f6257ffce8272ee508c2e91a5fa610d01f Mon Sep 17 00:00:00 2001 From: hulto <7121375+hulto@users.noreply.github.com> Date: Mon, 23 Feb 2026 00:30:45 +0000 Subject: [PATCH] Add report process --- tavern/tomes/process_list/main.eldritch | 1 + tavern/tomes/process_tree/main.eldritch | 1 + 2 files changed, 2 insertions(+) diff --git a/tavern/tomes/process_list/main.eldritch b/tavern/tomes/process_list/main.eldritch index a16c87179..202b66d5e 100644 --- a/tavern/tomes/process_list/main.eldritch +++ b/tavern/tomes/process_list/main.eldritch @@ -22,6 +22,7 @@ def process_list(cmd_substring): cmd_substring = '' procs = process.list() + report.process_list(procs) rows = [["PID", "PPID", "USER", "COMMAND"]] for proc in procs: diff --git a/tavern/tomes/process_tree/main.eldritch b/tavern/tomes/process_tree/main.eldritch index 242b7e024..a6e75210e 100644 --- a/tavern/tomes/process_tree/main.eldritch +++ b/tavern/tomes/process_tree/main.eldritch @@ -50,6 +50,7 @@ def process_tree(cmd_substring): cmd_substring = '' procs = process.list() + report.process_list(procs) print(pad_pid("PID") + pad_pid("PPID") + pad_username("USER") + "COMMAND")