{% include "nav.html" %}

Active Sessions

{{ sessions | length }} active
{% if sessions %}
{% for s in sessions %}
{{ s.label or s.backend_name }}
{{ s.session_type }} {% if s.job_id %} Job {{ s.job_id }} {% endif %} {% if s.node %} on {{ s.node }} {% endif %} started
{% endfor %}
{% else %}

No active terminal sessions.

{% endif %}
{% if debug_jobs %}

Debug Sessions

{{ debug_jobs | length }} running

Interactive debug jobs waiting in tmux. Connect to inspect the environment, then use "Continue Job" to let the main command run.

{% for job in debug_jobs %}
{{ job.name }} {{ job.job_id }}
{{ job.backend_name }} · {{ job.node }} {% if job.partition %} · {{ job.partition }}{% endif %}
{% endfor %}
{% endif %}

Connect to Head Node

Open a shell on the login/head node of a backend.

{% if backends %}
{% for b in backends %}
{{ b.name }} {{ b.host }}
{% if b.connected %} Connect {% else %} Disconnected {% endif %}
{% endfor %}
{% else %}

No backends configured.

{% endif %}

Connect to Running Job

SSH into the compute node of a currently running job.

{% if running_jobs %}
{% for job in running_jobs %}
{{ job.name }} {{ job.job_id }}
{{ job.backend_name }} · {{ job.node }} {% if job.partition %} · {{ job.partition }}{% endif %}
Attach
{% endfor %}
{% else %}

No running jobs with assigned nodes.

{% endif %}