{% extends "base.html" %} {% block title %}{{ page_title or "Run" }} - MLOps Monitor{% endblock %} {% block content %}

{{ run.name }}

{{ project.name }}

{{ run.status }}
Created
{{ run.created_at[:19] }}
Completed
{{ run.ended_at[:19] if run.ended_at else '-' }}
Host
{{ run.host or '-' }}
Python
{{ run.python_version or '-' }}
Executable
{{ run.python_executable or '-' }}
Command
{{ run.command or '-' }}

Summary

Latest values per metric
{% if summary %}
{% for item in summary %}
{{ item.name }}
{{ "%.4f"|format(item.value) }}
Step {{ item.step or '-' }}
{% endfor %}
{% else %}

No metrics logged yet.

{% endif %}
{% if logs %}
{% for entry in logs %}
[{{ entry.timestamp[:19] }}] {{ entry.message }}
{% endfor %}
{% else %}

No logs captured for this run.

{% endif %}

Data Drift

Per-feature drift results

Feature Score Level Status Time
Loading data drift...

Concept Drift

Metric drift signals

Metric Score Level Status Time
Loading concept drift...

Alerts

Triggered notifications for this run

Type Level Subject Message Time
Loading alerts...
{% endblock %} {% block scripts %} {% endblock %}