kubernetesk8s.io/kubernetes/pkg/util/procfs Index | Files

package procfs

import "k8s.io/kubernetes/pkg/util/procfs"

Package procfs implements utility functions relating to the /proc mount.

Index

Functions

func PKill

func PKill(name string, sig syscall.Signal) error

Find process(es) using a regular expression and send a specified signal to each process

func PidOf

func PidOf(name string) ([]int, error)

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

func (pfs *ProcFS) GetFullContainerName(pid int) (string, error)

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.6
Published
Jan 17, 2024
Platform
js/wasm
Imports
2 packages
Last checked
10 minutes ago

Tools for package owners.