jasonrbriggs / stomp.py

“stomp.py” is a Python client library for accessing messaging servers (such as ActiveMQ or RabbitMQ) using the STOMP protocol (versions 1.0, 1.1 and 1.2). It can also be run as a standalone, command-line client for testing.
Apache License 2.0
492 stars 167 forks source link

Activemq queue length via stomp.py #385

Closed marc-philipp-knechtle closed 8 months ago

marc-philipp-knechtle commented 2 years ago

Hi, I tested your example scripts and it works wonderfully to send and receive messages.

But I wondered whether it's possible to make meta information requests about queues. Im particularly interested in the size of the queues. (Without readming the messages as I have another message-consumer)

Sadly I did not find any options to do this in the documentation.

Thanks a lot in advance!

jasonrbriggs commented 8 months ago

This isn't functionality that stomp.py would provide. If anything it would be something the message broker/server would provide via a rest api or some similar mechanism.