{% extends "base.html" %} {% load static %} {% load utils %} {% block title %}Run Log{% endblock %} {% block extrahead %} {% endblock %} {% block content %}

{{ pipeline_name }} Run Log


Pipeline ID

{{ run.pipeline.pipeline_id }}

Status

{% include "includes/job_status.html" with status=run.status compact=True %}

Execution Time

{% if run.execution_time %} {{ run.execution_time|humanize_duration }} {% else %} N/A {% endif %}

Exit Code

{{ run.run_exitcode|default_if_none:"N/A" }}

Start

{% if run.run_start_date %} {{ run.run_start_date|date:"Y-m-d h:i a T" }} {% else %} N/A {% endif %}

End

{% if run.run_end_date %} {{ run.run_end_date|date:"Y-m-d h:i a T" }} {% else %} N/A {% endif %}

Created

{{ run.created_date|date:"Y-m-d h:i a T" }}

Version

{{ run.vulnerablecode_version }}

Commit

{% if run.vulnerablecode_commit %} {{ run.vulnerablecode_commit }} {% endif %}

Job ID

{{ run.run_id }}

{% if not run.run_end_date and not run.pipeline.live_logging %}

Live streaming of log is disabled for this pipeline. Log will be available once this pipeline has finished running.

{% endif %} {% if run.run_output|strip %}

Run Error

{{ run.run_output }}
{% endif %} {% if run.log|strip %}

Log Output

                    
                
Snippet 1
{% endif %} Back to All Runs
{% endblock %} {% block scripts %} {% endblock %}