diff --git a/metrics/utils.go b/metrics/utils.go index a0fe7bb..743c0dc 100644 --- a/metrics/utils.go +++ b/metrics/utils.go @@ -126,6 +126,8 @@ func updateNetErrors(stats *types.ResponseErrorStats, err error) { stats.NetErrors[errNetIOTimeout.Error()]++ case strings.Contains(errInStr, errTLSHandshakeTimeout.Error()): stats.NetErrors[errTLSHandshakeTimeout.Error()]++ + default: + stats.NetErrors[err.Error()]++ } case errors.Is(err, io.ErrUnexpectedEOF): stats.NetErrors[io.ErrUnexpectedEOF.Error()]++