{% extends "redissentry/base.html" %} {% load adminmedia admin_list i18n %} {% block breadcrumb %}Counters{% endblock %} {% block content %}

RedisSentry Counters

IP Counters

{% if countersA %}
{% for ip, n, ttl in countersA %} {% endfor %}
IP address# failed attemptsTime leftAction
{{ ip }} {{ n }} {{ ttl }} remove
{% else %}

– empty –

{% endif %}

Username Counters

{% if countersB %}
{% for username, v, ttl in countersB %} {% endfor %}
Username# of failed attempts per IPTime leftAction
{{ username }} {% for ip, n in v %}{{ ip }}: {{ n }}
{% endfor %}
{{ ttl }} remove
{% else %}

– empty –

{% endif %}

IP Block Violation Counters

{% if countersAZ %}
{% for ip, n, ttl in countersAZ %} {% endfor %}
IP address# of failed attemptsTime leftAction
{{ ip }} {{ n }} {{ ttl }} remove
{% else %}

– empty –

{% endif %}

Username Block Violation Counters

{% if countersBZ %}
{% for username, n, ttl in countersBZ %} {% endfor %}
Username# of failed attemptsTime leftAction
{{ username }} {{ n }} {{ ttl }} remove
{% else %}

– empty –

{% endif %}
{% endblock %}