Drew Sonne
09/03/2021, 11:46 AMgrpc._channel._InactiveRpcError: <_InactiveRpcError of RPC that terminated with: status = StatusCode.UNAVAILABLE details = "failed to connect to all addresses" debug_error_string = "{"created":"@1630669409.194800714","description":"Failed to pick subchannel","file":"src/core/ext/filters/client_channel/client_channel.cc","file_line":3008,"referenced_errors":[{"created":"@1630669409.194797596","description":"failed to connect to all addresses","file":"src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc","file_line":397,"grpc_status":14}]}" >
I'm trying to debug it myself, and using grpcurl as grpcurl -plaintext <host>:4000 list
and getting the following response:
Failed to list services: server does not support the reflection API
. To help me debug this, what are the symbols exposed on the grpc endpoint I could use to test it's functioning correctly?Nilesh Pandey
09/03/2021, 12:22 PMDrew Sonne
09/03/2021, 12:44 PMjohann
09/03/2021, 3:07 PMdagster api grpc-health-check
which we use for probes. Return code 0 means success (it doesn’t print anything, it should.)Drew Sonne
09/04/2021, 7:02 AM