Architecture and Monitoring Apache ActiveMQ with Grafana.

Architecture and Monitoring Apache ActiveMQ with Grafana

Table of Contents

  1. Introduction
  2. Introduction to ActiveMQ
  3. ActiveMQ Architecture
  4. ActiveMQ monitoring options
  5. Monitoring ActiveMQ with Prometheus and JMX Exporter
    1. Download and configure the JMX Exporter
  6. Setting up ActiveMQ for Monitoring
  7. Setting up Prometheus to send data to Hosted Prometheus
  8. Plotting the visualization on Hosted Grafana
  9. Key ActiveMQ Metrics
  10. Conclusion

Introduction

In this article, we are going to look at the architecture of Apache ActiveMQ and how to monitor critical metrics of ActiveMQ using Hosted Prometheus and Hosted Grafana.

       

If you would like to follow the steps in this blog, make sure to sign up for the MetricFire free trial, you should also book a demo with us.

                              

You can use Graphite and Grafana directly from our platform. MetricFire is a Hosted Graphite, Grafana and Prometheus service, where we do the setup and management of these open-source tools so you don’t have to.

               

                                

Introduction to ActiveMQ

Apache ActiveMQ is one of the most popular open source software for asynchronous messages between distributed applications. It is based on Java Message Service (JMS) API, which is the standards defined by Java Enterprise Edition on how to create, send and receive messages across distributed applications.

            

ActiveMQ also supports a variety of wire protocols such as AMQP, MQTT, and STOMP allowing it to be interoperable with systems that support those protocols as well. ActiveMQ is also available on cloud as Amazon MQ by AWS.

                      

                                                                       

ActiveMQ Architecture

Before we get into monitoring Apache ActiveMQ, it's important to understand the architecture and basic building blocks of ActiveMQ. In ActiveMQ, messages are produced by a Producer and are consumed by another application called Consumer.

                          

The message in ActiveMQ can either be read by just one consumer or multiple consumers. When it's read by a single consumer, it's called point to point message and the message is usually placed on the queue.

                   

When the message is supposed to be read by multiple consumers, it is basically a publish subscribe pattern where multiple applications are interested in subscribing to a piece of information. In this case, a message is placed on a topic, where multiple consumers can subscribe to this topic.

             

In this entire architecture, ActiveMQ or any other messaging system (such as Kafka or RabbitMQ) is generically referred to as a broker, as can be seen in the picture below

                

undefined

                              

            

ActiveMQ monitoring options

Apache ActiveMQ provides various monitoring options such as JMX and other third party integrations. However, each of the monitoring integration with ActiveMQ is based on Java Management Extensions (JMX).

                       

Java Management Extensions (JMX) is a technology that was introduced with Java 1.5 and enabled tools and technologies for monitoring Java applications. Specifically, it provides Java applications with tools for managing and monitoring applications.

                

                    

Monitoring ActiveMQ with Prometheus and JMX Exporter

Prometheus is an open source monitoring solution originally developed by SoundCloud. Since then, it has been adopted by many organizations as their monitoring and alerting solutions. One of the advantages of Prometheus is that it comes with support for almost all the systems we want to monitor such as databases, Operating systems, etc.

                        

Prometheus is designed to work with pluggable exporters. An exporter is a script or a service which will fetch metrics from the application being monitored and feed the data to Prometheus. Prometheus integrations page gives the list of most popular exporters for all third party systems out there.

                         

For example, in this case, we are going to use a service called JMX Exporter. JMX exporter service gets the data from ActiveMQ and exposes it on the network port (8080 by default). Once the JMX exporter is exposing the ActiveMQ metrics, we instruct Prometheus to connect to this port, read the data and store it into its time series database at a regular interval.

                          

MetricFire offers a Hosted Prometheus service with hassle free setup and management. You can get started right away with our 14-day free trial, or book a demo to speak with an expert today.

                   

Download and configure the JMX Exporter

First, we’ll need to download the JMX exporter JAR from the github repository.

                  

Once the JAR is downloaded, we will instruct ActiveMQ to load it as an agent on application startup. In the case of ActiveMQ, we can do that by modifying /bin/env with following contents:

            

-javaagent:/path/to/jmx_exporter_jar/jmx_prometheus_javaagent-0.3.1.jar=[HTTP PORT]:/path/to/jmx_exporter_config/config.yml

                       

Once we fire up ActiveMQ after adding the relevant parameters, we can see the metrics exposed by opening http://localhost:8080/metrics on your local browser.

              

undefined

                

              

           

Setting up ActiveMQ for Monitoring

Now that ActiveMQ is successfully set up and exposing its metrics, we will configure Prometheus to read the metrics exposed by JMX Exporter. Configuring prometheus to read Apache ActiveMQ metrics is as simple as adding the following configuration in prometheus.yml, resulting in Prometheus calling the JMX exporter and reading the metrics.

                 

