5

I send a message to queue in ActiveMQ Artemis 2.20, and I navigate to web console to view the message, but only a limited characters I can see. Can I configure the web console to visualize the full message body in the queue?

Justin Bertram
  • 29,372
  • 4
  • 21
  • 43

1 Answers1

8

Due to ARTEMIS-3141, ARTEMIS-3128, & ARTEMIS-3175 the data returned for any list or browse management method which return message data, including those exposed via the web console, have their return data truncated by default. This is done to avoid adverse conditions with large volumes of message data which could potentially negatively impact broker stability.

The management-message-attribute-size-limit address-setting controls this behavior. It is 256 by default. It can be disabled using -1. I recommend you set it to a value sufficiently high for your use-case.

To be clear, this applies to every release after 2.18.0.

Justin Bertram
  • 29,372
  • 4
  • 21
  • 43