Crates.io | tonic-health |
lib.rs | tonic-health |
version | 0.12.3 |
source | src |
created_at | 2020-04-01 18:46:23.203123 |
updated_at | 2024-09-26 17:09:48.176731 |
description | Health Checking module of `tonic` gRPC implementation. |
homepage | https://github.com/hyperium/tonic |
repository | https://github.com/hyperium/tonic |
max_upload_size | |
id | 225298 |
size | 43,238 |
A tonic
based gRPC healthcheck implementation. It closely follows the official health checking protocol, although it may not implement all features described in the specs.
Please follow the example in the main repo to see how it works.
NamedService
trait. You can use it like that: let conn = tonic::transport::Endpoint::new(dst)?.connect().await?;
let client = HealthClient::new(conn);