Commit 3e16eb50 authored by Zhou Fang's avatar Zhou Fang

change the error log for empty resource usage

parent 0877816e
...@@ -192,7 +192,7 @@ func (r *ResourceCollector) GetLatest() (framework.ResourceUsagePerContainer, er ...@@ -192,7 +192,7 @@ func (r *ResourceCollector) GetLatest() (framework.ResourceUsagePerContainer, er
for key, name := range systemContainers { for key, name := range systemContainers {
contStats, ok := r.buffers[name] contStats, ok := r.buffers[name]
if !ok || len(contStats) == 0 { if !ok || len(contStats) == 0 {
return nil, fmt.Errorf("Resource usage of %s:%s is not ready yet", key, name) return nil, fmt.Errorf("No resource usage data for %s container (%s)", key, name)
} }
stats[key] = contStats[len(contStats)-1] stats[key] = contStats[len(contStats)-1]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment