summaryrefslogtreecommitdiff
path: root/libpod/pod_top_linux.go
AgeCommit message (Collapse)Author
2020-07-28Switch all references to github.com/containers/libpod -> podmanDaniel J Walsh
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
2020-07-06move go module to v2Valentin Rothberg
With the advent of Podman 2.0.0 we crossed the magical barrier of go modules. While we were able to continue importing all packages inside of the project, the project could not be vendored anymore from the outside. Move the go module to new major version and change all imports to `github.com/containers/libpod/v2`. The renaming of the imports was done via `gomove` [1]. [1] https://github.com/KSubedi/gomove Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2020-03-28podmanv2: implement pod topValentin Rothberg
Implement `podman pod top` for podmanV2. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2019-06-27libpod removal from main (phase 2)baude
this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
2019-05-23rootless: fix top huser and hgroupGiuseppe Scrivano
when running in rootless mode, be sure psgo is honoring the user namespace settings for huser and hgroup. Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
2018-08-23Add podman pod tophaircommander
Using the vendored changes from psgo, incorporate JoinNamespaceAndProcessInfoByPids to get process information for each pid namespace of running containers in the pod. Also added a man page, and tests. Signed-off-by: haircommander <pehunt@redhat.com> Closes: #1298 Approved by: mheon