The WMI class name for PCoIP USB statistics is Win32_PerfRawData_TeradiciPerf_PCoIPSessionUSBStatistics.
WMI Property Name | Description |
---|---|
USBBytesReceived | Total number of bytes of USB data that have been received since the PCoIP session started. |
USBBytesSent | Total number of bytes of USB data that have been transmitted since the PCoIP session started. |
USBRXBWkbitPersec | Bandwidth for incoming USB packets averaged over the sampling period, in seconds. |
USBTXBWkbitPersec | Bandwidth for outgoing USB packets averaged over the sampling period, in seconds. |
Calculating Bandwidth for Received USB Data
To calculate the bandwidth in kilobits per second for received USB data over the time interval from time t1 to time t2, use the following formula.
(USBBytesReceived[t2]-USBBytesReceived[t1]) * 8 / (1024 * (t2-t1))
Do not use USBRXBWkbitPersec for the calculation.
Calculating Bandwidth for Transmitted USB Data
To calculate the bandwidth in kilobits per second for transmitted USB data over the time interval from time t1 to time t2, use the following formula.
(USBBytesSent[t2]-USBBytesSent[t1]) * 8 / (1024 * (t2-t1))
Do not use USBTXBWkbitPersec for the calculation.