{% extends "base.html" %} {% block title %}Metrics{% endblock %} {% block content %}

DB Metrics

{% if metrics.metrics_message %}
{{ metrics.metrics_message }}
{% endif %}
Enabled{{ metrics.metrics_enabled }}
File{{ metrics.metrics_file }}
Dropped{{ metrics.dropped_count }}
{% for row in metrics.summary.by_path %} {% endfor %}
PathMethodCountTotal Seconds
{{ row.path }}{{ row.method }}{{ row.count }}{{ row.total_seconds }}
{% endblock %}