Metadata-Version: 2.4
Name: grpcio-admin
Version: 1.81.0rc1
Summary: a collection of admin services
Author-email: The gRPC Authors <grpc-io@googlegroups.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://grpc.io
Project-URL: Documentation, https://grpc.github.io/grpc/python/grpc_admin.html
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: grpcio-channelz>=1.81.0rc1
Requires-Dist: grpcio-csds>=1.81.0rc1
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python

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.
