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
The JSON output format (no longer required by MP metrics but retained as a nice feature in Helidon 4.x) omits percentile and bucket output from timers and distribution summaries (histograms).
Then retrieve the JSON metrics output using curl -H "Accept: application/json" 'http://localhost:8080/observe/metrics'. The output does not include any percentiles (which Helidon sets up by default) or buckets (which are not created unless the app code assigns them for the timer or distribution summary).
The text was updated successfully, but these errors were encountered:
Environment Details
Problem Description
The JSON output format (no longer required by MP metrics but retained as a nice feature in Helidon 4.x) omits percentile and bucket output from timers and distribution summaries (histograms).
Steps to reproduce
Declare a timer (via a
@Timed
annotation in MP orin an app.
Then retrieve the JSON metrics output using
curl -H "Accept: application/json" 'http://localhost:8080/observe/metrics'
. The output does not include any percentiles (which Helidon sets up by default) or buckets (which are not created unless the app code assigns them for the timer or distribution summary).The text was updated successfully, but these errors were encountered: