{% extends "skeleton.html" %} {% block title %}Tor Relays :: Families{% endblock %} {% block body %}

Home :: Families

The set of all relay families with > 1 effective members. The first_seen parameter is taken from the oldest relay in the family.

{% 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 %} {% 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 %} {% if v['contact'] %} {% else %} {% endif %} {% for r in v['relays'] %} {% set _dummy = processed.update({relays.json['relay_subset'][r]['fingerprint']: None}) %} {% endfor %} {% endif %} {% endfor %}
Family Bandwidth Contact Exit Count Middle Count First Seen
{{ k|escape }} {{ obs_bandwidth }}{{ v['contact']|truncate(50)|escape }}none{{ v['exit_count'] }} {{ v['middle_count'] }} {{ v['first_seen'].split(' ', 1)[0]|escape }}
{% endblock %}