How to view full body message in browse queue in ActiveMQ Artemis web console
Asked Answered
H

1

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?

Herschel answered 15/2, 2022 at 13:5 Comment(0)
G
9

Due to ARTEMIS-3141, ARTEMIS-3128, & ARTEMIS-3175 the message data returned for any list or browse management method, including those exposed via the web console, will be 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.

Giguere answered 15/2, 2022 at 13:17 Comment(2)
0 Does the API enable the features of a linked list or similar? Fon an example, can I go to the next 200 or the previous 200 and so on? Or is the purpose something else that I miss?Concertize
@DemasSinner, you should ask a new question about this.Giguere

© 2022 - 2024 — McMap. All rights reserved.