Monitoring RWS Micro Services via JMX and JConsole

Home > Blog > Monitoring RWS Micro Services via JMX and JConsole

Let’s talk tech. In this post, we outline how to set up the profiling of an RWS Spring Boot Micro Service for monitoring the memory, threads, classes, and MBeans.

What is Profiling?

Profiling is the process of analyzing your application’s memory consumption, CPU usage, frequency of function calls, cache monitoring, and more! It’s essentially a way of peeking under the hood and seeing what’s inside your application’s performance.

Why Do We Need Profiling?

Ensuring that your application is running smoothly and within its infrastructure limits is always something we strive for as architects. With profiling you can measure several metrics and understand which parts of your logic need attention and which areas of the infrastructure need increasing, or even decreasing, therefore reducing overall costs.

Setting up profiling consists of two parts:

  1. Configuring the microservice for JMX remote management
  2. Connecting to the JMX management from the JConsole application (or any other JMX enables monitoring application).

Note: This does impact performance, so it should not be used in a production scenario.

Setup

Complete this section in the order presented.

Configuring JMX Remote Management on the Micro Service

  1. Open the start.sh of your microservice
  2. Add the following entries to the JVM_OPTIONS
    1. Dcom.sun.management.jmxremote 
    2. Djava.rmi.server.hostname=<server ip address>
    3. Dcom.sun.management.jmxremote.port=<port of your choice>
    4. Dcom.sun.management.jmxremote.rmi.port=<same port as above>
    5. Dcom.sun.management.jmxremote.ssl=false 
    6. Dcom.sun.management.jmxremote.authenticate=false
  3. Restart the microservice

We’d recommend removing this configuration once you’ve finished monitoring.

Optionally, add the “authenticate” value depending on your authentication requirements. Additional information on providing authentication credentials can be found in the official JMX documentation.

Connect JConsole to Your Micro Service

  1. Navigate to /Contents/Home/Bin under your JDK folder
  2. Run the jconsole application
  3. Under New Connection -> Remote Process enter the host of the server your microservice runs on and the port you configured for your JMX management
  4. Click Connect

Now you can view the stats of your microservices. Note that MBeans allow us to monitor the addition/usage/invalidation of the EhCache. Click the tab and expand the Ehcache section to view the details.

Tip: Why not try connecting with the more powerful VisualVM? Simply install the tool and connect just like you did with JConsole.

Firewall

Update your firewall to allow TCP for the port you configured.

Related Posts