2016-04-15 01:54:02 -07:00
|
|
|
package libcontainer
|
|
|
|
|
|
|
|
import "github.com/opencontainers/runc/libcontainer/cgroups"
|
2018-03-19 21:36:34 -04:00
|
|
|
import "github.com/opencontainers/runc/libcontainer/intelrdt"
|
2016-04-15 01:54:02 -07:00
|
|
|
|
|
|
|
type Stats struct {
|
2018-03-19 21:36:34 -04:00
|
|
|
Interfaces []*NetworkInterface
|
|
|
|
CgroupStats *cgroups.Stats
|
|
|
|
IntelRdtStats *intelrdt.Stats
|
2016-04-15 01:54:02 -07:00
|
|
|
}
|