Remove cpuset cgroup for listing on raw driver.

Also a couple of fixes/simplifications.
This commit is contained in:
Victor Marmol 2014-07-21 18:00:55 -07:00
parent aa7154c5e2
commit 3854ea6970
2 changed files with 4 additions and 5 deletions

BIN
cadvisor Executable file

Binary file not shown.

View File

@ -77,10 +77,9 @@ func Register() error {
return nil
}
// Cgroup susbsystems we support listing (should be the minimal set we need stats from).
// Cgroup subsystems we support listing (should be the minimal set we need stats from).
var supportedSubsystems map[string]struct{} = map[string]struct{}{
"cpu": struct{}{},
"cpuset": struct{}{},
"cpuacct": struct{}{},
"memory": struct{}{},
"cpu": {},
"cpuacct": {},
"memory": {},
}