{% extends "admin/base_site.html" %} {% block breadcrumbs %}{% endblock %} {% block content_title %}

cache status ({{ time }})

{% endblock %} {% block content %} {% for stats in all_stats %}

{{ stats.host }}

{% if stats.connected %}
        pid                   {{ stats.pid }}
        uptime                {{ stats.uptime }}
        time                  {{ stats.time }}
        version               {{ stats.version }}
        rusage_user           {{ stats.rusage_user }}
        rusage_system         {{ stats.rusage_system }}
        curr_items            {{ stats.curr_items }}
        total_items           {{ stats.total_items }}
        bytes                 {{ stats.bytes }}
        curr_connections      {{ stats.curr_connections }}
        total_connections     {{ stats.total_connections }}
        connection_structures {{ stats.connection_structures }}
        cmd_get               {{ stats.cmd_get }}
        cmd_set               {{ stats.cmd_set }}
        get_hits              {{ stats.get_hits }}
        get_misses            {{ stats.get_misses }}
        evictions             {{ stats.evictions }}
        bytes_read            {{ stats.bytes_read }}
        bytes_written         {{ stats.bytes_written }}
        limit_maxbytes        {{ stats.limit_maxbytes }}
        
{% else %}
connection not available
{% endif %} {% endfor %} {% endblock %}