Attach server.ID label to client.rpc.failed
This commit is contained in:
parent
edd6a69541
commit
bda575074e
|
@ -276,7 +276,7 @@ TRY:
|
|||
|
||||
// Move off to another server, and see if we can retry.
|
||||
c.logger.Printf("[ERR] consul: %q RPC failed to server %s: %v", method, server.Addr, rpcErr)
|
||||
metrics.IncrCounter([]string{"client", "rpc", "failed"}, 1)
|
||||
metrics.IncrCounterWithLabels([]string{"client", "rpc", "failed"}, 1, []metrics.Label{{Name: "server", Value: server.ID}})
|
||||
c.routers.NotifyFailedServer(server)
|
||||
if retry := canRetry(args, rpcErr); !retry {
|
||||
return rpcErr
|
||||
|
|
Loading…
Reference in New Issue