我正在使用弹簧靴和千分尺作为应用程序指标。我的Spring Boot应用程序正在将有关延迟的指标推向弹性搜索。
我正在使用千分尺百分比直方图-千分尺将值累加为基础直方图,并将预定的一组铲斗运送到监视系统。
https://micrometer.io/docs/concepts#_histograms_and_percentiles
从直方图存储桶中,弹性搜索或kibana中是否有任何方法可以计算第50、95、99%的延迟?
Prometheus通过函数histogram_quantile支持此功能 https://prometheus.io/docs/prometheus/latest/querying/functions/#histogram_quantile
在弹性搜索或kibana中是否可以达到类似的结果?