Merge pull request #74633 from Random-Liu/lower-normal-log-level

Lower the log level for non-exist cadvisor stats.
This commit is contained in:
Kubernetes Prow Robot 2019-02-26 19:40:46 -08:00 committed by GitHub
commit 09d07cf4e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ func (p *criStatsProvider) ListPodStats() ([]statsapi.PodStats, error) {
// container stats
caStats, caFound := caInfos[containerID]
if !caFound {
klog.V(4).Infof("Unable to find cadvisor stats for %q", containerID)
klog.V(5).Infof("Unable to find cadvisor stats for %q", containerID)
} else {
p.addCadvisorContainerStats(cs, &caStats)
}