WindowsでRDPのトラフィック量を見ようと思ったところ、Windows7とWindows2012R2/Windows10ではカウンタが違っていました。それを調べてみたので備忘録として書いておきます。
カウンタ
Windows7
カウンタ | 単位 | 説明 |
---|---|---|
\Terminal Services Session(*)\Input Bytes | Byte | 送信カウンタ |
\Terminal Services Session(*)\Output Bytes | Byte | 受信カウンタ |
試しにtypeperで上記カウンタを見てみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
PS C:\Users\Administrator> typeperf "\Terminal Services Session(RDP*)\Input Bytes" "(PDH-CSV 4.0)","\\TEST-PC\Terminal Services Session(RDP-Tcp 0)\Input Bytes" "11/24/2016 06:25:01.902","309.982568" "11/24/2016 06:25:02.916","219.960975" コマンドは、正しく完了しました。 PS C:\Users\Administrator> typeperf "\Terminal Services Session(RDP*)\Output Bytes" "(PDH-CSV 4.0)","\\TEST-PC\Terminal Services Session(RDP-Tcp 0)\Output Bytes" "11/24/2016 06:24:38.892","104.277051" "11/24/2016 06:24:39.906","136.093386" コマンドは、正しく完了しました。 |
Windows2012R2/Windows10
Windows2012R2やWindows10(Windows8以上?)では、以下のカウンタに変わったようです。
カウンタ | 単位 | 説明 |
---|---|---|
\RemoteFX Network(*)\TCP Sent Rate | bps | TCP 送信カウンタ |
\RemoteFX Network(*)\UDP Sent Rate | bps | UDP 送信カウンタ |
\RemoteFX Network(*)\TCP Received Rate | bps | TCP受信カウンタ |
\RemoteFX Network(*)\UDP Received Rate | bps | UDP受信カウンタ |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
PS C:\Users\Administrator> typeperf "\RemoteFX Network(RDP*)\TCP Sent Rate" "(PDH-CSV 4.0)","\\WIN-HJSKBF8NREV\RemoteFX Network(RDP-Tcp 0)\TCP Sent Rate" "11/23/2016 21:05:26.314","96751.241136" "11/23/2016 21:05:27.324","4388.185691" PS C:\Users\Administrator> typeperf "\RemoteFX Network(RDP*)\TCP Received Rate" "(PDH-CSV 4.0)","\\WIN-HJSKBF8NREV\RemoteFX Network(RDP-Tcp 0)\TCP Received Rate" "11/23/2016 21:05:43.954","0.000000" "11/23/2016 21:05:44.964","18098.442841" コマンドは、正しく完了しました。 |