From 2b1380eed0ab7979fbdf924d1613a6dace8c1ba6 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Thu, 17 Apr 2025 14:47:43 -0700 Subject: [PATCH] Added channel selection on Top users statistics --- meshview/templates/top.html | 241 +++++++++++++++++++----------------- 1 file changed, 126 insertions(+), 115 deletions(-) diff --git a/meshview/templates/top.html b/meshview/templates/top.html index 5d810af..8e37faf 100644 --- a/meshview/templates/top.html +++ b/meshview/templates/top.html @@ -2,67 +2,80 @@ {% block css %} {% endblock %} @@ -70,71 +83,107 @@ h1 { {% block body %}

Top Traffic Nodes

- - - -
-

This chart shows a bell curve (normal distribution) based on the total "Times Seen" values for all nodes. It helps visualize how frequently nodes are heard, relative to the average.

-

This "Time Seen" value is the closest that we can get to Mesh utilization by node.

-

Mean: - Standard Deviation:

+

This chart shows a bell curve (normal distribution) based on the total "Times Seen" values for all nodes. It helps visualize how frequently nodes are heard, relative to the average.

+

This "Times Seen" value is the closest that we can get to Mesh utilization by node.

+

Mean: - Standard Deviation:

+ + +
{% if nodes %} -
- - - - - - - - - - - - {% for node in nodes %} - - - - - - - - {% endfor %} - -
Long NameShort NameChannelPackets SentTimes Seen
{{ node.long_name }}{{ node.short_name }}{{ node.channel }}{{ node.total_packets_sent }}{{ node.total_times_seen }}
-
+
+ + + + + + + + + + + + +
Long NameShort NameChannelPackets SentTimes SeenSeen % of Mean
+
{% else %} -

No top traffic nodes available.

+

No top traffic nodes available.

{% endif %} {% endblock %}