learner
learner

Reputation: 1982

Get client id of all durable clients connected to ActiveMQ broker

Is there a way/command to get list of all client id of all durable clients connected to ActiveMQ broker on demand?

Upvotes: 1

Views: 442

Answers (1)

learner
learner

Reputation: 1982

jconsole list all clientids connected to broker.

Connect to broker in jconsole

In Mbeans tag, go to org.apache.activemq.

Expand Broker -> clientConnectirs.

you will see bunch of different transport connector opened by broker. In these connector you can see clientId , expanding it will show all clientId for that connector.

Upvotes: 1

Related Questions