{% extends "base_user.jinja2" %} {% block title %}Inspect execution {{ e.name }}{% endblock %} {% block custom_head %} {% endblock %} {% block content %}

Detailed information for execution {{ e.name }} ({{ e.id }})

{% if e.status == 'error' %}

Error message: {{ e.error_message }}

{% endif %}

Endpoints

{% if endpoints|length > 0 %} {% else %} {% if e.status == "running" %}

This execution does not have any active endpoint

{% elif e.status == "submitted" or e.status == "starting" or e.status == "scheduled" %}

Please wait, the execution is starting up. This page will refresh automatically.

{% else %}

No endpoints are available

{% endif %} {% endif %}
{% if services_info|length > 0 %}

Services:

{% endif %} {% for s in services_info %} {% if s['status'] != 'created' %} {% else %} {% endif %} {% endfor %}
ID Name Zoe status Backend status Host Labels Output logs Errors
{{ s['id'] }} {{ s['name'] }} {{ s['status'] }} {{ s['backend_status'] }} {{ s['backend_host'] }} {% for l in s['labels'] %}{{ l }} {% endfor %}open{{ s['error_message'] }}
{% if e.status != 'terminated' %} {% endif %} {% endblock %}