Show process euid instead of uid.

This commit is contained in:
Thomas Stromberg 2022-10-14 09:36:28 -04:00
parent b2f0c1ca54
commit 488d1aac96
Failed to extract signature
2 changed files with 3 additions and 2 deletions

View File

@ -1,9 +1,10 @@
-- Processes that do not exist on disk
--
-- tags: periodic daemon
-- platform: linux
SELECT
p.pid,
p.uid,
p.euid,
p.cmdline,
p.path,
mnt_namespace,

View File

@ -8,7 +8,7 @@ SELECT
p.pid AS child_pid,
p.path AS child_path,
p.cmdline AS child_cmd,
p.uid AS child_uid,
p.euid AS child_euid,
p.gid AS child_gid,
hash.path,
p.on_disk AS child_on_disk,