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

Monitoring Jobs

All Redis monitoring sessions

New Job
Select at least 2 jobs to compare (max 4)
{% if jobs %}
{% for item in jobs %}
{% if item.job.status.value == 'completed' %}
{% else %}
{% endif %}
{% if item.job.status.value == 'pending' %} Pending {% elif item.job.status.value == 'running' %} Running {% elif item.job.status.value == 'completed' %} Completed {% elif item.job.status.value == 'failed' %} Failed {% endif %} {{ item.job.name or item.job.replication_group_id }}
{{ item.job.replication_group_id }}
{{ item.job.created_at.strftime('%Y-%m-%d %H:%M:%S') }}
{{ item.job.duration_seconds }}s duration
{% if item.job.error_message %}

{{ item.job.error_message[:150] }}{% if item.job.error_message|length > 150 %}...{% endif %}

{% endif %}
{{ item.job.total_commands|format_number }}
Commands
{{ item.shard_count }}
Shards
{% if item.completed_count > 0 %}
{{ item.completed_count }}
Completed
{% endif %} {% if item.failed_count > 0 %}
{{ item.failed_count }}
Failed
{% endif %}
View {% if item.job.status.value == 'completed' %} Analyze {% endif %}
{% endfor %}
{% else %}

No Jobs Yet

Start your first monitoring session to analyze Redis command traffic

Create First Job
{% endif %}

Re-run Job

Re-run with the same configuration.

Password is not stored and only used for this monitoring session

{% endblock %}