Spring metrics don't show Guava hit/miss

680 Views Asked by At

In the metrics endpoint I get all the caches size, but not hit/miss (as expected from https://docs.spring.io/spring-boot/docs/current/reference/html/production-ready-metrics.html#production-ready-datasource-cache)

Example: "cache.mytest.size":19

I expected also the hit/miss counters... I'm using Guava.

1

There are 1 best solutions below

0
On BEST ANSWER

Had to enable them on a per-cache basis:

https://github.com/google/guava/wiki/CachesExplained#statistics

cacheBuilder.recordStats();