使用pika获取RabbitMQ队列的使用者总数

时间:2013-04-24 09:54:35

标签: python rabbitmq pika python-pika

以下代码是我用来计算消费者数量的代码:

import pika

connection = pika.BlockingConnection(pika.ConnectionParameters(host='IP ADDRESS'))
channel = connection.channel()

this=channel.queue_declare(queue="Queue_name",passive=True)

print this.method.consumer_count

现在我获得的计数是活跃消费者的数量。但是,当消费者从队列中消费时,此计数将打印为零。现在我需要从队列中消费的消费者总数。这出现了RabbitMQ管理 (作为消费者:0活跃                 25总计)

有没有办法获取队列中消费者消费总数的计数,而队列中是否有消息?

提前谢谢

2 个答案:

答案 0 :(得分:4)

以下是对这个问题的回答。但是,它使用HTTP API而不是pika。

import subprocess
import os
import json


#Execute in command line
def execute_command(command):
     proc = subprocess.Popen(command,shell=True,stdout=subprocess.PIPE) 
     script_response = proc.stdout.read().split('\n')
     resp=json.loads(script_response[7])
     print resp[0]['name']
     print resp[0]['consumers']

  ######### MAIN #########
  if __name__ == '__main__':
      execute_command('curl -i -u guest:guest http://*IP ADDRESS*:15672/api/queues/')

请参阅:http://hg.rabbitmq.com/rabbitmq-management/raw-file/3646dee55e02/priv/www-api/help.html

答案 1 :(得分:1)

一个简单的选择:

self._channel = self._connection.channel()
queue_state = self._channel.queue_declare(queue=self.__queue_name, passive=True, durable=True)
print(queue_state.method.consumer_count)
print(queue_state.method.message_count)