mirror of
https://github.com/YGGverse/aquatic.git
synced 2026-03-31 17:55:36 +00:00
123 lines
3.5 KiB
HTML
123 lines
3.5 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>UDP BitTorrent tracker statistics</title>
|
|
|
|
{#- Include stylesheet like this to prevent code editor syntax warnings #}
|
|
{ stylesheet | unescaped }
|
|
</head>
|
|
|
|
<body>
|
|
<h1>BitTorrent tracker statistics</h1>
|
|
|
|
{#- <p> <strong>Tracker software:</strong> <a href="https://github.com/greatest-ape/aquatic">aquatic_udp</a> </p> #}
|
|
|
|
<p>
|
|
<strong>Updated:</strong> { last_updated } (UTC)
|
|
</p>
|
|
|
|
{{ if ipv4_active }}
|
|
|
|
<h2>IPv4</h2>
|
|
|
|
<table>
|
|
<caption>* Peer count is updated every { peer_update_interval } seconds</caption>
|
|
<tr>
|
|
<th scope="row">Number of torrents</th>
|
|
<td>{ ipv4.num_torrents }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Number of peers</th>
|
|
<td>{ ipv4.num_peers } *</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Requests / second</th>
|
|
<td>{ ipv4.requests_per_second }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Total responses / second</th>
|
|
<td>{ ipv4.responses_per_second_total }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Connect responses / second</th>
|
|
<td>{ ipv4.responses_per_second_connect }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Announce responses / second</th>
|
|
<td>{ ipv4.responses_per_second_announce }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Scrape responses / second</th>
|
|
<td>{ ipv4.responses_per_second_scrape }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Error responses / second</th>
|
|
<td>{ ipv4.responses_per_second_error }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Bandwidth (RX)</th>
|
|
<td>{ ipv4.rx_mbits } mbit/s</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Bandwidth (TX)</th>
|
|
<td>{ ipv4.tx_mbits } mbit/s</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{{ endif }}
|
|
|
|
{{ if ipv6_active }}
|
|
|
|
<h2>IPv6</h2>
|
|
|
|
<table>
|
|
<caption>* Peer count is updated every { peer_update_interval } seconds</caption>
|
|
<tr>
|
|
<th scope="row">Number of torrents</th>
|
|
<td>{ ipv6.num_torrents }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Number of peers</th>
|
|
<td>{ ipv6.num_peers } *</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Requests / second</th>
|
|
<td>{ ipv6.requests_per_second }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Total responses / second</th>
|
|
<td>{ ipv6.responses_per_second_total }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Connect responses / second</th>
|
|
<td>{ ipv6.responses_per_second_connect }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Announce responses / second</th>
|
|
<td>{ ipv6.responses_per_second_announce }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Scrape responses / second</th>
|
|
<td>{ ipv6.responses_per_second_scrape }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Error responses / second</th>
|
|
<td>{ ipv6.responses_per_second_error }</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Bandwidth (RX)</th>
|
|
<td>{ ipv6.rx_mbits } mbit/s</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">Bandwidth (TX)</th>
|
|
<td>{ ipv6.tx_mbits } mbit/s</td>
|
|
</tr>
|
|
</table>
|
|
|
|
{{ endif }}
|
|
</body>
|
|
</html>
|