Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
grpc_admin/ | H | 25-Apr-2025 | - | 69 | 44 | |
.gitignore | H A D | 25-Apr-2025 | 67 | 7 | 6 | |
MANIFEST.in | H A D | 25-Apr-2025 | 95 | 5 | 4 | |
README.rst | H A D | 25-Apr-2025 | 865 | 24 | 17 | |
grpc_version.py | H A D | 25-Apr-2025 | 698 | 18 | 1 | |
setup.py | H A D | 25-Apr-2025 | 2 KiB | 63 | 38 |
README.rst
1gRPC Python Admin Interface Package 2=================================== 3 4Debugging gRPC library can be a complex task. There are many configurations and 5internal states, which will affect the behavior of the library. This Python 6package will be the collection of admin services that are exposing debug 7information. Currently, it includes: 8 9* Channel tracing metrics (grpcio-channelz) 10* Client Status Discovery Service (grpcio-csds) 11 12Here is a snippet to create an admin server on "localhost:50051": 13 14 server = grpc.server(ThreadPoolExecutor()) 15 port = server.add_insecure_port('localhost:50051') 16 grpc_admin.add_admin_servicers(self._server) 17 server.start() 18 19Welcome to explore the admin services with CLI tool "grpcdebug": 20https://github.com/grpc-ecosystem/grpcdebug. 21 22For any issues or suggestions, please send to 23https://github.com/grpc/grpc/issues. 24