Package mondrian.server.monitor
Interface MonitorMXBean
-
- All Known Implementing Classes:
MonitorImpl
public interface MonitorMXBean
Defines the MXBean interface required to register MonitorImpl with a JMX agent. This simply lists the attributes we want exposed to a JMX client.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<ConnectionInfo>
getConnections()
ServerInfo
getServer()
java.util.List<SqlStatementInfo>
getSqlStatements()
java.util.List<StatementInfo>
getStatements()
-
-
-
Method Detail
-
getServer
ServerInfo getServer()
-
getConnections
java.util.List<ConnectionInfo> getConnections()
-
getStatements
java.util.List<StatementInfo> getStatements()
-
getSqlStatements
java.util.List<SqlStatementInfo> getSqlStatements()
-
-