{% extends "layout.html" %} {% block title %}Batch Status{% endblock %} {% block content %}

Globals

instance ID: {{ instance_id }}
ready cores: {{ ready_cores_mcpu / 1000 }}

Instance Collections

Pools

{% for pool in pools %} {% endfor %}
Name Worker Type Pending Active Inactive Deleted Live Total Cores Live Free Cores
{{ pool.name }} {{ pool.worker_type }} {{ pool.n_instances_by_state['pending'] }} {{ pool.n_instances_by_state['active'] }} {{ pool.n_instances_by_state['inactive'] }} {{ pool.n_instances_by_state['deleted'] }} {{ pool.live_total_cores_mcpu / 1000 }} {{ pool.live_free_cores_mcpu / 1000 }}

Job Private Instance Manager

Name Pending Active Inactive Deleted Live Total Cores Live Free Cores
{{ jpim.name }} {{ jpim.n_instances_by_state['pending'] }} {{ jpim.n_instances_by_state['active'] }} {{ jpim.n_instances_by_state['inactive'] }} {{ jpim.n_instances_by_state['deleted'] }} {{ jpim.live_total_cores_mcpu / 1000 }} {{ jpim.live_free_cores_mcpu / 1000 }}

Instances

pending: {{ n_instances_by_state['pending'] }}
active: {{ n_instances_by_state['active'] }}
inactive: {{ n_instances_by_state['inactive'] }}
deleted: {{ n_instances_by_state['deleted'] }}
live total cores: {{ live_total_cores_mcpu / 1000 }}
live free cores: {{ live_free_cores_mcpu / 1000 }}
{% for instance in instances %} {% endfor %}
Name Instance Collection Zone Version State Free Cores Failed Requests Time Created Last Updated
{{ instance.name }} {{ instance.inst_coll.name }} {{ instance.zone }} {{ instance.version }} {{ instance.state }} {{ instance.free_cores_mcpu / 1000 }} / {{ instance.cores_mcpu / 1000 }} {{ instance.failed_request_count }} {{ instance.time_created_str() }} {{ instance.last_updated_str() }} ago
{% endblock %}