{% extends 'base.html' %} {% block body %} {% block header %} {% load static from staticfiles %}

Executions

{% endblock %} {% if error %}

There was an error: {{ error }}

{% endif %}
{% if summary %}
Total Actors Created (all) Total Current Actors (existing) Total Execution Runtime (all) Total Execution CPU (all) Total Execution IO (all) Total Number of Executions (all) Total Execution Runtime (existing) Total Execution CPU (existing) Total Execution IO (existing)
{{ summary.totalActorsAll }} {{ summary.totalActorsExisting }} {{ summary.totalExecutionRuntimeAll }} {{ summary.totalExecutionCpuAll }} {{ summary.totalExecutionIoAll }} {{ summary.totalExecutionsAll }} {{ summary.totalExecutionRuntimeExisting }} {{ summary.totalExecutionCpuExisting }} {{ summary.totalExecutionIoExisting }}
{% endif %}

{% if actors %}
{% for list in actors %} {% endfor %}
Actor ID Owner Image Total Execution Total Execution (CPU) Total Execution (IO) Total Execution (runtime)
{{ list.actorId }} {{ list.owner }} {{ list.image }} {{ list.totalExecutionCpu }} {{ list.totalExecutionRuntime }} {{ list.totalExecutionIo }} {{ list.totalExecutions }}
{% endif %} {% endblock %}