{% extends "base.html" %} {% load static from staticfiles %} {% load mirror_status %} {% block title %}Arch Linux - Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}{% endblock %} {% block head %}{% endblock %} {% block content %}

Mirror Status{% if tier != None %} - Tier {{ tier }}{% endif %}

This page reports the status of all known, public, and active Arch Linux mirrors. All data on this page reflects the status of the mirrors within the last {{ cutoff|hours }}. All listed times are UTC. The check script runs on a regular basis and polls for the lastsync file in the root of our repository layout. This file is regularly updated on the central repository, so checking the value within allows one to see if the mirror has synced recently. This page contains several pieces of information about each mirror.

The final table on this page is an error log, which shows any errors that occurred while contacting mirrors. This only shows errors that occurred within the last {{ cutoff|hours }}.

The last mirror check ran at {{ last_check|date:'Y-m-d H:i' }} UTC. Checks have ran {{ num_checks }} times in the last {{ cutoff|hours }} at an average interval of {{ check_frequency|duration }} (hh:mm).

This data is also available in JSON format. The units of all time/duration values are in seconds; date/time values are UTC.

Out of Sync Mirrors

{% with urls=bad_urls table_id='outofsync_mirrors' %} {% include "mirrors/status_table.html" %} {% endwith %}

Successfully Syncing Mirrors

{% with urls=good_urls table_id='successful_mirrors' %} {% include "mirrors/status_table.html" %} {% endwith %}

Mirror Syncing Error Log

{% include "mirrors/error_table.html" %}
{% endblock %} {% block script_block %} {% load cdn %}{% jquery %}{% jquery_tablesorter %} {% endblock %}