cadvisor/vendor/github.com/opencontainers/runc/libcontainer/stats_linux.go
Davanum Srinivas 8e1802154d
Bump dependency opencontainers/runc@v1.0.0-rc10
Need to match what we did already in kubernetes:
088ee920e0

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
2020-02-28 09:38:47 -05:00

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
}