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