{% extends "base.html" %}{% block content %}

Dashboard

Database {{ '%.1f'|format(status.db_bytes / 1048576) }} MB ยท Open incidents {{ status.open_incidents }}

Monitors

{% for tile in tiles %}

{{ tile.name }}

{{ tile.label }}

{{ tile.description }}

{% if tile.incident_count %}

{{ tile.incident_count }} live incident{{ '' if tile.incident_count == 1 else 's' }}{% if tile.max_severity is not none %}; highest {{ severity_name(tile.max_severity) }}{% endif %}

{% endif %}{% for profile in tile.trends %}View {{ profile.title }}{% endfor %}
{% else %}

No monitors configured.

{% endfor %}
{% if config_errors %}

Configuration errors

{% endif %}

Open incidents

{% include "incident_rows.html" %}{% endblock %}