{% extends "admin/index.html" %} {% load redis_status_tags %} {% load i18n %} {% block extrahead %} {% endblock %} {% block content %} {% get_cache_stats %} {% if cache_stats and user.is_superuser %}
{# ----- Detailed Statistics ----- #} {% for k,v in cache_stats.items %} {% endfor %}
redis: {{ cache_stats.server }} - {{ cache_stats.used_memory }} bytes used
{% trans "Miss Ratio" %} {% widthratio cache_stats.keyspace_misses cache_stats.keyspace_hits 100 %}%
{% trans "Avg GET by item" %} {% widthratio cache_stats.keyspace_hits cache_stats.total_keys 1 %}
{% trans "Avg GET by seconds/minutes" %} {% widthratio cache_stats.keyspace_hits cache_stats.uptime_in_seconds 1 %}/{% widthratio cache_stats.keyspace_hits cache_stats.uptime_in_seconds 60 %}
{% trans "Detailed Statistics:" %}
{{ k|prettyname }}{{ v|prettyvalue:k }}
{% endif %} {{ block.super }} {% endblock %}