uptime.monitor

services · {{ services|length }} watched

{% for s in services %}
{{ s.name }} {% if s.is_dependency %} dependency {{ s.kind }} {% else %} service {% endif %}
{{ s.target }}
{{ 'operational' if s.is_up else 'down' }}
uptime (24h)
{{ s.uptime_pct }}%
response time (1h)
{% if s.multi_region %}
by region · {{ s.regions|length }} reporting
{% for r in s.regions %}
{{ r.region }} {{ 'up' if r.is_up else 'down' }} {{ r.uptime_pct }}%
{% endfor %}
{% endif %}
{% endfor %}

incident history

{% if incidents|length == 0 %}
No incidents recorded yet. All quiet.
{% else %} {% if show_regions %}{% endif %} {% for inc in incidents %} {% if show_regions %}{% endif %} {% endfor %}
ServiceRegionStarted Duration Status
{{ inc.service_name }}{{ inc.region }}{{ inc.started_at }} {{ inc.duration_min }} min {{ 'resolved' if inc.resolved else 'ongoing' }}
{% endif %}