Skip to content

Commit d493f11

Browse files
Reduce log spam when unable to get network stats
1 parent 27e1acb commit d493f11

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

container/libcontainer/helpers.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -99,37 +99,37 @@ func GetStats(cgroupManager cgroups.Manager, rootFs string, pid int, ignoreMetri
9999
if !ignoreMetrics.Has(container.NetworkUsageMetrics) {
100100
netStats, err := networkStatsFromProc(rootFs, pid)
101101
if err != nil {
102-
glog.V(2).Infof("Unable to get network stats from pid %d: %v", pid, err)
102+
glog.V(4).Infof("Unable to get network stats from pid %d: %v", pid, err)
103103
} else {
104104
stats.Network.Interfaces = append(stats.Network.Interfaces, netStats...)
105105
}
106106
}
107107
if !ignoreMetrics.Has(container.NetworkTcpUsageMetrics) {
108108
t, err := tcpStatsFromProc(rootFs, pid, "net/tcp")
109109
if err != nil {
110-
glog.V(2).Infof("Unable to get tcp stats from pid %d: %v", pid, err)
110+
glog.V(4).Infof("Unable to get tcp stats from pid %d: %v", pid, err)
111111
} else {
112112
stats.Network.Tcp = t
113113
}
114114

115115
t6, err := tcpStatsFromProc(rootFs, pid, "net/tcp6")
116116
if err != nil {
117-
glog.V(2).Infof("Unable to get tcp6 stats from pid %d: %v", pid, err)
117+
glog.V(4).Infof("Unable to get tcp6 stats from pid %d: %v", pid, err)
118118
} else {
119119
stats.Network.Tcp6 = t6
120120
}
121121
}
122122
if !ignoreMetrics.Has(container.NetworkUdpUsageMetrics) {
123123
u, err := udpStatsFromProc(rootFs, pid, "net/udp")
124124
if err != nil {
125-
glog.V(2).Infof("Unable to get udp stats from pid %d: %v", pid, err)
125+
glog.V(4).Infof("Unable to get udp stats from pid %d: %v", pid, err)
126126
} else {
127127
stats.Network.Udp = u
128128
}
129129

130130
u6, err := udpStatsFromProc(rootFs, pid, "net/udp6")
131131
if err != nil {
132-
glog.V(2).Infof("Unable to get udp6 stats from pid %d: %v", pid, err)
132+
glog.V(4).Infof("Unable to get udp6 stats from pid %d: %v", pid, err)
133133
} else {
134134
stats.Network.Udp6 = u6
135135
}

0 commit comments

Comments
 (0)