@cryptotaxi247 / netdata-1 / commits / 9f2a7336e

add proc_net_wireless charts info (#11626)

Ilya Mashchenko committed Oct 6, 2021 at 09:04 UTC 9f2a7336ec05390e211fe2269d4669e0d5070e3d
1 file changed +39
web/gui/dashboard_info.js
+39
@@ -2617,6 +2617,45 @@ netdataDashboard.context = {
2617 'MTU is the size of the largest protocol data unit that can be communicated in a single network layer transaction.'
2618 },
2619
2620 + // ------------------------------------------------------------------------
2621 + // WIRELESS NETWORK INTERFACES
2622 +
2623 + 'wireless.link_quality': {
2624 + info: 'Overall quality of the link. '+
2625 + 'May be based on the level of contention or interference, the bit or frame error rate, '+
2626 + 'how good the received signal is, some timing synchronisation, or other hardware metric.'
2627 + },
2628 +
2629 + 'wireless.signal_level': {
2630 + info: 'Received signal strength '+
2631 + '(<a href="https://en.wikipedia.org/wiki/Received_signal_strength_indication" target="">RSSI</a>).'
2632 + },
2633 +
2634 + 'wireless.noise_level': {
2635 + info: 'Background noise level (when no packet is transmitted).'
2636 + },
2637 +
2638 + 'wireless.discarded_packets': {
2639 + info: '<p>The number of discarded packets.</p>'+
2640 + '</p><b>NWID</b> - received packets with a different NWID or ESSID. '+
2641 + 'Used to detect configuration problems or adjacent network existence (on the same frequency). '+
2642 + '<b>Crypt</b> - received packets that the hardware was unable to code/encode. '+
2643 + 'This can be used to detect invalid encryption settings. '+
2644 + '<b>Frag</b> - received packets for which the hardware was not able to properly re-assemble '+
2645 + 'the link layer fragments (most likely one was missing). '+
2646 + '<b>Retry</b> - packets that the hardware failed to deliver. '+
2647 + 'Most MAC protocols will retry the packet a number of times before giving up. '+
2648 + '<b>Misc</b> - other packets lost in relation with specific wireless operations.</p>'
2649 + },
2650 +
2651 + 'wireless.missed_beacons': {
2652 + info: 'The number of periodic '+
2653 + '<a href="https://en.wikipedia.org/wiki/Beacon_frame" target="_blank">beacons</a> '+
2654 + 'from the Cell or the Access Point have been missed. '+
2655 + 'Beacons are sent at regular intervals to maintain the cell coordination, '+
2656 + 'failure to receive them usually indicates that the card is out of range.'
2657 + },
2658 +
2659 // ------------------------------------------------------------------------
2660 // NETFILTER
2661