global:
    scrape_interval: 15s
    external_labels:
        monitor: "activemq"

scrape_configs:
    - job_name: "activemq"
      scrape_interval: 5s
      static_configs:
          - targets: ["activemq-hostname:8080"]

                

Here the name, activemq-hostname refers to the host where ActiveMQ is running.

                             

We can verify if Prometheus is successfully scraping the metrics by visiting http://promethus-host:9090/targets.

                 

We should see that target ActiveMQ is in state UP and shows the last scrape time.

         

undefined

                     

Setting up Prometheus to send data to Hosted Prometheus

We will be using Hosted Prometheus as a long-term data storage for our metrics. In order to send data to Hosted Prometheus, add new remote_write and remote_read sections like this:

          

remote_write:
  - url: https://prod.promlts.metricfire.com/write
    bearer_token: Your-API-key-goes-here
remote_read:
  - url: https://prod.promlts.metricfire.com/read
    bearer_token: Your-API-key-goes-here

                 

In order to fetch your API key, browse to the Hosted Graphite -> Addons -> Prometheus page. The page will give you your secure API key which will be used to send metrics from local Prometheus to Hosted Prometheus.

           

           

Plotting the visualization on Hosted Grafana

Now that our Hosted Prometheus is receiving metrics from the ActiveMQ, it’s time to plot the metrics on the Grafana dashboard.

                                 

So, let’s login to MetricFire at https://www.hostedgraphite.com/app and browse to Dashboards -> Grafana to open the Hosted Grafana application page.

                         

Grafana itself comes with a lot of pre-built dashboards that we can import and re-use. In this case, we are going to re-use a pre-built dashboard from the Grafana library.

                         

First, download the dashboard from the “Download JSON” link and import it into Hosted Grafana through the import option. Make sure to choose the Prometheus data source as “metricfire-prometheus-v2” as shown below.

                

Once imported, we will be able to see the metrics visualized as shown below.

                           

undefined

                 

Here's some more images of the above panel types, zoomed in:

               

undefined

ActiveMQ Summary

               

undefined

Queues / Topic Metrics

                   

undefined

Broker Metrics                    

                   

undefined

Memory Metrics

                     

Hosted Grafana is a very powerful visualization tool built over Grafana. It allows you to create your own visualizations as well as setup alerts whenever a metric value crosses a certain threshold. Check out our article Grafana dashboards from Basic to Advanced for a complete guide on how to set up Grafana alerts, and build custom dashboards.

                      

You can also create other types of visualizations based on the metrics exposed by Kubernetes. Have a look at the article Our Favorite Grafana Dashboards to create some of the more advanced dashboards.

                 

               

Key ActiveMQ Metrics

JMX Exporter for Apache ActiveMQ exposes a lot of metrics. Some of the key metrics are given below:

                     


 MemoryPercentUsage


 Percentage of memory used


 ConsumerCount


 Number of consumers currently subscribed


 ProducerCount


 Number of producers currently subscribed


 QueueSize


 Number of unacknowledged messages


 ExpiredCount


 Number of expired messages


 StorePercentUsage


 Percentage of disk storage used for messages


 TempPercentUsage


 Percentage of of disk storage used for non-persistent messages


 TotalEnqueueCount


 Total number of messages sent


 TotalDequeueCount


 Total number of messages consumed


 Topics


 Total number of topics


 Queues


 Total number of queues


 CollectionTime


 Amount of time JVM spent in garbage collection 


 CollectionCount


 Total count of garbage collection processes


 HeapMemoryUsage


 Memory used by JVM heap


 ThreadCount


 Total number of threads in JVM

                          

               

Conclusion

In this article, We looked at the architecture of Apache ActiveMQ and how Hosted Prometheus and Hosted Grafana can help us monitor ActiveMQ without much setup.

                                 

To get started right away, sign up for MetricFire’s free trial of our Hosted Prometheus and Grafana. Also, if you have any questions about our products, or about how MetricFire can help your company, talk directly to one of our experts by booking a demo.

You might also like other posts...
metricfire May 28, 2023 · 9 min read

How To Monitor A Linux Virtual Machine

You can ensure your Linux virtual machine is operating at its peak efficiency and... Continue Reading

metricfire May 24, 2023 · 11 min read

Best Grafana dashboard for Graphite Metrics

See examples of displaying Graphite metrics in Grafana dashboards. Use Hosted Graphite and Hosted... Continue Reading

metricfire May 22, 2023 · 7 min read

Exploring cAdvisor for Common Use Cases

cAdvisor can help you monitor your container deployments. But what is cAdvisor exactly, and... Continue Reading

header image

We strive for
99.999% uptime

Because our system is your system.

14-day trial 14-day trial
No Credit Card Required No Credit Card Required