Documentation ¶
Overview ¶
Package cgnetcls implements functionality to manage classid for processes belonging to different cgroups
Index ¶
Constants ¶
View Source
const ( // TriremeBasePath is the base path of the Trireme tree in cgroups TriremeBasePath = "/trireme" // CgroupNameTag is the tag for the cgroup name CgroupNameTag = "@cgroup_name" // CgroupMarkTag is the tag for the cgroup mark CgroupMarkTag = "@cgroup_mark" // PortTag is the tag for a port PortTag = "@usr:port" )
Variables ¶
This section is empty.
Functions ¶
func ListCgroupProcesses ¶
ListCgroupProcesses lists the processes of the cgroup
Types ¶
type Cgroupnetcls ¶
type Cgroupnetcls interface { Creategroup(cgroupname string) error AssignMark(cgroupname string, mark uint64) error AddProcess(cgroupname string, pid int) error RemoveProcess(cgroupname string, pid int) error DeleteCgroup(cgroupname string) error Deletebasepath(contextID string) bool }
Cgroupnetcls interface exposing methods that can be called from outside to manage net_cls cgroups
func NewCgroupNetController ¶
func NewCgroupNetController(releasePath string) Cgroupnetcls
NewCgroupNetController returns a handle to call functions on the cgroup net_cls controller
func NewDockerCgroupNetController ¶ added in v1.0.3
func NewDockerCgroupNetController() Cgroupnetcls
NewDockerCgroupNetController returns a handle to call functions on the cgroup net_cls controller
Click to show internal directories.
Click to hide internal directories.