{% extends parent %} {% block title %}Bash Commands - Introspect{% endblock %} {% macro bash_qs(prefix='', failed=filter_failed, session=filter_session, project=filter_project, q=filter_q, page=1) -%} {% if prefix %}prefix={{ prefix }}&{% endif %}{% if failed %}failed=true&{% endif %}{% if session %}session={{ session }}&{% endif %}{% if project %}project={{ project }}&{% endif %}{% if q %}q={{ q }}&{% endif %}page={{ page }} {%- endmacro %} {% block content %}

Bash Commands

All {% for pfx in prefixes %} {{ pfx[0] }} {{ pfx[1] }} {{ '%.0f'|format(pfx[2]) }}% {% endfor %}
{% if filter_prefix %}{% endif %} {% if filter_failed %}{% endif %} {% if filter_session %}{% endif %} {% if filter_project %}{% endif %}
{% if filter_failed %}Show all{% else %}Failed only{% endif %} {% if filter_session %} Session: {{ filter_session[:12] }}... × {% endif %} {% if filter_q %} Search: {{ filter_q[:20] }}{% if filter_q|length > 20 %}...{% endif %} × {% endif %}
{% if stats %}
{{ stats[0] }}
Matching Calls
{{ stats[1] }}
Failed
{% endif %}
{% for tc in bash_calls %} {% endfor %}
Session Project Called At Command Description Status Exec Time
{{ (clean_title(tc[6] or '') or (tc[0]|string)[:12] + '...')|truncate(50) }} {{ tc[8] or '' }} {{ tc[1] }} {{ (tc[2] or '')[:80] }} {{ tc[4] or '' }} {% if tc[3] == 'true' %} FAILED {% else %} OK {% endif %} {{ tc[5] or '' }}
{% endblock %}