Full Changelog: https://github.com/prometheus-erl/prometheus.ex/compare/v5.0.0...v5.1.0
Unclaimed project
Are you a maintainer of prometheus.ex? Claim this project to take control of your public changelog and roadmap.
Full Changelog: https://github.com/prometheus-erl/prometheus.ex/compare/v5.0.0...v5.1.0
See changes at the underlying Erlang library: https://github.com/prometheus-erl/prometheus.erl/releases/tag/v6.0.0
Full Changelog: https://github.com/prometheus-erl/prometheus.ex/compare/v4.0.0...v5.0.0
All observe_duration/track_inprogress functions no longer do implicit fun execution.
def track_checked_out_sockets(checkout_fun) do
Gauge.track_inprogress([name: :my_pool_checked_out], checkout_fun)
end
has to be rewritten as
def track_checked_out_sockets(checkout_fun) do
Gauge.track_inprogress([name: :my_pool_checked_out], checkout_fun.(...