Observability emission layer for naia game networking.
Emits network health data — RTT, jitter, packet loss, bandwidth — via the
[metrics] crate facade. Install any compatible exporter at startup and
naia's data flows to your monitoring backend automatically.
Non-Bevy usage
Call once per tick after server.send_all_packets():
emit_server_aggregates;
for user_key in server.user_keys
For Bevy apps, use [naia-bevy-metrics] instead — it handles emission
automatically via a plugin.