{% extends "base.html" %} {% block content %}

Redis debug

{% for key, value in channel %} {% endfor %} {% for key, value in users %} {% endfor %} {% for key, value in sessions %} {% endfor %} {% for key, value in locks %} {% endfor %} {% for key, value in killlocks %} {% endfor %}
sputnik:client_id {{ client_id }}
sputnik:channels
    {% for chan in sputnikchannels %}
  • {{ chan }}
  • {% endfor %}
Clients in channels
{{ key }}
    {% for a in value %}
  • {{ a }}
  • {% endfor %}
Users in channels
{{ key }}
    {% for a in value %}
  • {{ a }}
  • {% endfor %}
Sessions
{{ key }}
username {{ value.username }}
last_access {{ value.last_access }} ( {{ value.access_since }} seconds ago)
channels
    {% for cl in value.channels %}
  • {{cl}}
  • {% endfor %}
Locks
{{ key }} {{ value }}
Kill locks
{{ key }} {{ value }}
{% endblock %}