ovirt.ovirt.ovirt_event_info – This module can be used to retrieve information about one or more oVirt/RHV events¶
Note
This plugin is part of the ovirt.ovirt collection (version 1.3.0).
To install it use: ansible-galaxy collection install ovirt.ovirt
.
To use it in a playbook, specify: ovirt.ovirt.ovirt_event_info
.
New in version 1.0.0: of ovirt.ovirt
Synopsis¶
Retrieve information about one or more oVirt/RHV events.
This module was called
ovirt_event_facts
before Ansible 2.9, returningansible_facts
. Note that the ovirt.ovirt.ovirt_event_info module no longer returnsansible_facts
!
Requirements¶
The below requirements are needed on the host that executes this module.
python >= 2.7
ovirt-engine-sdk-python >= 4.4.0
Parameters¶
Notes¶
Note
In order to use this module you have to install oVirt Python SDK. To ensure it’s installed with correct version you can create the following task: pip: name=ovirt-engine-sdk-python version=4.4.0
Examples¶
# Examples don't contain the auth parameter for simplicity,
# look at the ovirt_auth module to see how to reuse authentication.
- name: Return all events
ovirt.ovirt.ovirt_event_info:
register: result
- name: Return the last 10 events
ovirt.ovirt.ovirt_event_info:
max: 10
register: result
- name: Return all events of type alert
ovirt.ovirt.ovirt_event_info:
search: "severity=alert"
register: result
- ansible.builtin.debug:
msg: "{{ result.ovirt_events }}"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Chris Keller (@nasx)