This makes the metrics a lot easier to scan, because it groups similar metrics (like all the HTTP metrics) as well as the percentiles, etc.
10 lines
212 B
HTML
10 lines
212 B
HTML
{% extends 'layout.html' %}
|
|
{% block content %}
|
|
<h1>Metrics</h1>
|
|
<ul>
|
|
{% for key,value in metrics %}
|
|
<li><a href="{{url_for('metric', metric=value)}}">{{key}}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endblock content %}
|