summaryrefslogtreecommitdiff
path: root/vendor/src/github.com/docker/libcontainer/types.go
blob: 5095dca66a2b1c2078cfa74f29f34d3b8c2b19b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package libcontainer

import (
	"github.com/docker/libcontainer/cgroups"
	"github.com/docker/libcontainer/network"
)

type ContainerStats struct {
	NetworkStats network.NetworkStats `json:"network_stats, omitempty"`
	CgroupStats  *cgroups.Stats       `json:"cgroup_stats, omitempty"`
}