Ansible Pilot

Ansible ansible.builtin.tree Callback Saving Host Events to Files

Unveiling the Power of ansible.builtin.tree Callback: Enhanced Visibility and Control in Ansible Automation

December 10, 2023
Access the Complete Video Course and Learn Quick Ansible by 200+ Practical Lessons

Introduction

Ansible, an open-source automation tool, is renowned for its ability to streamline IT tasks and configuration management. One of Ansible’s powerful features is its extensible callback system, which allows users to capture and handle events triggered during playbook execution. In this article, we’ll delve into the ansible.builtin.tree callback, introduced in Ansible-core version 2.11, and explore how it can be utilized to save host events to files.

Understanding the Callback Parameters

directory Parameter

The directory parameter is a crucial component of the ansible.builtin.tree callback. It specifies the path to the directory where per-host JSON files will be saved. When using ad-hoc commands, this directory can be set using the --tree option. The default directory is “~/.ansible/tree.”

Let’s break down the relevant details:

Practical Example

To illustrate the usage of the ansible.builtin.tree callback, consider the following example playbook and configuration:

Inventory (inventory)

localhost ansible_connection=local

The Best Resources For Ansible

Certifications

Video Course

Printed Book

eBooks

Playbook (ping.yml)

---
- name: Ping module demo
  hosts: all
  tasks:
    - name: Test connection
      ansible.builtin.ping:

Ansible Configuration (ansible.cfg)

[defaults]
callbacks_enabled=ansible.builtin.tree

[callback_tree]
directory = ~/.ansible/tree

In this example:

Execution

When the playbook is executed, the ansible.builtin.tree callback will save host events to per-host JSON files in the specified directory (~/.ansible/tree in this case). This information can be invaluable for troubleshooting, auditing, and reviewing the execution flow of Ansible playbooks.

By utilizing this callback, users can gain insights into the details of each host’s execution, providing a structured and organized way to capture events during playbook runs.

cat ~/.ansible/tree/localhost    
{"changed": false, "ping": "pong"}

Conclusion

In conclusion, the ansible.builtin.tree callback is a powerful tool for saving host events to files, enhancing Ansible’s capabilities for logging and analysis. Users can leverage this feature to improve the transparency and traceability of their automation workflows. As Ansible continues to evolve, exploring and understanding such features becomes essential for mastering the tool’s capabilities.

Subscribe to the YouTube channel, Medium, and Website, X (formerly Twitter) to not miss the next episode of the Ansible Pilot.

Academy

Learn the Ansible automation technology with some real-life examples in my

My book Ansible By Examples: 200+ Automation Examples For Linux and Windows System Administrator and DevOps

BUY the Complete PDF BOOK to easily Copy and Paste the 250+ Ansible code

Want to keep this project going? Please donate

Access the Complete Video Course and Learn Quick Ansible by 200+ Practical Lessons
Follow me

Subscribe not to miss any new releases