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

Fossa

Execution engine for Aye-Aye ETL models

Node info

{%for key,value in node_info.items()%} {%endfor%}
{{key}} {{value}}

Running Tasks

{%if running_tasks %} {%for t in running_tasks%} {%endfor%}
Task Id Status Started Model class Method
{{t.task_id}} {{t.status}} {{t.started}} {{t.model_class}} {{t.method}}
{%else%}

There aren't currently any running tasks.

{%endif%}

Recently Completed Tasks

{%if recent_completed_tasks %} {%for t in recent_completed_tasks%} {%endfor%}
Task Id Status Started Finished Model class Method
{{t.task_id}} {{t.status}} {{t.started}} {{t.finished}} {{t.model_class}} {{t.method}}
{%else%}

This Fossa node hasn't run any tasks since it started.

{%endif%} {% endblock %}