...
Currently, there is not a good way of surfacing Geronimo's server information so that an administrator can monitor the server's status. The architecture of using MBeans is established, but not fully exploited. This enhancement will take advantage of what Geronimo currently offers and extend it so that a server can tap into a cluster of servers and extract information from specific Geronimo servers or even aggregates of Geronimo servers.
Goal
The goal is to have at least one machine be able to reach out to all Geronimo servers in order to fetch data or even alter their state. This will be especially useful in the case of someone having to monitor a large number of Geronimo servers.
How it works
...
As part of the design, there are five major components.
...
- Server group management
- Deploy/undeploy across multiple, set attributes across multiple, start/stop/restart multiple
- Historical statistics view for 1-n servers
- Ability to custom-define statistics collection per-machine, per-group, across entire cluster
- Manipulate snapshot interval, retention period
- Enable/disable archiving, define archiving time/retention
Currently Implemented
- Simple Tomcat statistics graph generation for localhost only - This is fully dynamic based on what is being collected on the server-side
- TomcatWebConnector
- Bytes/sec in
- Bytes/sec out
- OpenConnections
- BusyThreads
- RequestTimeTotalTime
- ErrorCount/second
- RequestTime CurrentTime
- ActiveRequestCount
- TomcatWebSSLConnector
- Bytes/sec in
- Bytes/sec out
- OpenConnections
- BusyThreads
- RequestTimeTotalTime
- ErrorCount/second
- RequestTime CurrentTime
- ActiveRequestCount
- TomcatAJPConnector
- Bytes/sec in
- Bytes/sec out
- OpenConnections
- BusyThreads
- RequestTimeTotalTime
- ErrorCount/second
- RequestTime CurrentTime
- ActiveRequestCount
- TomcatWebConnector
- Time frame able to be specified through arguments passed from the UI (JSP)
- Large portions of math and generation operations are done through javascript for a light load on the server
- Provide interface to add/remove/update servers controlled and monitored
- Upgraded portlet to be compatible with the new Pluggable Administration Console.
Current Dependencies
- Geronimo 2.1 Trunk
- Admin Console Plugin
- Pluto Plugin
- Dojo Plugin
Goals
- Implement configuration file on client side for customization of individual statistics and graphs
- Detect and indicate periods where collection thread was not running and 'dummy data' has been inserted in graph
- Improve user interface for ease of viewing/use
- Indicate a 'health' level through the colors of the graph, based on a percentage of the maximum for a specific value
- Implement ability to view multiple machines (not just localhost) through a config file
...
Note |
---|
There are two methods to collect statistics
|
Collecting Statistics Using MEJB (Method 1)
The RCP, or collecting agent, will reside on the Server Node and will be in charge of preparing information for the Management Node. Since there are many statistics for different MBeans that the admin could track, we will use the MEJB component that is already implemented in Geronimo to contact these MBeans.
The Master Controller is the collecting agent that will do the managerial tasks such as query the mbeans for their statistics and what not. Additionally, the Master Controller will set timers via the EJB TimerService in order to periodically capture "snapshots." This term will refer to the server's statistics for a given time. With the timers set, we can save the history of the server's statistics. Upon request, the Master Controller will gather all of the information (either by calling MEJB or looking into the server's history stored in a database) and respond by shipping the data back to the Management Node.
Note: All stats will be JSR-77 compliant.
Taking snapshots
As of now, the RCP collecting agent will create EJB Timers, if it does not already exist, to capture the server's essential information. On each callback the snapshot information on the server itself will be stored to the local database residing on the Server Node. In order to preserve the history, there will be a monthly (default, but can be configured) archive of the server's information stored locally.
Collecting Statistics Using Pure JMX (Method 2)
There is a second flavor of a collecting agent. The second option is to use pure JMX, bypassing the retrieval of the MEJB mbean in the server. All of the functionality is the same, because EJB timers are replaced with threads. Therefore, stopping a snapshot querying may take longer because of the use of threads as opposed to EJB Timers.
MEJB Method Dependencies
Code Block |
---|
agent-ejb // MEJB controller library
agent-ds // datasource plugin
agent-ear // packaging of agent-ejb and agent-jar
agent-jar // common utility classes used to talk to the DB
agent-sql // common sql commands to execute during deployment (used by agent-ds)
|
Pure JMX Method Depenedencies
Code Block |
---|
agent-car-jmx // JMX controller library
agent-ds // datasource plugin
agent-ear // packaging of agent-ejb and agent-jar
agent-jar // common utility classes used to talk to the DB
agent-sql // common sql commands to execute during deployment (used by agent-ds)
|
Using other Databases to store snapshot information on the Server Node
The current architecture of the RCP collecting agent really comes in a pair of components plugins (one for the providing the thin layer, and the other for providing that thin layer with a couple datasources). By modularizing these different entities, if the admin would swap out the Datasource with his/her own, the admin could save the snapshot information into any database that is supported by Geronimo. Other examples of notable plugins that use this technique of having a Datasource as a plugin are Jetspeed and Roller.
Database Schema (subject to change soon)
MBeans
-> id (PK)
-> mbeanName
-> statsNameList
Statistics
-> id (PK)
-> mbeanId (FK references MBeans.id)
-> snapshot_time
-> statsValueList
The values of MBeans.statsNameList and Statistics.statsValueList are CSV strings to represent an MBean's statistics name and value respectively. This is not the final design and will be changed.
Currently Implemented
- Archive snapshots every month
- Return arbitrary number of snapshots' information
- Ability to start/stop snapshot thread
- Ability to specify the duration of time in between snapshots
- Ability to fetch JSR-77 stats
- Ability to modify mbean attributes
- Ability to add additional mbeans to keep track of in the snapshot process
- Ability to remove mbeans from the list that the snapshot process refers to to get take its snapshots
- JSR-77 stats for Tomcat Connectors and Jetty Containers are surfaced
- Turn statistics option on for all StatisticsProvider components.
- Package collecting agent as a plugin (CAR) with a dependency on the MEJB module.
- Provide support for Jetty Connector stats (in Geronimo's code-base)
...
- The connection between client and server requires for the server to have OpenEJB installed. This will tremendously limit the plugin to work only with Application Servers with OpenEJB. Perhaps JMX remoting is another option or alternative.
Screenshots
...