{% extends "wagtailadmin/base.html" %} {% block titletag %}Monitoramento do Portal{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Monitoramento do Portal

{% if errors %} {{ errors }} erro{% if errors != 1 %}s{% endif %} {% endif %} {% if warnings %} {{ warnings }} aviso{% if warnings != 1 %}s{% endif %} {% endif %} {% if not errors and not warnings %} Tudo OK {% endif %}
{% csrf_token %}
{% for item in checks_display %}
{{ item.label }} {% if item.log %} {{ item.log.get_status_display }} {% else %} Não executado {% endif %}
{% if item.log %}{{ item.log.message }}{% else %}—{% endif %}
{% if item.log %} {{ item.log.created_at|date:"d/m/Y H:i" }} • {{ item.log.response_time_ms }}ms {% endif %}
{% if item.log and item.log.details %} {% else %} {% endif %}
{% endfor %}

Histórico recente

{% for log in historico %} {% empty %} {% endfor %}
Check Status Mensagem Tempo Executado em Por
{{ log.get_check_type_display }} {{ log.get_status_display }} {{ log.message }} {{ log.response_time_ms }}ms {{ log.created_at|date:"d/m/Y H:i:s" }} {{ log.run_by|default:"Sistema" }} {% if log.details %} {% endif %}
Nenhum check foi executado ainda. Clique em "Rodar todos os checks".
{% endblock %} {% block extra_js %} {% endblock %}