{% extends "base.html" %} {% block title %}Runs ยท MIEM Employees{% endblock %} {% block content %}

Crawl runs

{% set run = runs[0] if runs else none %} {% if run %} {% set processed = run.parsed_count + run.error_count %} {% set percent = ((processed / run.found_count) * 100) | round(1) if run.found_count else 0 %}
{{ run.status }} {{ processed }} / {{ run.found_count }} processed {{ run.error_count }} errors
{{ percent }}%
{% else %}
idle 0 / 0 processed 0 errors
0%
{% endif %} {% for run in runs %} {% endfor %}
IDStatusFoundParsedNewErrorsDismissed
{{ run.id }}{{ run.status }}{{ run.found_count }}{{ run.parsed_count }}{{ run.new_count }}{{ run.error_count }}{{ run.dismissed_count }}

Recent errors

{% for error in errors %} {% endfor %}
RunProfileError
{{ error.crawl_run_id }}{{ error.profile_url }}{{ error.error_type }}: {{ error.message }}
{% endblock %} {% block scripts %} {% endblock %}