Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Cadvisor ¶
type Cadvisor interface { // GetAllContainers returns container spec and stats for the root cgroup as 'root' and // and all containers on the 'host' as 'subcontainers'. GetAllContainers(host Host, start, end time.Time, resolution time.Duration) (subcontainers []*api.Container, root *api.Container, err error) }
func NewCadvisor ¶
func NewCadvisor() Cadvisor
type Kubelet ¶
type Kubelet interface { // GetContainer returns container spec and stats for the container pointed to by 'host.Resource', running on the kubelet specified in 'host.IP'. // TODO(vishh): Once kubelet exposes a get all stats API, modify this API to return stats for all Pods. GetContainer(host Host, start, end time.Time, resolution time.Duration) (containers *api.Container, err error) }
func NewKubelet ¶
func NewKubelet() Kubelet
Click to show internal directories.
Click to hide internal directories.