{% extends "base.html" %} {% block content %}
{{ h.host }}:{{ h.port }}
| Host | Pool Size | Used | Free | Hit Ratio | Health |
|---|---|---|---|---|---|
| {{ h.label }} | {{ h.buffer_pool.pool_size_gb }} GB | {{ h.buffer_pool.used_gb or 0 }} GB ({{ h.buffer_pool.used_percent or 0 }}%) | {{ h.buffer_pool.free_gb or 0 }} GB ({{ h.buffer_pool.free_percent or 0 }}%) | {% if h.buffer_pool.hit_ratio is not none %} {{ h.buffer_pool.hit_ratio }}% {% else %} — {% endif %} | {% if h.buffer_pool.health == 'healthy' %} Good {% elif h.buffer_pool.health == 'warning' %} Warning {% elif h.buffer_pool.health == 'critical' %} Critical {% else %} — {% endif %} |