You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: OTel trace propagation, /readyz health wiring, description update
OTel trace context (W3C traceparent) auto-propagated through gRPC
(PushRequest metadata), Kafka (message headers), and HTTP (request
headers). All gated behind #[cfg(feature = "otel")] — zero overhead
when disabled. Shared propagation helpers in transport/propagation.rs.
/readyz endpoint now aggregates from HealthRegistry when health feature
is enabled. /health/detailed returns per-component JSON status.
MetricsManager readiness also checks HealthRegistry.
Fix test ordering issue with HealthRegistry global state.
Update crate description. 671 tests pass.
Copy file name to clipboardExpand all lines: Cargo.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ name = "hyperi-rustlib"
11
11
version = "1.17.0-dev.16"
12
12
edition = "2024"
13
13
rust-version = "1.94"
14
-
description = "Shared utility library for HyperI Rust applications"
14
+
description = "Opinionated Rust framework for high-throughput data pipelines at PB scale. Auto-wiring config, logging, metrics, tracing, health, and graceful shutdown — built from many years of production infrastructure experience."
0 commit comments