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

Orchestrator Monitor

Orchestrator Type

{{ orchestrator_info.type }}

Configuration
Blocking Control {{ 'Enabled' if orchestrator_info.blocking_control_enabled else 'Disabled' }}
Auto Purge (hours) {{ orchestrator_info.auto_purge_hours }}
Recovery & Atomic Services
Atomic Svc Interval {{ recovery_info.atomic_service_interval }}m
Spread Margin {{ recovery_info.atomic_service_spread_margin }}m
Check Interval {{ recovery_info.atomic_service_check_interval }}m
Recover Pending {{ recovery_info.recover_pending_human }} {{ recovery_info.recover_pending_cron }}
Max Pending {{ recovery_info.max_pending_seconds }}s
Recover Running {{ recovery_info.recover_running_human }} {{ recovery_info.recover_running_cron }}
Runner Dead After {{ recovery_info.runner_dead_after_minutes }}m
{% include "orchestrator/partials/stats.html" %}
Active Runners
View All
Total Active {{ total_runners }}
{% if active_runners %}

Recent Runners:

{% for runner in active_runners[:3] %}
{{ runner.runner_id[:30] }}...
{% endfor %} {% if total_runners > 3 %}

...and {{ total_runners - 3 }} more

{% endif %}
{% else %}

No active runners

{% endif %}
{% endblock %}