Files
cosma-qc/app/templates/_monitor.html
Poulpe 654bb47825 monitor : temp GPU, conso watts, espace disque, heartbeat dispatcher
- nvidia-smi : +temperature.gpu + power.draw
- UI : tags °C / W / espace disque libre
- Dispatcher heartbeat toutes les 4s → point vert/rouge en haut du monitor
- Fix Docker SSH : copie + chmod 600 au démarrage (Bad owner)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-21 10:42:44 +00:00

46 lines
1.8 KiB
HTML

<div class="monitor-header">
<div class="dispatcher-status {% if dispatcher.alive %}alive{% else %}dead{% endif %}">
<span class="dot"></span>
dispatcher
{% if dispatcher.alive %}
<span class="muted">· il y a {{ dispatcher.age_s }}s</span>
{% elif dispatcher.age_s is not none %}
<span class="muted">· last seen {{ dispatcher.age_s }}s ago</span>
{% else %}
<span class="muted">· non démarré</span>
{% endif %}
</div>
</div>
<div class="worker-grid">
{% for w in workers %}
<div class="worker {% if not w.online %}offline{% endif %}">
<div class="hdr">
<b>{{ w.host }}</b>
<span class="gpu">{{ w.gpu }}</span>
<span class="state">{% if w.online %}online{% else %}offline{% endif %}</span>
</div>
{% if w.online %}
<div class="bar">
<span>VRAM</span>
<progress value="{{ w.vram_used_mib or 0 }}" max="{{ w.vram_total_mib or 1 }}"></progress>
<small>{{ w.vram_used_mib }} / {{ w.vram_total_mib }} MiB</small>
</div>
<div class="bar">
<span>GPU</span>
<progress value="{{ w.gpu_util_pct or 0 }}" max="100"></progress>
<small>{{ w.gpu_util_pct }}%</small>
</div>
<div class="worker-meta">
{% if w.gpu_temp_c is not none %}<span class="tag {% if w.gpu_temp_c > 80 %}warn{% endif %}">{{ w.gpu_temp_c }}°C</span>{% endif %}
{% if w.gpu_power_w is not none %}<span class="tag">{{ w.gpu_power_w }}W</span>{% endif %}
<span class="tag muted">/ {{ w.disk_avail }} dispo</span>
<span class="tag muted">{{ w.disk_used_pct }} utilisé</span>
</div>
{% else %}
<div class="err">{{ w.error or "unreachable" }}</div>
{% endif %}
</div>
{% endfor %}
</div>