Speedtest Results

Your connection performance metrics

Download

{% if download is not none %}
{{ "%0.2f"|format(download.speed) }}Mbps
Speed
{% if download.speed > 500 %}
Excellent
{% elif download.speed >= 100 %}
Good
{% else %}
Needs improvement
{% endif %} {% else %}
N/AMbps
Test not completed
{% endif %}

Upload

{% if upload is not none %}
{{ "%0.2f"|format(upload.speed) }}Mbps
Speed
{% if upload.speed > 500 %}
Excellent
{% elif upload.speed >= 100 %}
Good
{% else %}
Needs improvement
{% endif %} {% else %}
N/AMbps
Test not completed
{% endif %}

Connection

{% set test_data = download or upload %} {% if test_data is not none and test_data.latency is not none %}
{{ "%0.1f"|format(test_data.latency) }}ms
Ping
{% if test_data.jitter is not none %} {{ "%0.2f"|format(test_data.jitter) }}ms {% else %} N/Ams {% endif %}
Jitter
{% if test_data.http_latency is not none %} {{ "%0.2f"|format(test_data.http_latency) }}ms {% else %} N/Ams {% endif %}
HTTP Latency
{% else %}
N/Ams
Test not completed
{% endif %}

Network Information

ISP {{ metadata.isp or 'Unknown' }}
Location
{% if metadata.country and metadata.country|length == 2 %} {% endif %} {% if metadata.city %}{{ metadata.city }}{% if metadata.country and metadata.country|length != 2 %}, {% endif %}{% endif %} {% if metadata.country and metadata.country|length != 2 %}{{ metadata.country }}{% endif %} {% if not metadata.city and (not metadata.country or metadata.country|length == 2) %}Unknown{% endif %}
Server {{ metadata.hostname or 'Unknown' }}
IP Address {{ metadata.client_ip or 'Unknown' }}
ASN {{ metadata.asn or 'Unknown' }}
Data Center {{ metadata.colo or 'Unknown' }}
Coordinates {% if metadata.latitude and metadata.longitude %} {{ "%s, %s"|format(metadata.latitude, metadata.longitude) }} {% else %} Unknown {% endif %}
HTTP Protocol {{ metadata.http_protocol or 'Unknown' }}
{% if metadata.latitude and metadata.longitude %}
{% endif %}