namespace for backend metrics (#74, #76)

This commit is contained in:
Michael Quigley 2022-10-18 13:43:05 -04:00
parent 8bd7991b2b
commit 9b31da1039
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -92,5 +92,5 @@ func metricsDial(_ context.Context, network string, addr string) (net.Conn, erro
if err != nil {
return conn, err
}
return newMetricsConn("self", conn), nil
return newMetricsConn("backend", conn), nil
}