Zeitpunkt
{{ entry.created_at }}
Typ
{{ entry.log_type }}
Modul
{{ entry.module }}
Beschreibung
{{ entry.description }}
Status
{% if entry.status == 'ok' %}✓ OK
{% elif entry.status == 'error' %}✗ Fehler
{% elif entry.status == 'warning' %}⚠ Warnung
{% elif entry.status == 'running' %}● läuft
{% else %}{{ entry.status }}{% endif %}
{% if entry.mode %}
Modus
{{ entry.mode }}
{% endif %}
{% if entry.duration_fmt %}
Dauer
{{ entry.duration_fmt }}
{% endif %}
{% if entry.bytes_processed %}
Bytes
{{ entry.bytes_fmt }}
{% endif %}
{% if entry.items_count %}
Items
{{ entry.items_count }}
{% endif %}
{% if entry.finished_at %}
Beendet
{{ entry.finished_at }}
{% endif %}
{% if entry.error_message %}
Fehler-Code
{{ entry.error_code or '—' }}
Fehlermeldung
{{ entry.error_message }}
{% endif %}
{% if entry.error_traceback %}
Traceback
{{ entry.error_traceback }}
{% endif %}
{% if entry.metadata_dict %}
Metadaten
{% for k, v in entry.metadata_dict.items() %}
{{ k }}: {{ v }}
{% endfor %}
{% endif %}