mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
469957ccd7
Docker-DCO-1.1-Signed-off-by: Vishnu Kannan <vishnuk@google.com> (github: vishh)
12 lines
286 B
Go
12 lines
286 B
Go
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"`
|
|
}
|