{% extends "layout.html" %} {% block title %}Batch Status{% endblock %} {% block content %}
| 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 }} |
| 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 }} |
| 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 |