diff --git a/man/systemd-coredump.xml b/man/systemd-coredump.xml index 4c98c6771a7..ac4c7604fd7 100644 --- a/man/systemd-coredump.xml +++ b/man/systemd-coredump.xml @@ -215,6 +215,16 @@ COREDUMP_FILENAME=/var/lib/systemd/coredump/core.Web….552351.….zst COREDUMP_CGROUP= + + The primary cgroup of the unit of the crashed process. + + When the crashed process was in a container, this is the full path, as seen outside of the + container. + + + + + COREDUMP_PROC_CGROUP= Control group information in the format used in /proc/self/cgroup. On systems with the unified cgroup hierarchy, this is a single path prefixed with 0::, and multiple paths prefixed with controller numbers @@ -228,9 +238,10 @@ COREDUMP_FILENAME=/var/lib/systemd/coredump/core.Web….552351.….zst COREDUMP_OWNER_UID= COREDUMP_USER_UNIT= + COREDUMP_SESSION= The numerical UID of the user owning the login session or systemd user unit of the - crashed process, and the user manager unit. Both fields are only present for user processes. - + crashed process, the user manager unit, and the sesion identifier. All three fields are only present + for user processes. When the crashed process was in container, those are the values outside, in the main system. @@ -295,23 +306,29 @@ flags: ... + COREDUMP_CMDLINE= COREDUMP_COMM= - COREDUMP_PROC_STATUS= - COREDUMP_PROC_MAPS= + COREDUMP_ENVIRON= + COREDUMP_PROC_AUXV= COREDUMP_PROC_LIMITS= + COREDUMP_PROC_MAPS= COREDUMP_PROC_MOUNTINFO= - COREDUMP_ENVIRON= + COREDUMP_PROC_STATUS= Fields that map the per-process entries in the /proc/ - filesystem: /proc/pid/comm (the command name - associated with the process), /proc/pid/exe (the - filename of the executed command), /proc/pid/status - (various metadata about the process), /proc/pid/maps - (memory regions visible to the process and their access permissions), + filesystem: /proc/pid/cmdline (the command line of + the crashed process), /proc/pid/comm (the command + name associated with the process), /proc/pid/environ + (the environment block of the crashed process), + /proc/pid/auxv (the auxiliary vector of the crashed + process, see getauxval3), /proc/pid/limits (the soft and hard resource limits), - /proc/pid/mountinfo (mount points in the process's - mount namespace), /proc/pid/environ - (the environment block of the crashed process). + /proc/pid/maps (memory regions visible to the process + and their access permissions), /proc/pid/mountinfo + (mount points in the process's mount namespace), + /proc/pid/status (various metadata about the + process). See proc5