The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
apolcyn 0e6c888574
Bump version to 1.40.0-dev (#26600)
4 years ago
..
grpc_admin Add grpcio-admin Python package (#26166) 4 years ago
.gitignore Add grpcio-admin Python package (#26166) 4 years ago
MANIFEST.in Add grpcio-admin Python package (#26166) 4 years ago
README.rst Add grpcio-admin Python package (#26166) 4 years ago
grpc_version.py Bump version to 1.40.0-dev (#26600) 4 years ago
setup.py Add grpcio-admin Python package (#26166) 4 years ago

README.rst

gRPC Python Admin Interface Package
===================================

Debugging gRPC library can be a complex task. There are many configurations and
internal states, which will affect the behavior of the library. This Python
package will be the collection of admin services that are exposing debug
information. Currently, it includes:

* Channel tracing metrics (grpcio-channelz)
* Client Status Discovery Service (grpcio-csds)

Here is a snippet to create an admin server on "localhost:50051":

server = grpc.server(ThreadPoolExecutor())
port = server.add_insecure_port('localhost:50051')
grpc_admin.add_admin_servicers(self._server)
server.start()

Welcome to explore the admin services with CLI tool "grpcdebug":
https://github.com/grpc-ecosystem/grpcdebug.

For any issues or suggestions, please send to
https://github.com/grpc/grpc/issues.