{% extends "base.html" %} {% block title %}Sraosha — DQ run{% endblock %} {% block breadcrumbs %}
{{ check.name }}

Run {{ run.id }}

{% endblock %} {% block content %}
{% if run.status == 'passed' %} passed {% elif run.status == 'failed' %} failed {% else %} {{ run.status }} {% endif %} {{ run.run_at.strftime('%Y-%m-%d %H:%M:%S UTC') }}
Checks
{{ run.checks_passed }} / {{ run.checks_total }}
Warned / Failed
{{ run.checks_warned }} / {{ run.checks_failed }}
Duration
{% if run.duration_ms %}{{ run.duration_ms }}ms{% else %}—{% endif %}
Triggered by
{{ run.triggered_by }}
{% if run.run_log %}

Log

{{ run.run_log }}
{% endif %} {% if run.results_json %}

Results

{{ run.results_json | tojson(indent=2) }}
{% endif %}
{% endblock %}