{% set online = load_data(url="https://gridproxy.grid.tf/stats?status=up", required=false, format="json") %} {% set standby = load_data(url="https://gridproxy.grid.tf/stats?status=standby", required=false, format="json") %} {% if online and standby %} {% set capacity = (online.totalHru + standby.totalHru + online.totalSru + standby.totalSru) / 1024 / 1024 / 1024 / 1024 / 1024 %} {% set nodes = online.nodes + standby.nodes %} {% set countries = online.countries %} {% set cores = online.totalCru + standby.totalCru %} {% endif %} {% if online and standby %}

A Global Edge
Infrastructure

Nodes
{{ nodes }}
Capacity
{{ capacity | round(precision=2) }}PB
Cores
{{ cores | num_format }}
Countries
{{ countries }}
Explore Capacity
{% endif %}