mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
30 lines
719 B
Go
30 lines
719 B
Go
package libcontainerd // import "github.com/docker/docker/libcontainerd"
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/containerd/cgroups"
|
|
specs "github.com/opencontainers/runtime-spec/specs-go"
|
|
)
|
|
|
|
// Summary is not used on linux
|
|
type Summary struct{}
|
|
|
|
// Stats holds metrics properties as returned by containerd
|
|
type Stats struct {
|
|
Read time.Time
|
|
Metrics *cgroups.Metrics
|
|
}
|
|
|
|
func interfaceToStats(read time.Time, v interface{}) *Stats {
|
|
return &Stats{
|
|
Metrics: v.(*cgroups.Metrics),
|
|
Read: read,
|
|
}
|
|
}
|
|
|
|
// Resources defines updatable container resource values. TODO: it must match containerd upcoming API
|
|
type Resources specs.LinuxResources
|
|
|
|
// Checkpoints contains the details of a checkpoint
|
|
type Checkpoints struct{}
|