To
check whether data is being collected properly, access the following URLs:
Check whether JBoss is installed as
Standalone or Domain mode:
http://<JBoss Host>:<Port>/management?operation=attribute&name=launch-type
If launch-type is Standalone,then
the URL is:
URL = http://<JBoss Host>:<Port>/management
If launch-type is Domain , then
the URL is:
URL = http://<JBoss Host>:<Port>/management/host/<HostControllerName>
HostControllerName -> HostController Name is available in < Jboss Installation folder >\domain\configuration\host.xml -> Open the host.xml file and locate the <host> tag. The value of the name attribute in the <host> tag is the Host Controller name. Replace <HostControllerName> in the URL with this value.
JBoss Memory Usage URL:
URL + "/core-service/platform-mbean/type/memory?read-resource&include-runtime=true"
JBoss Thread Usage URL:
URL + "/core-service/platform-mbean/type/threading?read-resource&include-runtime=true"
JBoss classloading URL:
URL + "?read-resource&include-runtime=true"
JBoss Deployment URL:
URL + "?read-resource&include-runtime=true"
JBoss Web URL:
URL + "/subsystem/web/connector?read-resource&include-runtime=true&recursive"
(OR)
Get connector names using following URL:
URL + "/subsystem/web?read-resource&include-runtime=true"
Get data for each connector using
below URL:
URL + "/subsystem/web/connector/"+ConnectorName+"?read-resource&include-runtime=true"
JBoss Transactions URL:
URL + "/subsystem/transactions?read-resource&include-runtime=true&recursive"
JBoss JDBC URL:
URL + "/subsystem/datasources?read-resource&include-runtime=true&recursive"
JBoss JMS URL:
URL + "/subsystem/messaging?read-resource&include-runtime=true&recursive"
Note: If the value of the field "statistics-enabled" set to false, change it to true to get data in Applications Manager.