-
Notifications
You must be signed in to change notification settings - Fork 1
/
all_stats.html
65 lines (52 loc) · 1.44 KB
/
all_stats.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>Hub - Statistics</title>
<link rel="stylesheet" href="/base.css" type="text/css">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/favicon.ico">
</head>
<body>
<form action="/stats" method="post" accept-charset="utf-8">
<input type="submit" name="action" value="Flush" id="">
</form>
<h1>Table of contents</h1>
<ul>
{% for config in all_configs %}
<li><a href="#{{config.title}}">{{config.title}}</a></li>
{% endfor %}
</ul>
<h1>Fetch stats</h1>
<h2>Per-URL error rate</h2>
{% for result in fetch_url_error %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-URL latency</h2>
{% for result in fetch_url_latency %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-domain error rate</h2>
{% for result in fetch_domain_error %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-domain latency</h2>
{% for result in fetch_domain_latency %}
{% include "stats_table.html" %}
{% endfor %}
<h1>Delivery stats</h1>
<h2>Per-URL error rate</h2>
{% for result in delivery_url_error %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-URL latency</h2>
{% for result in delivery_url_latency %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-domain error rate</h2>
{% for result in delivery_domain_error %}
{% include "stats_table.html" %}
{% endfor %}
<h2>Per-domain latency</h2>
{% for result in delivery_domain_latency %}
{% include "stats_table.html" %}
{% endfor %}
</body>
</html>