• Home
Name Date Size #Lines LOC

..--

grpc_admin/06-Sep-2024-6944

.gitignoreD06-Sep-202467 76

MANIFEST.inD06-Sep-202495 54

README.rstD06-Sep-2024865 2417

grpc_version.pyD06-Sep-2024698 181

setup.pyD06-Sep-20242 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