The "Throughput per Site" panel added in #49 sums interfaces_interface_state_counters_{in,out}_octets over all interfaces per site, with no interface filter. Management0 (the gNMI/telemetry OOB port) dominates every site's total and is heavily asymmetric (gNMI streams notifications out to the collector continuously), producing a misleading ~10x in/out imbalance that looks like a real fabric traffic anomaly but is actually management-plane noise.
Confirmed via direct query: excluding Management0 (interface!~"Management.*") brings in/out back to comparable, plausible magnitudes for all three sites.
Fix: add interface!~"Management.*" (matching the fabric-only interface filtering already used for the weathermap link queries) to both throughput target expressions in scripts/generate_weathermap.py's build_throughput_panel.
The "Throughput per Site" panel added in #49 sums `interfaces_interface_state_counters_{in,out}_octets` over **all** interfaces per site, with no interface filter. `Management0` (the gNMI/telemetry OOB port) dominates every site's total and is heavily asymmetric (gNMI streams notifications out to the collector continuously), producing a misleading ~10x in/out imbalance that looks like a real fabric traffic anomaly but is actually management-plane noise.
Confirmed via direct query: excluding `Management0` (`interface!~"Management.*"`) brings in/out back to comparable, plausible magnitudes for all three sites.
Fix: add `interface!~"Management.*"` (matching the fabric-only interface filtering already used for the weathermap link queries) to both throughput target expressions in `scripts/generate_weathermap.py`'s `build_throughput_panel`.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The "Throughput per Site" panel added in #49 sums
interfaces_interface_state_counters_{in,out}_octetsover all interfaces per site, with no interface filter.Management0(the gNMI/telemetry OOB port) dominates every site's total and is heavily asymmetric (gNMI streams notifications out to the collector continuously), producing a misleading ~10x in/out imbalance that looks like a real fabric traffic anomaly but is actually management-plane noise.Confirmed via direct query: excluding
Management0(interface!~"Management.*") brings in/out back to comparable, plausible magnitudes for all three sites.Fix: add
interface!~"Management.*"(matching the fabric-only interface filtering already used for the weathermap link queries) to both throughput target expressions inscripts/generate_weathermap.py'sbuild_throughput_panel.