incident response: remove ever-changing columns from process table

This commit is contained in:
Thomas Stromberg 2023-02-23 17:12:45 -05:00
parent 8ce348dfc4
commit db792dc3c2
Failed to extract signature

View File

@ -1,8 +1,25 @@
-- Currently running programs
-- Currently running programs, only the columns that are not constantly changing
--
-- tags: postmortem
-- platform: posix
SELECT
*
FROM
processes
SELECT pid,
name,
path,
cmdline,
state,
cwd,
root,
uid,
gid,
euid,
egid,
seuid,
sgid,
on_disk,
start_time,
parent,
pgroup,
threads,
nice,
cgroup_path
FROM processes