Running Jolokia Jvm Agent With Mule Standalone Runtime

Used software: Mule Standalone Runtime 3.8.5 EE, Jolokia JVM Agent 1.3.7, OpenJDK 1.8

Jolokia is a great way to monitor JVM applications and provide easy access to all the JMX goodies using simple JSON over HTTP. I would say that it has almost become the de facto standard when it comes to monitoring and managing Java applications.

While Jolokia does provide a specialized Mule agent it does not allow us to exposing the Jolokia interface over HTTPS (or enable TLS Client Authentication). On the other hand this is supported by the Jolokia JVM Agent. And it also works great with the Mule Server Runtime. In this blog post I do a step by step instruction on how to starting the Jolokia JVM Agent with the Mule runtime and enable HTTPS and basic authentication.

  1. Create /opt/jolokia/
  2. Download and copy the Jolokia JVM agent jar (in my case jolokia-jvm-1.3.7-agent.jar) into /opt/jolokia
  3. Copy your keystore into /opt/jolokia (skip this step if you do not plan to use https to access jolokia)
  4. Create a jolokia properties file in /opt/jolokia. For a complete set of configuration options see the Jolokia reference manual
1
2
3
4
5
6
7
8
     port=8774
     host=0.0.0.0
     user=user
     password=password
     sslProtocol=TLSv1.2
     protocol=https
     keystore=/opt/jolokia/jolokia.jks
     keystorePassword=password
  1. In your mule config add the following additional Java argument. As usual you need to change the to be a consecutive number (based on the number of additional properties).
1
2
wrapper.java.additional.<n>=-javaagent:"/opt/jolokia/jolokia-jvm-1.3.7-agent.jar=config=/opt/jolokia/jolokia.properties"
wrapper.java.additional.<n>.stripquotes=TRUE
  1. Start the Mule runtime
  2. Test by using curl
1
2
3
user@devws:~$ curl -k https://user:password@localhost:8774/jolokia
{"request":{"type":"version"},"value":{"agent":"1.3.7","protocol":"7.2","config":{"maxDepth":"15","discoveryEnabled":"true","maxCollectionSize":"0","password":"password","agentId":"10.0.2.15-6850-4f023edb-jvm","debug":"false","agentType":"jvm","historyMaxEntries":"10","agentContext":"\/jolokia","maxObjects":"0","user":"ipf","debugMaxEntries":"100"},"info":{}},"timestamp":1506498074,"status":200}
user@devws:~$