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

{{ job.name or job.replication_group_id }}

{% if job.status.value == 'pending' %} Pending {% elif job.status.value == 'running' %} Running {% elif job.status.value == 'completed' %} Completed {% elif job.status.value == 'failed' %} Failed {% endif %}
{{ job.replication_group_id }}
{{ job.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
{{ job.duration_seconds|format_duration }} monitoring
{{ job.region }}
{% if job.status.value == 'completed' %} Analyze Query {% endif %} New Job
Commands captured
{% if job.error_message %}

Error

{{ job.error_message }}

{% endif %} {% if job.status.value == 'completed' and job.total_commands == 0 %}

No Commands Captured

The monitoring completed but no Redis commands were captured. This could mean:

  • The cache had no traffic during the monitoring period
  • You're monitoring replicas but traffic goes to primary only
  • Check server logs for connection/permission issues
{% endif %}
{{ job.total_commands|format_number }}
Total Commands
{{ shards|length }}
Shards Monitored
{{ shards|selectattr('shard.status.value', 'eq', 'completed')|list|length }}
Completed
{{ job.endpoint_type|title }}
Endpoint Type

Shards ({{ shards|length }})

{% if job.status.value == 'completed' and shards %}

Shard Distribution

Loading chart data...
Click legend to isolate Right-click to hide/show
{% endif %}
{% endblock %}