Forum Discussion
garymansell
Oct 27, 2020Brass Contributor
Multiple RTT/InstanceName values returned from RemoteFX Network perf data queries?
I am trying to create a WVD Dashboard chart showing all my hosts/users RTT values and have noticed that the data in the resulting chart is wrong. On further investigation I can see for each given ...
garymansell
Oct 28, 2020Brass Contributor
I have taken a guess that the highest InstanceName (Session ID) must be the currently active users session RTT (but what are all the others and where to they come from as they all have different RTT's?)
I have created a query that should return the highest InstanceName's RTT value for each WVD Session Host at each time step - any ideas if my guess is right and does the code below do what I think it should?
Perf
| where ObjectName == "RemoteFX Network" and CounterName == "Current TCP RTT"
| where Computer contains "AZUCAD"
| extend Multi=split(InstanceName," ")
| project TimeGenerated, Computer, CounterValue, SessionNumber=toint(Multi[1])
| summarize MaxSession=arg_max(SessionNumber,*) by bin(TimeGenerated, 10m), Computer
| project-away MaxSession, TimeGenerated1