I have a grpc server running at on of my machine. Is there any way to continuously check if that server is running or not other than making a query to the server?
Like in c++ it is mentioned here that using
grpc_connectivity_state GetState(bool try_to_connect);
will give connectivity status. Do we have any option similar to this in python