Live state
{% if not snapshot or not snapshot_fresh %}
No data — server is not currently reporting.
{% else %}
{{ snapshot.players }}/{{ snapshot.max_players }}
{% if snapshot.hibernating %}· idle{% endif %}
· {{ snapshot.map }}
polled {{ ((now - snapshot.last_seen_at).total_seconds() | int) }}s ago
{% endif %}
{% if current_players %}
Current players
{% for session, profile in current_players %}
-
{% if profile and profile.avatar_url %}
{% else %}
{% endif %}
{{ (profile and profile.persona_name) or session.name_at_join }}
joined {{ ((now - session.joined_at).total_seconds() // 60) | int }}m ago
· ping {{ session.min_ping }}-{{ session.max_ping }}ms
{% endfor %}
{% endif %}
{% if recent_players %}
Recent players
{% for row in recent_players %}
-
{% if row.avatar_url %}
{% else %}
{% endif %}
{{ row.persona_name or row.name_at_join }}
last seen {{ ((now - row.last_seen).total_seconds() // 60) | int }}m ago
{% endfor %}
{% endif %}