Note
This plugin is part of the community.rabbitmq collection.
To install it use: ansible-galaxy collection install community.rabbitmq.
To use it in a playbook, specify: community.rabbitmq.rabbitmq.
count, messages from a RabbitMQ queue.The below requirements are needed on the local controller node that executes this lookup.
| Parameter | Choices/Defaults | Configuration | Comments |
|---|---|---|---|
| count string | How many messages to collect from the queue. If not set, defaults to retrieving all the messages from the queue. | ||
| queue string / required | The queue to get messages from. | ||
| url string / required | An URI connection string to connect to the AMQP/AMQPS RabbitMQ server. For more information refer to the URI spec https://www.rabbitmq.com/uri-spec.html. |
Note
vars may result in unexpected results as the lookup is evaluated every time the variable is referenced.- name: Get all messages off a queue
debug:
msg: "{{ lookup('community.rabbitmq.rabbitmq', url='amqp://guest:[email protected]:5672/%2F', queue='hello') }}"
# If you are intending on using the returned messages as a variable in more than
# one task (eg. debug, template), it is recommended to set_fact.
- name: Get 2 messages off a queue and set a fact for re-use
set_fact:
messages: "{{ lookup('community.rabbitmq.rabbiotmq', url='amqp://guest:[email protected]:5672/%2F', queue='hello', count=2) }}"
- name: Dump out contents of the messages
debug:
var: messages
Common return values are documented here, the following are the fields unique to this lookup:
| Key | Returned | Description | |
|---|---|---|---|
| _list list / elements=string | success | A list of dictionaries with keys and value from the queue. | |
| content_type string | success | The content_type on the message in the queue. | |
| delivery_mode string | success | The delivery_mode on the message in the queue. | |
| delivery_tag string | success | The delivery_tag on the message in the queue. | |
| exchange string | success | The exchange the message came from. | |
| headers dictionary | success | The headers for the message returned from the queue. | |
| json dictionary | success | If application/json is specified in content_type, json will be loaded into variables. | |
| message_count string | success | The message_count for the message on the queue. | |
| msg string | success | The content of the message. | |
| redelivered boolean | success | The redelivered flag. True if the message has been delivered before. | |
| routing_key string | success | The routing_key on the message in the queue. | |
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/rabbitmq/rabbitmq_lookup.html