4f2b443a27
This rewrites the Go imports after switching to the new github org. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
70 lines
1.5 KiB
Go
70 lines
1.5 KiB
Go
package cgroups
|
|
|
|
import (
|
|
"github.com/containerd/containerd"
|
|
"github.com/containerd/containerd/plugin"
|
|
"github.com/crosbymichael/cgroups"
|
|
"github.com/crosbymichael/cgroups/prometheus"
|
|
metrics "github.com/docker/go-metrics"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
const name = "cgroups"
|
|
|
|
func init() {
|
|
plugin.Register(name, &plugin.Registration{
|
|
Type: plugin.ContainerMonitorPlugin,
|
|
Init: New,
|
|
})
|
|
}
|
|
|
|
func New(ic *plugin.InitContext) (interface{}, error) {
|
|
var (
|
|
ns = metrics.NewNamespace("container", "", nil)
|
|
collector = prometheus.New(ns)
|
|
)
|
|
oom, err := prometheus.NewOOMCollector(ns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
metrics.Register(ns)
|
|
return &cgroupsMonitor{
|
|
collector: collector,
|
|
oom: oom,
|
|
context: ic.Context,
|
|
}, nil
|
|
}
|
|
|
|
type cgroupsMonitor struct {
|
|
collector *prometheus.Collector
|
|
oom *prometheus.OOMCollector
|
|
context context.Context
|
|
}
|
|
|
|
func (m *cgroupsMonitor) Monitor(c containerd.Container) error {
|
|
// skip non-linux containers
|
|
if _, ok := c.(containerd.LinuxContainer); !ok {
|
|
return nil
|
|
}
|
|
id := c.Info().ID
|
|
state, err := c.State(m.context)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
cg, err := cgroups.Load(cgroups.V1, cgroups.PidPath(int(state.Pid())))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := m.collector.Add(id, cg); err != nil {
|
|
return err
|
|
}
|
|
return m.oom.Add(id, cg)
|
|
}
|
|
|
|
func (m *cgroupsMonitor) Stop(c containerd.Container) error {
|
|
if _, ok := c.(containerd.LinuxContainer); !ok {
|
|
return nil
|
|
}
|
|
m.collector.Remove(c.Info().ID)
|
|
return nil
|
|
}
|