The basic information of the server can be captured and stored in a database that is supported by Geronimo. The Geronimo management node takes advantage of MBeans to collect the server's statistics for a given time, also called snapshots. These snapshots are all JSR 77 compatible. In this way the administrator can monitor the server status.
By default, the datasources are used to connect an Apache Derby database (the reason for this is because the default DB that Geronimo uses is also Derby). However, since the datasources are all packaged into separate plugins, anyone is able to write their own datasource deployment descriptor, package it into a plugin, and use it instead of the one provided by default.
In order to use your own database for the Monitoring Plugin you must ensure the following:
Here is the original deployment descriptor for the datasources used for the Monitoring Plugin in <geronimo_home>\repository\org\apache\geronimo\plugins\monitoring\agent-ds\<version>\agent-ds-<version>.car\META-INF
.
META-INF/database/derby
is the path of createTables.sql
packaged in tha JAR file <geronimo_home>\repository\org\apache\geronimo\plugins\monitoring\agent-sql\<version>\agent-sql-<version>.jar
, which is a dependency of the datasource.
The two gbeans at the end of the deployment descriptor is pointing to an SQL file createTables.sql
in order to create the necessary tables under the condition that they do not exist. The elements of these two tables are described as the following:
In this example, we will replace the default Apache Derby plugin datasource in Geronimo 2.2 with a DB2 Express-C one.
Before we get started to replace the monitoring plugin datasource, we should install DB2 Express-C database and its driver JAR packages on Geronimo, and then configure a DB2 Express-C datasource for Geronimo to connect to that database.
Now that we have a DB2 monitoring plugin datasource, we have to create deployment descriptors for the datasource.
db2-agent-ds.xml
based on the default plan.xml
.
db2-agent-ds.xml
:
activedb
, and the DatabaseName for jdbc/ArchiveDS is archdb
.db2-mconsole-ds.xml
. DatabaseName in this file is mcdb
.var\config\config.xml
for Geronimo to prevent the following modules from being launched at startup time. This can be done by adding a Load="false"
to each module. This will prevent the configuration changes below from causing conflicts.
deploy.bat deploy ..\repository\org\tranql\tranql-connector-db2-xa\1.3\tranql-connector-db2-xa-1.3.rar <plan_path>:\db2-agent-ds.xml deploy.bat deploy ..\repository\org\tranql\tranql-connector-db2-xa\1.3\tranql-connector-db2-xa-1.3.rar <plan_path>:\db2-mconsole-ds.xml
var\config\artifact_aliases.properties
file to replace default modules. In this way Geronimo will load DB2 datasources at startup time instead of the default ones.
org.apache.geronimo.plugins.monitoring/agent-ds/2.2/car=org.apache.geronimo.plugins.monitoring/db2-agent-ds/2.2/car org.apache.geronimo.plugins.monitoring/mconsole-ds/2.2/car=org.apache.geronimo.plugins.monitoring/db2-mconsole-ds/2.2/car
var\config\config.xml
, load org.apache.geronimo.plugins.monitoring/agent/2.2/car
and org.apache.geronimo.plugins.monitoring/mconsole-tomcat/2.2/car
at startup time. This can be done by removing the Load="false"
for each module.Bookmark this on Delicious Digg this | Privacy Policy - Copyright © 2003-2011, The Apache Software Foundation, Licensed under ASL 2.0. |