Hello! I was wondering what the best-practice around collecting metrics in client-side Rust wasm code are, for example in terms of crates I might be missing.
In particular this is mostly about collecting typical telemetry such as timings and counters. The abstractions of the metrics crate are a good fit but differently to the server-side where there are e.g. integrations with prometheus I haven't really found any client-side metrics exporters.
This of course is very application dependent, e.g. using HTTP or other means, doing batching or not, server integrations, etc. But I was wondering of such integrations might exist already. Thanks!