We are using pika library to declare exchange and queues as mentioned in the example below,
queue_declare(queue='process_messages_dx', durable=True)
Now, How to add Queue Description such that Admin UI user(Administrator, DevOps team) gets the knowledge of what this queue's function is. Kind of metadata of the Queue.
It should be possible by just adding arguments as mentioned in the Pika Documentation,
metadata = {
"about": "Contains notification messages sent from the system. Consumed by the Flash to deliver content to Justice League.",
"service": "earth"
}
queue_declare(queue='process_messages_dx', durable=True, arguments=metadata)