package procfs
import "k8s.io/kubernetes/pkg/util/procfs"
Package procfs implements utility functions relating to the /proc mount.
Index ¶
- func PKill(name string, sig syscall.Signal) error
- func PidOf(name string) ([]int, error)
- type FakeProcFS
- type ProcFS
- type ProcFSInterface
Functions ¶
func PKill ¶
Find process(es) using a regular expression and send a specified signal to each process
func PidOf ¶
Find process(es) with a specified name (exact match) and return their pid(s)
Types ¶
type FakeProcFS ¶
type FakeProcFS struct{}
func (*FakeProcFS) GetFullContainerName ¶
func (fakePfs *FakeProcFS) GetFullContainerName(pid int) (string, error)
GetFullContainerName gets the container name given the root process id of the container. E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx, return docker/nginx. Assumes that the process is part of exactly one cgroup hierarchy.
type ProcFS ¶
type ProcFS struct{}
func (*ProcFS) GetFullContainerName ¶
GetFullContainerName gets the container name given the root process id of the container.
type ProcFSInterface ¶
type ProcFSInterface interface { // GetFullContainerName gets the container name given the root process id of the container. GetFullContainerName(pid int) (string, error) }
func NewProcFS ¶
func NewProcFS() ProcFSInterface
Source Files ¶
doc.go procfs.go procfs_fake.go procfs_unsupported.go
- Version
- v1.28.9
- Published
- Apr 16, 2024
- Platform
- js/wasm
- Imports
- 2 packages
- Last checked
- 3 minutes ago –
Tools for package owners.