Package com.amazonaws.jmx.spi
Interface JmxInfoProvider
-
- All Known Implementing Classes:
JmxInfoProviderSupport
public interface JmxInfoProvider
SPI used to retrieve JMX information and can survive the absence of JMX.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
JmxInfoProvider.Factory
-
Field Summary
Fields Modifier and Type Field Description static JmxInfoProvider
NONE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long[]
findDeadlockedThreads()
int
getDaemonThreadCount()
long[]
getFileDecriptorInfo()
int
getPeakThreadCount()
int
getThreadCount()
long
getTotalStartedThreadCount()
boolean
isEnabled()
-
-
-
Field Detail
-
NONE
static final JmxInfoProvider NONE
-
-
Method Detail
-
getFileDecriptorInfo
long[] getFileDecriptorInfo()
-
getThreadCount
int getThreadCount()
-
getDaemonThreadCount
int getDaemonThreadCount()
-
getPeakThreadCount
int getPeakThreadCount()
-
getTotalStartedThreadCount
long getTotalStartedThreadCount()
-
findDeadlockedThreads
long[] findDeadlockedThreads()
-
isEnabled
boolean isEnabled()
-
-