Attach server.Name label to client.rpc.failed

This commit is contained in:
Guido Iaquinti 2018-06-13 14:56:14 +01:00
parent bda575074e
commit 3ed73961b3
1 changed files with 1 additions and 1 deletions

View File

@ -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.IncrCounterWithLabels([]string{"client", "rpc", "failed"}, 1, []metrics.Label{{Name: "server", Value: server.ID}})
metrics.IncrCounterWithLabels([]string{"client", "rpc", "failed"}, 1, []metrics.Label{{Name: "server", Value: server.Name}})
c.routers.NotifyFailedServer(server)
if retry := canRetry(args, rpcErr); !retry {
return rpcErr