Network Monitor

Replay historical network telemetry on a 3D globe. Watch how a machine-learning model scored outage risk over time, and see where outages were actually recorded.

🟒 Historical Replay Available β€” The prediction API is connected and the demonstration data is ready.

Replay timeline

Progress through the chosen day, outages found, and the numbers behind each city dot.

Awaiting data...
Live inference Try the prediction API Collapsed by default β€” copy a curl, or send six numbers from this page.

These are the requests the globe already uses, plus one live score. The reply is { "probability": 12.34, "is_outage_predicted": false } β€” probability is 0 to 100, and the flag turns true above 80. If the model file is missing the API returns 503. Public use is capped at 30 predictions and 60 historical reads per visitor per minute.

Historical data the globe uses

curl -s "https://noisyatom.com/api/v1/health"
curl -s "https://noisyatom.com/api/v1/dates"
curl -s "https://noisyatom.com/api/v1/nodes"
curl -s "https://noisyatom.com/api/v1/predictions?date=2026-01-06"
curl -s "https://noisyatom.com/api/v1/predictions/mss-900103541927-900104806142-uEdgevr/timeline?date=2026-01-06"

Live prediction

curl -s -X POST "https://noisyatom.com/api/v1/predict" \
  -H "Content-Type: application/json" \
  -d '{
    "delayAvg": 45.2,
    "packetsLost": 0.1,
    "delayMax": 120.0,
    "jitterAvg": 2.1,
    "jitterMax": 8.5,
    "availabilityPct": 99.9
  }'

Send six measurements

Rolling averages and lagged values are optional. Leave advanced fields closed and the API fills in the same defaults the curl uses.