Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Using RHQ (JON) to monitor Java apps

<p>&nbsp;</p> <quillbot-extension-portal></quillbot-extension-portal>

January 23, 2014
Romain Pelisse
Related topics:
Java
Related products:
Red Hat JBoss Enterprise Application Platform

    While there is not yet a RHQ plugin for Glassfish, it is already possible to monitor an instance of Glassfish (GF), using the existing JMX Server resource template. Let's see how this unfolds...

    Set up

    Foreword: While not difficult, setting this up on a laptop requires running a LOT of Java processes, on top of a database. As the latter needs to be a somewhat older version of PostgreSQL (8.4), you might even end up running it on VM using virt-manager. That is to say, at the end of the day, you do need a little bit of memory and CPU power...

    Here what do we need to run exactly:

    • RHQ 4.x (or JON 3.x)
    • PostgreSQL 8.4 (or Oracle)
    • RHQ Agent - downloaded from the server once running
    • Glassfish 3

    Once you have RHQ server running, with its agent and the appropriate DB, you'll need to start GF:

    
    $ cd ${GLASSFISH_HOME}
    $ ./bin/asadmin start-domain
    Waiting for domain1 to start ......
    Successfully started the domain : domain1
    domain  Location: /home/rpelisse/Products/glassfish3/glassfish/domains/domain1
    Log File: /home/rpelisse/Products/glassfish3/glassfish/domains/domain1/logs/server.log
    Admin Port: 4848
    Command start-domain executed successfully.
    

    Fortunately, you don't have to look for long to get the information you need, as GF kindly print out the information you need (JMX's URL) on its main log:

    
    $ grep -e jmx /home/rpelisse/Products/glassfish3/glassfish/domains/domain1/logs/server.log
    [#]
    

    To monitor this GF as a simple JMX Server, you just need to click on the platform hosting GF (ie "localhost") and select the folder JMX Servers. From there, you'll find an appropriate where to paste the JMX URL and the define the JVM used. Once this is done, you'll have to wait a little for the agent to connect to the server, and some other "RHQ magic" to happen.

    Once this is done, you'll have a new resource, called "Java VM", this is your GF:

    However, it does not really get better than this. This crude JMX integration only gave you the data above.

    Custom JMX MBeans

    It's a shame because if you look into GF's JMX Server using the JConsole, you'll quickly find a lot more information:

    Disclaimer: I'm (obviously) no GF's expert - however, while doing this research, I wanted to find an MBean with a somewhat "variable" attributes (database connection, number of session, ...), but I couldn't. I may have overlook something, but it looks like no "live" metrics seem to be exposed through JMX by GF...

    Fortunately, RHQ gives us a way to leverage all those extra MBeans. Indeed, before writing a full blown plugin, the project's documentation does mention this possibility. A sample project is provided within RHQ git repository (etc/samples/custom-jmx) and its content is reduce to the bare minimum:

    
    $ tree .
    .
    |-- pom.xml
    `-- src
    `-- main
    `-- resources
    `-- META-INF
    `-- rhq-plugin.xml
    

    ... So basically, two files, including one of the smallest pom ever:

    
    <?xml version="1.0"?>
    <project xmlns="http://maven.apache.org/POM/4.0.0>"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.custom</groupId>
    <artifactId>custom-jmx-plugin</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>
    <name>RHQ Custom JMX Plugin</name>
    <description>Plugin that monitors a set of custom MBeans</description>
    </project>
    

    The 'rhq-plugin.xml' descriptor is pretty straightforward and well documented:

    
    <?xml version="1.0" encoding="UTF-8" ?>
    <plugin name="GlassfishJmx"
            displayName="Glashfish JMX Plugin"
            version="1.0"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns="urn:xmlns:rhq-plugin"
            xmlns:c="urn:xmlns:rhq-configuration">
    
       <depends plugin="JMX" useClasses="true"/>
       <service name="First Custom Service"
                description="Our first MBean custom service whose 'id' is static"
                discovery="org.rhq.plugins.jmx.MBeanResourceDiscoveryComponent"
                class="org.rhq.plugins.jmx.MBeanResourceComponent">
    
          <runs-inside>
             <parent-resource-type name="JMX Server" plugin="JMX"/>
          </runs-inside>
    
          <plugin-configuration>
             <c:simple-property name="objectName" readOnly="true" default="jmxapp:type=MyJmxObject,id=static"/>
          </plugin-configuration>
    
          <operation name="toUppercase"
                     displayName="String To Uppercase"
                     description="Converts the given string to all uppercase.">
             <parameters>
                <c:simple-property name="p1" type="string" required="true"/>
             </parameters>
             <results>
                <c:simple-property name="operationResult" type="string"/>
             </results>
          </operation>
    
          <metric property="RandomNumber"
                  displayName="Random Floating Point Number"
                  defaultOn="true"
                  displayType="summary"
                  defaultInterval="30000"
                  description="Emits a random number between 0.0 and 1.0"/>
       </service>
    </plugin>
    

    With this, you can turn any MBean from GF into a service which means:

    • RHQ can trigger any of the MBean's operation
    • RHQ can gather, as metrics, any of the MBean's attributes.

    Regarding the latter with GF, please remember my previous remarks on the lack of "dynamic" values in the GF's MBeans.

    Application deployment

    Based on the documentation (I didn't find the time to test this), it should be fairly easy with the RHQ Bundle system to deploy and un-deploy applications in GF. Once a new destination on the system (deploiement folder) is defined, a post install task can simply trigger the depoiement of the war now copied over to the host:

    
    ${GLASSFISH_HOME}/bin/asadmin deploy /path/to/war
    

    This will requires to wrap 'exec' task on the RHQ Bundle and will definitely not offer a nice error handling, but it should be enough to get started.

    A quick conclusion

    Overall, without a dedicated plugin for GF, one can already achieved a lot by customizing what is already available through JMX. However, to fully monitor GF, and the application deployed, the amount of custom JMX descriptors to produce might be discouraging. Unless the monitoring need on GF is rather simple, it does not look like a sane strategy to go this way. It would actually be probably easier to realize a dedicated plugin for GF (again IHMO).

    On the operation level, while customizing MBeans does provide access to the numerous operations of the already numerous GF's MBeans, crucial operations are missing: start/stop/restart. This means that if RHQ server gets notified that one instance of GF's is not available - i.e. that the JVM running it has crashed, there is nothing it can actually do. While there is probably hooks in the agent or RHQ to implement a simple "run-this-command-on-the-host-to-do-this-operation" on RHQ's agent, the fact remains this will be yet an other work to do, on top of the previous JMX integration.

    Another somewhat strong limitation is the small amount of information available on threads by applications deployed. While it may be possible to add one custom MBean by application run by GF, it is still unclear to me if one can easily retrieve such information as:

    • number of session per app, with their size
    • number of (web) threads per app
    • database connection pool usage per app.

    From my experience, those are very important metrics to monitor app servers in production.

    Down the road, all of this does NOT mean that GF cannot be monitored by RHQ, just that - as always, it mostly depends what you intend to actually to do. If just want RHQ to monitor GF's availability, and maybe check a couple of other things, you probably have enough here already. If you want RHQ to be the central deployment point in an environment featuring hundreds of GF's server, and you want to automatically recover from failed deployment bundled and server's crashes, it is probably a far more sound approach to start working on GF's plugin for JON, especially as it does not look that time consuming and difficult to implement...

    Last warning: This is the product of a quick investigation, done by one person, with decent knowledge of RHQ, but none of GF. There is no warranty here that my statements are definitive. I may have missed or overlooked something. Of course, if so, let me know I'll update this entry asap...

    Some links:

    • Manage and Administrate Glassfish 3 with AMX-JMX ;
    • RHQ's JMX Server ;
    • RHQ's writing plugins documentation.
    Last updated: May 31, 2023

    Recent Posts

    • MCP servers vs. skills: Choosing the right context for your AI

    • How to route external and local LLMs with Models-as-a-Service

    • Protect data offloaded to GPU-accelerated environments with OpenShift sandboxed containers

    • Case study: Measuring energy efficiency on the x64 platform

    • How to prevent AI inference stack silent failures

    What’s up next?

     

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.