{% extends "base.html" %}
{% set active_page = 'dashboard' %}
{% block body %}
Scheduler Summary
Item |
Value |
Count |
{{ scheduler_summary['count'] }} |
CPU Info |
Usage: {{ '%0.2f' % scheduler_summary['cpu_used'] }}
Total: {{ scheduler_summary['cpu_total'] }} |
Memory Info |
Usage: {{ scheduler_summary['memory_used'] | readable_size }}
Total: {{ scheduler_summary['memory_total'] | readable_size }} |
Git Branches |
{{ scheduler_summary['git_branches'] | join('\n') }} |
Worker Summary
Item |
Value |
Count |
{{ worker_summary['count'] }} |
CPU Info |
Usage: {{ '%0.2f' % worker_summary['cpu_used'] }}
Total: {{ worker_summary['cpu_total'] }} |
Memory Info |
Usage: {{ worker_summary['memory_used'] | readable_size }}
Total: {{ worker_summary['memory_total'] | readable_size }} |
Git Branches |
{{ worker_summary['git_branches'] | join('\n') }} |
{% endblock %}