Class FileCacheProbeProvider
- java.lang.Object
-
- com.sun.enterprise.v3.services.impl.monitor.probes.FileCacheProbeProvider
-
public class FileCacheProbeProvider extends Object
Probe provider interface for file-cache related events.- Author:
- Alexey Stashok
-
-
Constructor Summary
Constructors Constructor Description FileCacheProbeProvider()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddHeapSizeEvent(String fileCacheName, long size)voidaddMappedMemorySizeEvent(String fileCacheName, long size)voidcountContentHitEvent(String fileCacheName)voidcountContentMissEvent(String fileCacheName)voidcountHitEvent(String fileCacheName)voidcountInfoHitEvent(String fileCacheName)voidcountInfoMissEvent(String fileCacheName)voidcountMissEvent(String fileCacheName)voiddecOpenCacheEntriesEvent(String fileCacheName)voidincOpenCacheEntriesEvent(String fileCacheName)voidsubHeapSizeEvent(String fileCacheName, long size)voidsubMappedMemorySizeEvent(String fileCacheName, long size)
-
-
-
Method Detail
-
countHitEvent
public void countHitEvent(String fileCacheName)
-
countMissEvent
public void countMissEvent(String fileCacheName)
-
countInfoHitEvent
public void countInfoHitEvent(String fileCacheName)
-
countInfoMissEvent
public void countInfoMissEvent(String fileCacheName)
-
countContentHitEvent
public void countContentHitEvent(String fileCacheName)
-
countContentMissEvent
public void countContentMissEvent(String fileCacheName)
-
incOpenCacheEntriesEvent
public void incOpenCacheEntriesEvent(String fileCacheName)
-
decOpenCacheEntriesEvent
public void decOpenCacheEntriesEvent(String fileCacheName)
-
addHeapSizeEvent
public void addHeapSizeEvent(String fileCacheName, long size)
-
subHeapSizeEvent
public void subHeapSizeEvent(String fileCacheName, long size)
-
addMappedMemorySizeEvent
public void addMappedMemorySizeEvent(String fileCacheName, long size)
-
subMappedMemorySizeEvent
public void subMappedMemorySizeEvent(String fileCacheName, long size)
-
-