{% extends "base.html" %} {% block title %}Execution Failure Reports — Server Monitoring{% endblock %} {% block page_title %}Execution Failure Reports{% endblock %} {% block content %}

Saved records of failed or unreachable hosts from completed playbook executions.

{{ reports | length }} report(s)
{% if reports %}
{% for report in reports %}
{{ report.playbook_name }} Execution {{ report.execution_id[:8] }}…
{% if report.failed_count > 0 %} {{ report.failed_count }} failed {% endif %} {% if report.unreachable_count > 0 %} {{ report.unreachable_count }} unreachable {% endif %} {{ report.saved_at[:19].replace('T',' ') }}
{% if report.note %}
{{ report.note }}
{% endif %}
{% for host in report.failed_hosts %} {% endfor %}
Hostname Status Reason
{{ host.hostname }} {% if host.status == 'unreachable' %} unreachable {% else %} failed {% endif %} {{ host.reason }}
{% endfor %}
{% else %}

No failure reports saved yet.
Use the Save Report button in the execution popup when a playbook has failed or unreachable hosts.

{% endif %}
{% endblock %}