{% extends "admin/base_site.html" %} {% load i18n memcache_admin %} {% if not is_popup %} {% block breadcrumbs %} {% endblock %} {% endif %} {% block extrastyle %} {% endblock %} {% block content %}

{% trans 'Server' %}

{% trans 'Version' %} {{ cache_stats.version }}
{% trans 'Libevent Version' %} {{ cache_stats.libevent }}
{% trans 'Time' %} {{ cache_stats.time|datetimestamp }}
{% trans 'Process ID' %} {{ cache_stats.pid }}
{% trans 'Threads' %} {{ cache_stats.threads }}
{% trans 'Uptime' %} {{ cache_stats.uptime|timestamp }}
{% trans 'User Time' %} {{ cache_stats.rusage_user }}
{% trans 'System Time' %} {{ cache_stats.rusage_system }}
{% trans 'Auth Commands' %} {{ cache_stats.auth_cmds }}
{% trans 'Auth Errors' %} {{ cache_stats.auth_errors }}
{% trans 'Pointer Size' %} {{ cache_stats.pointer_size }}
{% trans 'Reserved FDS' %} {{ cache_stats.reserved_fds }}

{% trans 'Connections' %}

{% trans 'Accepting Connections' %} {{ cache_stats.accepting_conns|yes_no }}
{% trans 'Current Connections' %} {{ cache_stats.curr_connections }}
{% trans 'Total Connections' %} {{ cache_stats.total_connections }}
{% trans 'Connection Yields' %} {{ cache_stats.conn_yields }}
{% trans 'Connection Structures' %} {{ cache_stats.connection_structures }}

{% trans 'Data' %}

{% trans 'Size' %} {{ cache_stats.limit_maxbytes|human_bytes }}
{% trans 'Used' %} {{ cache_stats.bytes|human_bytes }} — {{ cache_stats.bytes_percent }}%
{% trans 'Read (input)' %} {{ cache_stats.bytes_read|human_bytes }}
{% trans 'Written (output)' %} {{ cache_stats.bytes_written|human_bytes }}
{% trans 'Current Items' %} {{ cache_stats.curr_items }}
{% trans 'Total Items' %} {{ cache_stats.total_items }}
{% trans 'Set Commands' %} {{ cache_stats.cmd_set }}
{% trans 'Hash Bytes' %} {{ cache_stats.hash_bytes }}
{% trans 'Hash Power Level' %} {{ cache_stats.hash_power_level }}
{% trans 'Hash Expanding' %} {{ cache_stats.hash_is_expanding|yes_no }}
{% trans 'Evictions' %} {{ cache_stats.evictions }}
{% trans 'Evicted Unfetched' %} {{ cache_stats.evicted_unfetched }}
{% trans 'Reclaimed' %} {{ cache_stats.reclaimed }}
{% trans 'Expired Unfetched' %} {{ cache_stats.expired_unfetched }}
{% trans 'Flush Commands' %} {{ cache_stats.cmd_flush }}

{% trans 'Get' %}

{% trans 'Commands' %} {{ cache_stats.cmd_get }}
{% trans 'Hits' %} {{ cache_stats.get_hits }} — {{ cache_stats.get_hit_rate }}%
{% trans 'Misses' %} {{ cache_stats.get_misses }} — {{ cache_stats.get_miss_rate }}%

{% trans 'CAS' %}

{% trans 'Hits' %} {{ cache_stats.cas_hits }}
{% trans 'Misses' %} {{ cache_stats.cas_misses }}
{% trans 'Bad Values' %} {{ cache_stats.cas_badval }}

{% trans 'Delete' %}

{% trans 'Hits' %} {{ cache_stats.delete_hits }}
{% trans 'Misses' %} {{ cache_stats.delete_misses }}

{% trans 'Touch' %}

{% trans 'Hits' %} {{ cache_stats.touch_hits }}
{% trans 'Misses' %} {{ cache_stats.touch_misses }}

{% trans 'Increment' %}

{% trans 'Hits' %} {{ cache_stats.incr_hits }}
{% trans 'Misses' %} {{ cache_stats.incr_misses }}

{% trans 'Decrement' %}

{% trans 'Hits' %} {{ cache_stats.decr_hits }}
{% trans 'Misses' %} {{ cache_stats.decr_misses }}
{% endblock %}