@@ -99,37 +99,37 @@ func GetStats(cgroupManager cgroups.Manager, rootFs string, pid int, ignoreMetri
99
99
if ! ignoreMetrics .Has (container .NetworkUsageMetrics ) {
100
100
netStats , err := networkStatsFromProc (rootFs , pid )
101
101
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 )
103
103
} else {
104
104
stats .Network .Interfaces = append (stats .Network .Interfaces , netStats ... )
105
105
}
106
106
}
107
107
if ! ignoreMetrics .Has (container .NetworkTcpUsageMetrics ) {
108
108
t , err := tcpStatsFromProc (rootFs , pid , "net/tcp" )
109
109
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 )
111
111
} else {
112
112
stats .Network .Tcp = t
113
113
}
114
114
115
115
t6 , err := tcpStatsFromProc (rootFs , pid , "net/tcp6" )
116
116
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 )
118
118
} else {
119
119
stats .Network .Tcp6 = t6
120
120
}
121
121
}
122
122
if ! ignoreMetrics .Has (container .NetworkUdpUsageMetrics ) {
123
123
u , err := udpStatsFromProc (rootFs , pid , "net/udp" )
124
124
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 )
126
126
} else {
127
127
stats .Network .Udp = u
128
128
}
129
129
130
130
u6 , err := udpStatsFromProc (rootFs , pid , "net/udp6" )
131
131
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 )
133
133
} else {
134
134
stats .Network .Udp6 = u6
135
135
}
0 commit comments