aboutsummaryrefslogtreecommitdiff
path: root/tor-metrics/templates
diff options
context:
space:
mode:
Diffstat (limited to 'tor-metrics/templates')
-rw-r--r--tor-metrics/templates/families.html47
-rw-r--r--tor-metrics/templates/index.html2
-rw-r--r--tor-metrics/templates/networks.html46
3 files changed, 94 insertions, 1 deletions
diff --git a/tor-metrics/templates/families.html b/tor-metrics/templates/families.html
new file mode 100644
index 0000000..d1ae9d7
--- /dev/null
+++ b/tor-metrics/templates/families.html
@@ -0,0 +1,47 @@
+{% extends "skeleton.html" %}
+{% block title %}Tor Relays :: Families{% endblock %}
+{% block body %}
+<h2><a href="./">Home</a> :: Families</h2>
+<p>The set of all ({{ relays.json['sorted']['family']|length }}) relay families with > 1 effective members. The first_seen parameter is taken from the oldest relay in the family.</p>
+<table class="table table-condensed">
+ <tr>
+ <th>Family</th>
+ <th>Bandwidth</th>
+ <th class="visible-md visible-lg">Contact</th>
+ <th>Exit Count</th>
+ <th>Middle Count</th>
+ <th>First Seen<th>
+ </tr>
+ <tbody>
+ {% set processed = dict() %}
+ {% for k, v in relays.json['sorted']['family'].items()|sort(attribute='1.bw', reverse=True) %}
+ {% if relays.json['relays'][v['relays'][0]]['fingerprint'] not in processed %}
+ <tr>
+ {% if v['bw'] > 1000000 %}
+ {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000000)|round(2, 'common'), 'MB/s') %}
+ {% else %}
+ {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000)|round(2, 'common'), 'KB/s') %}{% endif %}
+
+ <td><a href="{{ path_prefix}}family/{{ k|escape }}/">{{ k|escape }}</a></td>
+
+ <td>{{ obs_bandwidth }}</td>
+
+ {% if v['contact'] %}
+ <td class="visible-md visible-lg"><a href="{{ path_prefix }}contact/{{ v['contact']|hash }}/" title="{{ v['contact']|escape }}">{{ v['contact']|truncate(50)|escape }}<a></td>
+ {% else %}
+ <td>none</td>{% endif %}
+
+ <td>{{ v['exit_count'] }}</td>
+ <td>{{ v['middle_count'] }}</td>
+
+ <td>{{ v['first_seen'].split(' ', 1)[0]|escape }}</td>
+
+ {% for r in v['relays'] %}
+ {% set _dummy = processed.update({relays.json['relay_subset'][r]['fingerprint']: None}) %}
+ {% endfor %}
+ </tr>
+ {% endif %}
+ {% endfor %}
+ </tbody>
+</table>
+{% endblock %}
diff --git a/tor-metrics/templates/index.html b/tor-metrics/templates/index.html
index 883fb6e..7447be7 100644
--- a/tor-metrics/templates/index.html
+++ b/tor-metrics/templates/index.html
@@ -1,5 +1,5 @@
{% extends "relay-list.html" %}
{% block title %}Tor Relays{% endblock %}
-{% block header %}Tor Metrics (<a href="http://d6amkx45augz4kskvjryv3bmmwyf7vw4k3uwxsh5egnibw2igl5aozqd.onion/">v3</a>, <a href="https://github.com/tempname1024/tor-metrics">git</a>){% endblock %}
+{% block header %}Tor Metrics (<a href="http://d6amkx45augz4kskvjryv3bmmwyf7vw4k3uwxsh5egnibw2igl5aozqd.onion/">v3</a>, <a href="https://github.com/tempname1024/tor-metrics">git</a>) :: <a href="./networks.html">Networks</a>, <a href="./families.html">Families</a>{% endblock %}
{% block description %}Relay listings are statically generated every hour. Last fetch was at {{ relays.timestamp }}. Listing top 500 relays; <a href="all.html">view full list</a>.{% endblock %}
diff --git a/tor-metrics/templates/networks.html b/tor-metrics/templates/networks.html
new file mode 100644
index 0000000..46ac549
--- /dev/null
+++ b/tor-metrics/templates/networks.html
@@ -0,0 +1,46 @@
+{% extends "skeleton.html" %}
+{% block title %}Tor Relays :: Networks{% endblock %}
+{% block body %}
+<h2><a href="./">Home</a> :: Networks</h2>
+<p>The set of all ({{ relays.json['sorted']['as']|length }}) recognized networks running at least one relay. This data is onionoo-derived and might be out of date with respect to other sources.</p>
+<table class="table table-condensed">
+ <tr>
+ <th>AS Number</th>
+ <th>AS Name</th>
+ <th>Country</th>
+ <th>Bandwidth</th>
+ <th>Exit Count</th>
+ <th>Middle Count<th>
+ </tr>
+ <tbody>
+ {% for k, v in relays.json['sorted']['as'].items()|sort(attribute='1.bw', reverse=True) %}
+ <tr>
+ {% if v['bw'] > 1000000 %}
+ {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000000)|round(2, 'common'), 'MB/s') %}
+ {% else %}
+ {% set obs_bandwidth = '%s %s'|format((v['bw'] / 1000)|round(2, 'common'), 'KB/s') %}{% endif %}
+
+ <td><a href="{{ path_prefix}}as/{{ k|escape }}/">{{ k|escape }}</a></td>
+
+ {% if v['as_name'] %}
+ <td title="{{ v['as_name']|escape }}"><a href="https://bgp.he.net/{{ k|escape }}">{{ v['as_name']|truncate(20)|escape }}</a></td>
+ {% else %}
+ <td>Unknown</td>
+ {% endif %}
+
+ {% if v['country'] %}
+ <td><a href="{{ path_prefix }}country/{{ v['country']|escape }}/"><img src="{{ path_prefix }}static/images/cc/{{ v['country']|escape }}.png" title="{{ v['country_name']|escape }}"alt="{{ v['country_name']|escape }}"></a></td>
+ {% else %}
+ <td>X</td>
+ {% endif %}
+
+ <td>{{ obs_bandwidth }}</td>
+
+ <td>{{ v['exit_count'] }}</td>
+
+ <td>{{ v['middle_count'] }}</td>
+ </tr>
+ {% endfor %}
+ </tbody>
+</table>
+{% endblock %}