Changelog
https://crates.io/crates/metrics_server/0.15.0
Changes
- Add more debug logs.
- Simplify URI path parsing.
Breaking Changes
- Server no longer checks for URI path case equality.
- Previous versions would convert the request path to lowercase before comparison.
- Current version no longer converts to lowercase, therefore likely to return a 404. E.g., Sending a
/METRICS
request to a server started withserver.serve_uri("/metrics");