{% extends 'main_header.html' %} {% block body %}
{% import 'block_enable_auto_refresh.html' as block_enable_refresh %} {{ block_enable_refresh.enable_auto_refresh() }}
{%- for row in details.managed_entries -%} {%- set tr_class = '' -%} {%- if row.is_on != row.is_alive -%} {%- set tr_class = 'state_inconsistent' -%} {%- elif not row.is_alive -%} {%- set tr_class = 'state_inactive' -%} {%- endif -%} {%- endfor -%}
Trigger On/Alive Process Name Trigger Frequency Next Run In Next Time Period
{% set value = "{ process_name: '" + row.process_name + "', timeperiod: 'NA' }" %} {{ row.is_on }} / {{ row.is_alive }} {{ row.process_name }}
{{ row.next_run_in }} {{ row.next_timeperiod }}
{% set nonEmptyQ = [] %} {%- for process_name, q in details.reprocess_uows.items() -%} {%- if q.queue|length != 0 -%} {%- if nonEmptyQ.append('A') -%}{%- endif -%} {%- endif -%} {%- endfor -%} {%- if nonEmptyQ|length == 0 -%} {%- endif -%}
Process Name Units Of Work
{{ process_name }} {%- for priority_entry in q.queue -%} {{ priority_entry.entry.timeperiod }} {%- if not loop.last -%} {{ ", " }} {%- endif -%} {%- endfor -%}
Empty Empty
Build Version Uptime Resident Memory Virtual Memory % CPU Core Load Available Physical Memory Available Virtual Memory
{{ scheduler_version() }} {{ scheduler_uptime() }} {{ details.footprint.memory_rss }} {{ details.footprint.memory_vms }} {{ details.footprint.cpu_utilization }} {{ details.footprint.mem_virtual_free }} {{ details.footprint.mem_swap_free }}
{% import 'block_context_menu.html' as context_menu %} {{ context_menu.trigger_menu(false) }} {% endblock %}