From 4dc9bc34c8d2704ddd4b330737b83afcd0b390b1 Mon Sep 17 00:00:00 2001 From: Anshul Bisht Date: Fri, 14 Aug 2026 17:25:22 +0530 Subject: [PATCH 1/2] Docs: clarify pod_ps shows global host PID, not container PID Fixes #162 --- playbooks/robusta_playbooks/pod_troubleshooting.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playbooks/robusta_playbooks/pod_troubleshooting.py b/playbooks/robusta_playbooks/pod_troubleshooting.py index 38c6b4135..4d1a0a7ce 100644 --- a/playbooks/robusta_playbooks/pod_troubleshooting.py +++ b/playbooks/robusta_playbooks/pod_troubleshooting.py @@ -122,6 +122,8 @@ def python_profiler(event: PodEvent, action_params: StartProfilingParams): def pod_ps(event: PodEvent, params: PodRunningParams): """ Fetch the list of running processes in a pod. + + Note: the ``pid`` column shows the global (host) PID, not the container-namespaced PID. """ pod = event.get_pod() if not pod: From ad3f0511dd251e4af6efd9598d079504d2db9fc1 Mon Sep 17 00:00:00 2001 From: Anshul Bisht Date: Fri, 14 Aug 2026 17:50:40 +0530 Subject: [PATCH 2/2] Docs: retrigger checks