System Status

{% if overall_status.value == 'operational' %} All Systems Operational {% elif overall_status.value == 'degraded' %} Partial System Outage {% elif overall_status.value == 'down' %} Major System Outage {% else %} Status Unknown {% endif %}

{% if last_check %} Last updated: {{ last_check.strftime('%d.%m.%Y %H:%M:%S') }} {% else %} Checking services... {% endif %} • Auto-refresh every {{ check_interval }}s {% if grace_period_active %} 🚀 Startup ({{ grace_period_remaining }}s) {% elif fast_mode %} ⚡ Fast Mode {% endif %}

1 час 12 часов 24 часа
{% if ssl_status %}
SSL Certificate {% if ssl_status.days_until_expiry <= 0 %} Expired {% elif ssl_status.days_until_expiry <= 14 %} Expiring Soon {% else %} Valid {% endif %}
Domain
{{ ssl_status.domain }}
Issuer
{{ ssl_status.issuer }}
Days Left
{{ ssl_status.days_until_expiry }}
{% endif %}
{% for name, service in services.items() %} {% if service.status.value != 'unknown' or name != 'external' %}
{{ service.display_name }} {% if service.status.value == 'operational' %} Operational {% elif service.status.value == 'degraded' %} Degraded {% elif service.status.value == 'down' %} Down {% else %} Unknown {% endif %}
Latency
{% if service.latency_ms %} {{ "%.0f"|format(service.latency_ms) }} ms {% else %} — {% endif %}
Avg {{ period }}h
{% if service.avg_latency_24h %} {{ "%.0f"|format(service.avg_latency_24h) }} ms {% else %} — {% endif %}
Uptime {{ period }}h
{{ "%.1f"|format(service.uptime_percent) }}%
{% if service.version %}
Version
{{ service.version }}
{% endif %}
{% if service.latency_history and service.latency_history|length > 1 %}
{% endif %} {% if service.message %}
{{ service.message }}
{% endif %}
{% endif %} {% endfor %}

Recent Incidents

{% if incidents and incidents|length > 0 %} {% for incident in incidents %}
{{ incident.service_name | title }}
{{ incident.message or 'Service unavailable' }}
{{ incident.started_at[:16].replace('T', ' ') }} {% if incident.resolved_at %} - Resolved {% else %} - Ongoing {% endif %}
{% endfor %} {% else %}
No recent incidents
{% endif %}