Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

This article provides examples of how to view event information within ActiveMQ

Instructions

Viewing events in ActiveMQ

  1. Login to the ActiveMQ admin page.
    Eg. https://instance.mq.region.amazonaws.com:8162/admin/

  2. Navigate to the Topics page in ActiveMQ admin.

  3. Trigger an event. Afterwards an events topic should appear in the topics page.

  4. To view the contents of the events topic you must create an on_message listener. The attached python script provides said listener and displays event messages. Configure the following values according to your ActiveMQ instance.

    conn = Connection(host_and_ports=[
                      ('<YOUR-ACTIVEMQ-WEB-CONSOLE-URL>', 61614)])
    
    conn.set_ssl(for_hosts=[
                 ('<YOUR-ACTIVEMQ-WEB-CONSOLE-URL>', 61614)])
    
    conn.connect('<AMQ-USERNAME>', '<AMQ-PASSWORD>', wait=True)
    
    conn.subscribe('/topic/<EVENT-TOPIC-NAME>', 'a_client_id')

  5. After configuring the values, you should now be able to run the script and view topic messages when an event is triggered.

    Your ActiveMQ Topics page should now look similar to this:

    With a consumer added for your cloud_events.

    Example Output. An event "custom3" with id 26 and time 2022-12-13T02:30:00-05:00 from camera with id 1

  • No labels