NeuroPulse Monitor Pro

👤 Connecté en tant que {{ user }}

Système opérationnel
Processeur
{{ config.alert_thresholds.cpu.critical if config and config.alert_thresholds and config.alert_thresholds.cpu else 90 }}% max
{{ "%.1f"|format(metrics.cpu) if metrics and metrics.cpu is defined else '0.0' }}%
{{ 'Critique' if metrics and metrics.cpu and metrics.cpu > 90 else ('Élevé' if metrics and metrics.cpu and metrics.cpu > 70 else 'Normal') }}
Mémoire
{{ config.alert_thresholds.ram.critical if config and config.alert_thresholds and config.alert_thresholds.ram else 95 }}% max
{{ "%.1f"|format(metrics.ram) if metrics and metrics.ram is defined else '0.0' }}%
{{ 'Critique' if metrics and metrics.ram and metrics.ram > 95 else ('Élevé' if metrics and metrics.ram and metrics.ram > 80 else 'Normal') }}
Stockage
{{ config.alert_thresholds.disk.critical if config and config.alert_thresholds and config.alert_thresholds.disk else 95 }}% max
{{ "%.1f"|format(metrics.disk) if metrics and metrics.disk is defined else '0.0' }}%
{{ 'Critique' if metrics and metrics.disk and metrics.disk > 95 else ('Élevé' if metrics and metrics.disk and metrics.disk > 85 else 'Normal') }}
Réseau
Trafic en temps réel
{% if metrics and metrics.network %}
↓ {{ "%.1f"|format(metrics.network.kb_in_per_sec or 0) }}
↑ {{ "%.1f"|format(metrics.network.kb_out_per_sec or 0) }}
KB/s {% else %} 0.0KB/s {% endif %}
Actif

📈 Métriques système (temps réel)

🥧 Répartition des ressources

⚙️ Services surveillés

Gérer →
    {% if metrics and metrics.services %} {% for service in metrics.services[:4] %}
  • {{ service.title or service.name }}
    Port {{ service.port or 'N/A' }} • {{ service.criticality or 'Moyenne' }}
    {{ 'Actif' if service.active else 'Inactif' }}
  • {% endfor %} {% else %}
  • Aucun service configuré
    Configurez des services dans les paramètres
    Config
  • {% endif %}

🎫 Tickets récents

Voir tout →
    {% if tickets %} {% for ticket in tickets %}
  • #{{ ticket[0] }} - {{ ticket[1] }}
    {{ ticket[4][:10] if ticket[4] else 'Date inconnue' }}
    {{ ticket[2] or 'medium' }}
    {{ ticket[3] or 'open' }}
  • {% endfor %} {% else %}
  • ✅ Aucun ticket ouvert
    Système fonctionne normalement
    OK
  • {% endif %}