Class EhCacheStatisticsEvent
- java.lang.Object
-
- com.atlassian.confluence.cache.ehcache.EhCacheStatisticsEvent
-
- All Implemented Interfaces:
Serializable
@AsynchronousPreferred public class EhCacheStatisticsEvent extends Object implements Serializable
An analytics event which contains a snapshot of the basic statistics of an ehcache.- Since:
- 5.8
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @NonNull String
getCacheName()
long
getEvictedCount()
long
getExpiredCount()
long
getHitCount()
long
getMissExpiredCount()
long
getMissNotFoundCount()
long
getNumberOfElementsOnTheHeap()
-
-
-
Method Detail
-
getCacheName
public @NonNull String getCacheName()
-
getNumberOfElementsOnTheHeap
public long getNumberOfElementsOnTheHeap()
-
getHitCount
public long getHitCount()
-
getMissExpiredCount
public long getMissExpiredCount()
-
getMissNotFoundCount
public long getMissNotFoundCount()
-
getEvictedCount
public long getEvictedCount()
-
getExpiredCount
public long getExpiredCount()
-
-