{% include "nav.html" %}

Back SSH Log: {{ backend_name }}

{{ backend_type }} · {{ entries | length }} entries (last 200 kept)

{% if entries %}
{% for entry in entries %}
{% if entry.error %} {% elif entry.exit_code == 0 %} {% elif entry.exit_code is not none %} {% else %} {% endif %} {{ entry.command[:120] }}{% if entry.command | length > 120 %}…{% endif %}
{% if entry.exit_code is not none %} exit={{ entry.exit_code }} {% endif %} {{ entry.duration_ms }}ms

Command:

{{ entry.command }}
{% if entry.stdout %}

stdout:

{{ entry.stdout }}
{% endif %} {% if entry.stderr %}

stderr:

{{ entry.stderr }}
{% endif %} {% if entry.error %}

Error: {{ entry.error }}

{% endif %}
{% endfor %}
{% else %}

No commands logged yet.

{% endif %}