This commit is contained in:
SataQiu
2018-10-04 13:13:39 +08:00
committed by k8s-ci-robot
parent 94e108b15c
commit ada41a995a
@@ -119,7 +119,7 @@ Lets scroll a little further down the page, well see a live list of all tr
<center><img src="/images/blog/2018-09-18-2018-linkerd-2.0/4-web-top.png" width="700"></center>
There are two calls that are not at 100%: the first is vote-bots call the “/api/vote” endpoint. The second is the “VotePoop” call from the web service to the voting service. Very interesting! Since /api/vote is an incoming call, and “/VotePoop” is an outgoing call, this is a good clue that that the failure of the vote services VotePoop endpoint is whats causing the problem!
There are two calls that are not at 100%: the first is vote-bots call the “/api/vote” endpoint. The second is the “VotePoop” call from the web service to the voting service. Very interesting! Since /api/vote is an incoming call, and “/VotePoop” is an outgoing call, this is a good clue that the failure of the vote services VotePoop endpoint is whats causing the problem!
Finally, if we click on the “tap” icon for that row in the far right column, well be taken to live list of requests that match this endpoint. This allows us to confirm that the requests are failing (they all have [gRPC status code 2](https://godoc.org/google.golang.org/grpc/codes#Code), indicating an error).