mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 02:41:25 +00:00
14 lines
309 B
Go
14 lines
309 B
Go
package libcontainer
|
|
|
|
import (
|
|
"github.com/opencontainers/runc/libcontainer/cgroups"
|
|
"github.com/opencontainers/runc/libcontainer/intelrdt"
|
|
"github.com/opencontainers/runc/types"
|
|
)
|
|
|
|
type Stats struct {
|
|
Interfaces []*types.NetworkInterface
|
|
CgroupStats *cgroups.Stats
|
|
IntelRdtStats *intelrdt.Stats
|
|
}
|