Is there a way to publish percentiles from `Metric...
# http4k
e
Is there a way to publish percentiles from
MetricFilters.Server.RequestTimer
? I seem to get only the
count
,
mean
,
sum
and
upper
fields from
http.server.request.latency
metric published using the
RequestTimer
metric filter.
First time using the MetricFilters 🙂
d
http4k piggybacks on top of the micrometer APIs for publishing metrics. you should be able to simply write a custom filter (maybe copying the implementation of the metrics filters) to gather what you want if it is supported. check out their docs for details and let us know if you need more help with the http4k side of things. 🙃 https://micrometer.io/
e
Thanks @dave I started exploring on that 🙂
👍 1