We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 976f1d5 + 1bc1ff0 commit 3b55e78Copy full SHA for 3b55e78
internal/nflog/pmtud.go
@@ -149,8 +149,10 @@ func (nfc *Controller) Start(startCtx context.Context) error {
149
addr := &packet.Addr{
150
HardwareAddr: hwAddr,
151
}
152
+ metrics.SentError.WithLabelValues(cfg.NodeName, d).Add(0)
153
if _, err := conn.WriteTo(bin, addr); err != nil {
154
metrics.Error.WithLabelValues(cfg.NodeName).Inc()
155
+ metrics.SentError.WithLabelValues(cfg.NodeName, d).Inc()
156
log.Error(err, "error writing packet")
157
cancel()
158
return 1
0 commit comments