{% extends 'base.html.twig' %} {% block title %}Server Logs{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block content %}

Server Logs SCUM Server Monitoring

{{ stats.total }}
Gesamt Logs
{{ stats.recent }}
Letzte Stunde
{{ stats.types|length }}
Log-Typen
{{ stats.players|length }}
Aktive Spieler
{{ stats.files|length }}
Log-Dateien
{{ stats.actions|length }}
Aktionen
{{ onlinePlayers|length }} aktuell online
{% if onlinePlayers is not empty %}
{% for player in onlinePlayers %} {% endfor %}
Spielername SteamID Login-Zeit IP Koordinaten
{{ player.playerName ?: '-' }} {{ player.steamId }} {{ player.lastLogin ? player.lastLogin|date('d.m.Y H:i:s') : '-' }} {{ player.ip ?: '-' }} {% if player.coordinates %} X: {{ player.coordinates.x|default('-') }}, Y: {{ player.coordinates.y|default('-') }}{% if player.coordinates.z is not null %}, Z: {{ player.coordinates.z|default('-') }}{% endif %} {% else %}-{% endif %}
{% else %}
Zurzeit ist kein Spieler online.
{% endif %}
Server Logs {{ totalLogs }} Einträge
{% if logs is empty %}

Keine Logs gefunden

Versuche andere Filter-Einstellungen oder führe den Log-Fetch-Command aus.

Alle Logs anzeigen
{% else %} {% for log in logs %}
{{ log.timestamp|date('d.m.Y H:i:s') }} {{ log.logType }} {% if log.action %} {{ log.action }} {% endif %} {% if log.playerName %} {{ log.playerName }} {% endif %} {% if log.steamId %} {{ log.steamId }} {% endif %}
{{ log.filename }}
{{ log.logMessage }}
{% if log.metadata and log.metadata.coordinates is defined and log.metadata.coordinates %} {{ log.metadata.coordinates.x|round(2) }}, {{ log.metadata.coordinates.y|round(2) }}, {{ log.metadata.coordinates.z|round(2) }} {% endif %}
{% endfor %} {% if totalPages > 1 %} {% endif %} {% endif %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}