2017-07-28 14:31:02 +00:00
|
|
|
package libcontainer
|
|
|
|
|
|
|
|
import "github.com/opencontainers/runc/libcontainer/cgroups"
|
2018-01-19 21:37:10 +00:00
|
|
|
import "github.com/opencontainers/runc/libcontainer/intelrdt"
|
2017-07-28 14:31:02 +00:00
|
|
|
|
|
|
|
type Stats struct {
|
2018-01-19 21:37:10 +00:00
|
|
|
Interfaces []*NetworkInterface
|
|
|
|
CgroupStats *cgroups.Stats
|
|
|
|
IntelRdtStats *intelrdt.Stats
|
2017-07-28 14:31:02 +00:00
|
|
|
}
|