-
Bug
-
Resolution: Done
-
Minor
-
14.0.2.Final
-
None
There are some attributes of JMX cache statistics that are always unavailable at runtime.
That are: hitTimes, missTimes, removeTimes, storeTimes and statisticsEnabled.
I think that we can safely assume that these attributes are not used by other Infinispan components, such as the metrics produced for the console for instance.
My proposal is the following:
1. remove hitTimes, since we already also have the hits attribute on the same MBean
2. remove missTimes, since we already also have the misses attribute on the same MBean
3. remove storeTimes, since we already also have the stores attribute on the same MBean
4. rename the removeTimes attribute to removes, to make its name consistent with the other names and make it working (for instance removes := removeHits + removeMisses)
5. fix the statisticsEnabled attribute