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 metrics page, on micrometer's settings, point out that targetPercentiles default to 50.0, 90.0, 95.0, 99.0, 99.9 as percent values, but this can be interpreted as the input values being on the range of 0.0 to 100.0
Current Behavior
Of course setting up the wrong values lead to an error
Input Code
Repo not shared as it is private
Input Code
val options =MicrometerOptions
.builder()
.histogram(true)
.targetPercentiles(doubleArrayOf(50.0, 95.0, 99.0))
.build()
Expected behavior/code
Docs show us input value in the actual format they need to be supplied, for example 0.5, 0.9, 0.95, 0.99, 0.999.
Environment
Lettuce version(s): 6.1.5.RELEASE
Redis version: N/A
Possible Solution
Update the docs
Additional context
If this is described elsewhere, say in a docs/ folder or in a javadoc-style page, it should be linked in the wiki as well.
The text was updated successfully, but these errors were encountered:
Bug Report
The metrics page, on micrometer's settings, point out that
targetPercentiles
default to50.0, 90.0, 95.0, 99.0, 99.9
as percent values, but this can be interpreted as the input values being on the range of0.0
to100.0
Current Behavior
Of course setting up the wrong values lead to an error
Input Code
Repo not shared as it is private
Input Code
Expected behavior/code
Docs show us input value in the actual format they need to be supplied, for example
0.5, 0.9, 0.95, 0.99, 0.999
.Environment
Possible Solution
Update the docs
Additional context
If this is described elsewhere, say in a
docs/
folder or in a javadoc-style page, it should be linked in the wiki as well.The text was updated successfully, but these errors were encountered: