Package org.opennms.netmgt.jetty.jmx
Interface JettyServerMBean
-
- All Superinterfaces:
BaseOnmsMBean
- All Known Implementing Classes:
JettyServer
public interface JettyServerMBean extends BaseOnmsMBean
JettyServerMBean interface.
- Version:
- $Id: $
- Author:
- ranger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getHttpConnectionsOpen()
long
getHttpConnectionsOpenMax()
long
getHttpConnectionsTotal()
long
getHttpsConnectionsOpen()
long
getHttpsConnectionsOpenMax()
long
getHttpsConnectionsTotal()
-
Methods inherited from interface org.opennms.netmgt.daemon.BaseOnmsMBean
getStatus, getStatusText, init, start, status, stop
-
-
-
-
Method Detail
-
getHttpsConnectionsTotal
long getHttpsConnectionsTotal()
- Returns:
- The total number of HTTPS connections since the JettyServer was started
-
getHttpsConnectionsOpen
long getHttpsConnectionsOpen()
- Returns:
- The current number of HTTPS connections to the JettyServer
-
getHttpsConnectionsOpenMax
long getHttpsConnectionsOpenMax()
- Returns:
- The maximum number of concurrent HTTPS connections to the JettyServer since it was started
-
getHttpConnectionsTotal
long getHttpConnectionsTotal()
- Returns:
- The total number of plain-HTTP connections since the JettyServer was started
-
getHttpConnectionsOpen
long getHttpConnectionsOpen()
- Returns:
- The current number of plain-HTTP connections to the JettyServer
-
getHttpConnectionsOpenMax
long getHttpConnectionsOpenMax()
- Returns:
- The maximum number of concurrent plain-HTTP connections to the JettyServer since it was started
-
-