123456789101112131415161718192021222324252627282930 |
- package libcontainerd // import "github.com/docker/docker/libcontainerd"
- import (
- "time"
- "github.com/containerd/cgroups"
- "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{}
|