0

In Apache Qpid how to list the brokers status?

I'm using qpid-stat -b:

Brokers
  broker  cluster       uptime   conn  sess  exch  queue
  ========================================================
  ?       <standalone>  17m 29s     1     1     8     5

Other than these any option is there?

slm
  • 15,396
  • 12
  • 109
  • 124

1 Answers1

2

It depends what you mean by broker status. You may try qpid-tool. You can read more about it here and also here.

This utility provided a telnet style interface to be able to view, list all stats and action all the methods. Simple capture below. Best to just play with it and mail the list if you have questions or want features added.

Example

% qpid-tool
Management Tool for QPID
qpid: list
Summary of Objects by Type:
    Package                 Class         Active  Deleted
    =======================================================
    org.apache.qpid.broker  exchange      8       0
    com.redhat.rhm.store    store         1       0
    org.apache.qpid.broker  broker        1       0
    org.apache.qpid.broker  binding       16      12
    org.apache.qpid.broker  session       2       1
    org.apache.qpid.broker  connection    2       1
    org.apache.qpid.broker  vhost         1       0
    org.apache.qpid.broker  queue         6       5
    org.apache.qpid.broker  system        1       0
    org.apache.qpid.broker  subscription  6       5
slm
  • 15,396
  • 12
  • 109
  • 124
jan_bar
  • 71
  • 8