Hi,
There is no queue-list metric but there are metrics about each queue (that's how Prometheus metrics are structured in general: metric_name{label1=val1,label2=val2}=X
(this is a Prometheus format, not RabbitMQ-specific metrics format). For example, I have 2 queues here, qq1 and qq2 and the following metrics:
$ curl -s localhost:15692/metrics/per-object | grep ^rabbitmq_queue_messages_ready
rabbitmq_queue_messages_ready{vhost="/",queue="qq-1"} 10
rabbitmq_queue_messages_ready{vhost="/",queue="qq-2"} 10
rabbitmq_queue_messages_ready_bytes{vhost="/",queue="qq-1"} 120
rabbitmq_queue_messages_ready_bytes{vhost="/",queue="qq-2"} 120
Best,