Name Date Size #Lines LOC

..--

grpc_admin/H25-Apr-2025-6944

.gitignoreH A D25-Apr-202567 76

MANIFEST.inH A D25-Apr-202595 54

README.rstH A D25-Apr-2025865 2417

grpc_version.pyH A D25-Apr-2025698 181

setup.pyH A D25-Apr-20252 KiB6338

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