diff --git a/meshview/templates/node.html b/meshview/templates/node.html index af46061..dd30199 100644 --- a/meshview/templates/node.html +++ b/meshview/templates/node.html @@ -341,7 +341,7 @@ 🔳 Show QR Code - 📈 Reach + 📈 Reliability 📡 Predicted Coverage @@ -1835,7 +1835,7 @@ function showQrCode() { function openReachReport() { if (!fromNodeId) return; - window.location.href = `/reach?node_id=${encodeURIComponent(fromNodeId)}`; + window.location.href = `/reliability?node_id=${encodeURIComponent(fromNodeId)}`; } function closeQrModal() { diff --git a/meshview/templates/reach.html b/meshview/templates/reliability.html similarity index 98% rename from meshview/templates/reach.html rename to meshview/templates/reliability.html index 5cf1dc1..a6cc176 100644 --- a/meshview/templates/reach.html +++ b/meshview/templates/reliability.html @@ -154,10 +154,10 @@ {% block body %} - Reach Report + Reliability Review how often each gateway hears packets from a selected node. The report uses the - latest selected packet sample and calculates reach as heard packets divided by packets + latest selected packet sample and calculates reliability as heard packets divided by packets reviewed. The range table groups gateways by reliability bands, while the gateway list shows each gateway's heard count and percentage for the same sample. @@ -227,7 +227,7 @@ Gateway Heard - Reach + Reliability @@ -243,7 +243,7 @@ Gateway Heard - Reach + Reliability diff --git a/meshview/web.py b/meshview/web.py index 3772ab8..82de041 100644 --- a/meshview/web.py +++ b/meshview/web.py @@ -259,9 +259,9 @@ async def map(request): return web.Response(text=template.render(), content_type="text/html") -@routes.get("/reach") -async def reach(request): - template = env.get_template("reach.html") +@routes.get("/reliability") +async def reliability(request): + template = env.get_template("reliability.html") return web.Response(text=template.render(), content_type="text/html")
Review how often each gateway hears packets from a selected node. The report uses the - latest selected packet sample and calculates reach as heard packets divided by packets + latest selected packet sample and calculates reliability as heard packets divided by packets reviewed. The range table groups gateways by reliability bands, while the gateway list shows each gateway's heard count and percentage for the same sample.