2023-02-23 22:12:45 +00:00
|
|
|
-- Currently running programs, only the columns that are not constantly changing
|
2022-10-17 21:11:15 +00:00
|
|
|
--
|
2023-03-24 14:42:06 +00:00
|
|
|
-- tags: postmortem often
|
2022-10-17 21:11:15 +00:00
|
|
|
-- platform: posix
|
2023-02-24 02:24:52 +00:00
|
|
|
SELECT
|
|
|
|
pid,
|
2023-02-23 22:12:45 +00:00
|
|
|
name,
|
|
|
|
path,
|
|
|
|
cmdline,
|
|
|
|
state,
|
|
|
|
cwd,
|
|
|
|
root,
|
|
|
|
uid,
|
|
|
|
gid,
|
|
|
|
euid,
|
|
|
|
egid,
|
2023-02-24 02:24:52 +00:00
|
|
|
suid,
|
2023-02-23 22:12:45 +00:00
|
|
|
sgid,
|
|
|
|
on_disk,
|
|
|
|
start_time,
|
|
|
|
parent,
|
|
|
|
pgroup,
|
|
|
|
threads,
|
|
|
|
nice,
|
|
|
|
cgroup_path
|
2023-02-24 02:24:52 +00:00
|
|
|
FROM
|
|
|
|
processes
|