Skip to content

Commit 9939954

Browse files
authored
Add report process (#1861)
1 parent b895903 commit 9939954

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tavern/tomes/process_list/main.eldritch

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def process_list(cmd_substring):
2222
cmd_substring = ''
2323

2424
procs = process.list()
25+
report.process_list(procs)
2526

2627
rows = [["PID", "PPID", "USER", "COMMAND"]]
2728
for proc in procs:

tavern/tomes/process_tree/main.eldritch

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def process_tree(cmd_substring):
5050
cmd_substring = ''
5151

5252
procs = process.list()
53+
report.process_list(procs)
5354

5455
print(pad_pid("PID") + pad_pid("PPID") + pad_username("USER") + "COMMAND")
5556

0 commit comments

Comments
 (0)