Files
puppetboard/puppetboard/templates/metrics.html
Nick Lewis 3c05071aef Sort list of metrics and metrics data
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.
2013-08-21 16:52:52 -07:00

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 %}