ARA Records Ansible and makes it easier to understand and troubleshoot. https://ara.recordsansible.org
Find a file
2026-01-05 19:27:06 -05:00
.forgejo ci: add a job label to ansible-integration and containers 2026-01-05 19:27:06 -05:00
.github/ISSUE_TEMPLATE Simplify github issue templates 2020-08-18 18:32:32 -04:00
ara ui: Make the playbook path and name searchable 2025-12-14 16:30:26 +01:00
contrib ci: Add python3-build and gcc to the forgejo-runner image 2025-12-31 15:07:11 -05:00
doc docs: Add release notes for 1.7.4 2025-12-14 01:03:50 -05:00
tests feature: Bubble up deprecations, exceptions and warnings 2025-12-10 19:52:46 +01:00
.black.toml Rename pyproject.toml to .black.toml to address pep517 2019-04-24 21:17:34 -04:00
.editorconfig 💥 first commit 2018-03-29 12:36:14 -04:00
.gitignore tests: Add an example script with ansible-runner 2022-03-21 13:59:02 -04:00
.gitreview Switch default branch from feature/1.0 to master 2019-06-04 20:33:00 -04:00
.readthedocs.yaml docs: make readthedocs use ubuntu 22.04 2024-06-12 10:13:08 -04:00
CONTRIBUTING.md Misc & docs: s/github.com/codeberg.org/ and describe CI 2025-07-21 23:06:40 -04:00
LICENSE 💥 first commit 2018-03-29 12:36:14 -04:00
manage.py misc: Update license headers, use short gplv3 notice instead 2022-05-28 18:17:26 -04:00
MANIFEST.in packaging: exclude .forgejo and .readthedocs.yaml 2025-08-21 20:19:46 -04:00
README.md docs: update readthedocs.io URLs to docs.ansible.com equivalents 2025-12-09 00:58:02 +01:00
requirements.txt CLI: Port "ara playbook list" command from ara 0.x 2020-07-15 22:10:00 -04:00
setup.cfg requirements: tune tzdata/zoneinfo for py3.8 support 2025-08-16 15:46:02 -04:00
setup.py setup.py: Declare the readme as markdown 2022-10-10 16:35:55 -04:00
test-requirements.txt Linter improvements (#424) 2022-09-12 09:07:57 -04:00
tox.ini tox: pipe user and controller name environment variables down 2025-11-30 16:21:06 -05:00

ARA Records Ansible

ARA Records Ansible and makes it easier to understand and troubleshoot.

logo

It is another recursive acronym with a focus on simplicity.

About ara

ara provides Ansible reporting by recording ansible and ansible-playbook commands regardless of how and where they run:

  • from most Linux distributions and even on Mac OS (as long as python >= 3.8 is available)
  • from tools that run Ansible like ansible-(pull|test|runner|navigator), AWX & Automation Controller (Tower), Molecule and Semaphore
  • from a terminal, a script or by hand
  • from a laptop, desktop, server, virtual machine, container or execution environment
  • from CI/CD platforms such as Jenkins, Rundeck and Zuul
  • from git forges like GitHub, GitLab, Gitea & Forgejo

The recorded results are available via an included CLI, a REST API as well as a self-hosted, local-first web reporting interface.

A recorded demo of the web interface is included in the documentation.

How it works

ARA Records Ansible results to SQLite, MySQL and PostgreSQL databases with a standard callback plugin.

This plugin gathers data as Ansible runs and sends it to a Django REST API server:

recording-workflow

Requirements

  • Any recent Linux distribution or Mac OS with python >=3.8 available
  • The ara package (containing the Ansible plugins) must be installed for the same python interpreter as Ansible itself

Getting started

For production use, consider learning about best practices, enabling authentication and ignoring what doesn't need to be recorded.

Recording playbooks without an API server

ara records to a local sqlite database by default and does not require a persistent server:

# Install ansible (or ansible-core) with ara (including API server dependencies)
python3 -m pip install --user ansible "ara[server]"

# Configure Ansible to enable ara
export ANSIBLE_CALLBACK_PLUGINS="$(python3 -m ara.setup.callback_plugins)"

# Run an Ansible playbook as usual
ansible-playbook playbook.yml

# Check out the CLI
ara playbook list
ara host list

# or the UI at http://127.0.0.1:8000
ara-manage runserver

getting-started

Recording playbooks with an API server

The server includes a REST API as well a web reporting interface.

Consider running one to aggregate playbook runs from different tools, jobs or servers into a single dashboard that can be shared with friends.

Get started with the ara_api role or with the container images published by the project on DockerHub and quay.io:

# Create a directory for a volume to store settings and a sqlite database
mkdir -p ~/.ara/server

# Start an API server with docker from the image on DockerHub:
docker run --name ara-api --detach --tty \
  --volume ~/.ara/server:/opt/ara -p 8000:8000 \
  docker.io/recordsansible/ara-api:latest

# or with podman from the image on quay.io:
podman run --name ara-api --detach --tty \
  --volume ~/.ara/server:/opt/ara -p 8000:8000 \
  quay.io/recordsansible/ara-api:latest

Once the server is running, ara must be installed and configured to send data to it:

# Install ansible (or ansible-core) with ara (excluding API server dependencies)
python3 -m pip install --user ansible ara

# Configure Ansible to enable ara
export ANSIBLE_CALLBACK_PLUGINS="$(python3 -m ara.setup.callback_plugins)"

# Set up the ara callback to know where the API server is located
export ARA_API_CLIENT="http"
export ARA_API_SERVER="http://127.0.0.1:8000"

# Run an Ansible playbook as usual
ansible-playbook playbook.yml

# Check out the CLI
ara playbook list
ara host list

# Or browse http://127.0.0.1:8000 (running from the container)

Live demo

A live demo is deployed with the ara Ansible collection from Ansible Galaxy.

It is available at https://demo.recordsansible.org.

Documentation and changelog

Documentation for installing, configuring, running and using ara is available on ara.readthedocs.io.

Common issues may be resolved by reading the troubleshooting guide.

Changelog and release notes are available within the repository's git tags as well as the documentation.

Community and getting help

Contributing

Contributions to the project are welcome and appreciated !

Get started with the contributor's documentation.

Authors

Code contributions to the project can be viewed from the git log or on Codeberg.

The ara parrot logo was designed and contributed by Jason E. Rist.

Copyright (c) 2025 The ARA Records Ansible authors

ARA Records Ansible is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

ARA Records Ansible is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with ARA Records Ansible.  If not, see <http://www.gnu.org/licenses/>.