Interface BaseMXBean
-
- All Superinterfaces:
MessageStatisticsMXBean,java.io.Serializable
- All Known Subinterfaces:
ApplicationMXBean,EndpointMXBean,SessionMXBean
@Beta public interface BaseMXBean extends MessageStatisticsMXBean
- Author:
- Petr Janouch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MessageStatisticsMXBeangetBinaryMessageStatisticsMXBean()Get an MXBean containing statistics about binary messages.MessageStatisticsMXBeangetControlMessageStatisticsMXBean()Get an MXBean containing statistics about control messages.java.util.List<ErrorCount>getErrorCounts()Get list of Throwable class name - count pairs, which represent errors and number of times they have occurred.MessageStatisticsMXBeangetTextMessageStatisticsMXBean()Get an MXBean containing statistics about text messages.-
Methods inherited from interface org.glassfish.tyrus.ext.monitoring.jmx.MessageStatisticsMXBean
getAverageReceivedMessageSize, getAverageSentMessageSize, getMaximalReceivedMessageSize, getMaximalSentMessageSize, getMinimalReceivedMessageSize, getMinimalSentMessageSize, getReceivedMessagesCount, getReceivedMessagesCountPerSecond, getSentMessagesCount, getSentMessagesCountPerSecond
-
-
-
-
Method Detail
-
getErrorCounts
java.util.List<ErrorCount> getErrorCounts()
Get list of Throwable class name - count pairs, which represent errors and number of times they have occurred.- Returns:
- list of Throwable class name - count pairs, which represent errors and number of times they have occurred.
-
getTextMessageStatisticsMXBean
MessageStatisticsMXBean getTextMessageStatisticsMXBean()
Get an MXBean containing statistics about text messages.- Returns:
- an MXBean containing statistics about text messages.
-
getBinaryMessageStatisticsMXBean
MessageStatisticsMXBean getBinaryMessageStatisticsMXBean()
Get an MXBean containing statistics about binary messages.- Returns:
- an MXBean containing statistics about binary messages.
-
getControlMessageStatisticsMXBean
MessageStatisticsMXBean getControlMessageStatisticsMXBean()
Get an MXBean containing statistics about control messages.- Returns:
- an MXBean containing statistics about control messages.
-
-