Get Mobile Unit Wireless Statistics

To retrieve the mobile unit wireless statistics:
  1. Log in to the REST API server using administrator credentials. You must also forward the session ID variable with each API call.
  2. Use the GET method to access the /mu_wireless_stats endpoint and fetch the mobile unit wireless statistics.

    Sample Request

    curl -X GET --cookie auth_token=$cookie http://134.141.242.93/nsight-ui/api/v1/
    mu_wireless_stats
    Click to expand in new window

    Query String Parameters

    Parameter Required/Optional Description Data Type
    count Optional The latest number of entries to be returned in the response. If you omit this parameter, all access point entries are returned. Integer

    Sample Response (200 OK)

    {
    	"count": 1,    
    	"data": [        
    	{            
    		"mu":[                
    		{                    
    			"apid": "7467F75C21F1",                    
    			"apps":[                       
            		{                           
    				"id":"6311AE17",
    				"req": 0,                           
    				"rx": 0,                           
    				"tx": 0                       
            		}],                    
    			"band": "2.4",                    
    			"errors": 0,                    
    			"keep_hist": 1,                    
    			"muid": "B019C66BBECD",                    
    			"noise": -87,                    
    			"q": 2,                    
    			"rssi": -85,                    
    			"rssi_ri": 1,                    
    			"rtry": 0,                    
    			"rtry_ri": 5,                    
    			"rx": 2392,                    
    			"rxbps": 0,                    
    			"rxd_ri": 1,                    
    			"rxdrate": 13,                    
    			"snr": 2,                    
    			"snr_ri": 1,                    
    			"tx": 0,                    
    			"txbps": 0,                    
    			"txd_ri": 1,                    
    			"txdrate": 11,                    
    			"wlid": "4A74BD85"                
    		}],            
    	"rfd": "test"        
    	}],    
    "success": true
    }
    }
    Click to expand in new window

    Response Parameters

    Parameter Description Data Type
    apid Access point MAC address String
    muid MU/Client MAC address String
    wlid WLAN index String
    tx Transmit octets Integer
    rx Receive octets Integer
    txdrate Transmit data rate in bps Integer
    rxdrate Receive data rate in bps Integer
    txbps Transmit rate in bps Integer
    rxbps Receive rate in bps Integer
    keep_hist Keep client history Integer
    rtry Retry count Integer
    errors Error count Integer
    rssi RSSI value in dB Integer
    noise Noise in dB Integer
    snr SNR value in dB Integer
    q Quality index Integer
    band RF band String
    rssi_ri RSSI reference index in range 1-5 Integer
    snr_ri SNR reference index in range 1-5 Integer
    txd_ri Transmit data reference index in range 1-5 Integer
    rxd_ri Receive data reference index in range 1-5 Integer
    rtry_ri Retries reference index in range 1-5 Integer
    apps AVC applications Array
    req Required/Pinned application Integer
    id Application index String