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

SQL Query

Run custom SQL queries on captured Redis/Valkey commands

Overview Timeline Shards Analyze SQL
Share this page with current job selection

Select a job from the dropdown above to run queries. Each job has its own database.

Quick Queries

Click to run instantly
Tables: redis_commands key_size_cache

Drag bottom-right corner to resize

Only SELECT queries • Ctrl+Enter run • Shift+Alt+F format

{% if error %}

Query Error

{{ error }}

{% endif %} {% if results is not none %}

Results

{{ results|length }} rows
{% if results %}
{% for col in columns %} {% endfor %} {% for row in results %} {% for col in columns %} {% endfor %} {% endfor %}
{{ col }}
{% if row[col] is none %} NULL {% else %} {{ row[col] }} {% endif %}
{% else %}
Query returned no results
{% endif %}
{% endif %}
{% endblock %}