Skip to main content

2025년 2월 20일

General PCoIP Session Statistics

The WMI class name for PCoIP general session statistics is Win32_PerfRawData_TeradiciPerf_PCoIPSessionGeneralStatistics.

General Session Statistics
WMI Property NameDescription
BytesReceivedTotal number of bytes of PCoIP data that have been received since the PCoIP session started.
BytesSentTotal number of bytes of PCoIP data that have been transmitted since the PCoIP session started.
PacketsReceivedTotal number of packets that have been received successfully since the PCoIP session started. Not all packets are the same size.
PacketsSentTotal number of packets that have been transmitted since the PCoIP session started. Not all packets are the same size.
RXPacketsLostTotal number of received packets that have been lost since the PCoIP session started.
SessionDurationSecondsTotal number of seconds that the PCoIP Session has been open.
TXPacketsLostTotal number of transmitted packets that have been lost since the PCoIP session started.

Calculating Bandwidth for Received PCoIP Data

To calculate the bandwidth in kilobits per second for received PCoIP data over the time interval from time t1 to time t2, use the following formula.

(BytesReceived[t2]-BytesReceived[t1]) * 8 / (1024 * (t2-t1))

Calculating Bandwidth for Transmitted PCoIP Data

To calculate the bandwidth in kilobits per second for transmitted PCoIP data over the time interval from time t1 to time t2, use the following formula.

(BytesSent[t2]-BytesSent[t1]) * 8 / (1024 * (t2-t1))

Calculating Packet Loss for Received PCoIP Data

To calculate the percentage of received packets that are lost, use the following formula.

100 / (1 + ((PacketsReceived[t2]-PacketsReceived[t1])/(RXPacketsLost[t2]-RXPacketsLost[t1])))

Calculating Packet Loss for Transmitted PCoIP Data

To calculate the percentage of transmitted packets that are lost, use the following formula.

100 * (TXPacketsLost[t2]-TXPacketsLost[t1]) / (PacketsSent[t2]-PacketsSent[t1])

이 페이지가 도움이 되었나요?

이 항목에 대한 피드백 보내기

이 항목이 도움이 되었나요?

개인정보나 기밀정보는 입력하지 마세요.

링크를 생성하는 중…