grpc/src/python/grpcio_admin
Mark D. Roth 13d98176b5
bump version on master to 1.43-dev (#27930)
* bump version on master to 1.43-dev

* bump core version

* update g_stands_for.md
2021-11-04 16:19:56 -07:00
..
grpc_admin Introduce Python import sorting to our sanity test suite (#26768) 2021-07-26 12:31:21 -07:00
.gitignore Add grpcio-admin Python package (#26166) 2021-05-05 13:20:50 -07:00
MANIFEST.in Add grpcio-admin Python package (#26166) 2021-05-05 13:20:50 -07:00
README.rst Add grpcio-admin Python package (#26166) 2021-05-05 13:20:50 -07:00
grpc_version.py bump version on master to 1.43-dev (#27930) 2021-11-04 16:19:56 -07:00
setup.py Add python_requires field to grpcio-* packages (#27495) 2021-09-28 16:01:15 -07:00

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.