{% extends 'admin/base.html.twig' %} {% block title %}System-Dashboard{% endblock %} {% block body %}

Systemübersicht

RAG Enterprise
{# ================= CHUNK VECTOR STATUS ================= #} {% if vectorHealth is defined %} {% set status = vectorHealth.status %} {% set badgeClass = status starts with 'OK' ? 'bg-success' : (status == 'INCONSISTENT_MISSING_VECTOR' ? 'bg-warning text-dark' : 'bg-danger') %} {% endif %}
Chunk-Vektor
{% if vectorHealth is defined %}

{{ vectorHealth.status }}

{% else %}
Keine Daten verfügbar.
{% endif %}
{# ================= TAG VECTOR STATUS ================= #} {% if tagVectorHealth is defined %} {% set tagStatus = tagVectorHealth.status %} {% set tagBadgeClass = tagStatus starts with 'OK' ? 'bg-success' : (tagStatus == 'INCONSISTENT_MISSING_VECTOR' ? 'bg-warning text-dark' : 'bg-danger') %} {% endif %}
Tag-Vektor
{% if tagVectorHealth is defined %}

{{ tagVectorHealth.status }}

{% else %}
Keine Daten verfügbar.
{% endif %}
{# ================= KNOWLEDGE CAPACITY ================= #} {% set percent = chunkLimit > 0 ? (chunkCount / chunkLimit * 100)|round(1) : 0 %}
Wissenskapazität

{{ chunkCount|number_format(0, ',', '.') }} / {{ chunkLimit|number_format(0, ',', '.') }}

{{ percent }} % ausgelastet
{# ================= GOVERNANCE ================= #}
System-Governance
Benutzer
{{ app.user.userIdentifier }}
Rollen
{{ app.user.roles|join(', ') }}
{% if vectorHealth is defined %}
Chunk-Vektor-Details
NDJSON-Chunks
{{ vectorHealth.ndjson_chunk_count|number_format(0, ',', '.') }}
Vektor-Index-Chunks
{{ vectorHealth.vector_chunk_count|number_format(0, ',', '.') }}
{% endif %} {% if tagVectorHealth is defined %}
Tag-Vektor-Details
NDJSON-Tags
{{ tagVectorHealth.tags_ndjson_count|number_format(0, ',', '.') }}
Vektor-Index-Tags
{{ tagVectorHealth.vector_tag_count|number_format(0, ',', '.') }}
{% endif %}
Indexierung (Ingest Jobs)
Erstellt den kompletten Wissensindex neu. Kann je nach Datenmenge mehrere Minuten dauern.
{% if is_granted('ROLE_SUPER_ADMIN') %}
Kritische Systemoperationen
Entfernt alle Dokumente, Versionen, Indizes und Jobs.
Nicht rückgängig zu machen.
{% endif %}
{% endblock %}