In case you're not familiar, fast path loopback sockets:
How can I count how many connections of this type a system currently have?
Thanks!
In case you're not familiar, fast path loopback sockets:
How can I count how many connections of this type a system currently have?
Thanks!
Answering self for future seekers (partial answer though):
There's no way to count it on windows (at least from what I found), but you can count sockets that user requested to be fast-path but windows rejected and used plain loopback instead. So if you know how many fast-path sockets were supposed to be opened, you can use that counter to see if any of them failed.
To access that counter open perfmon.exe and add the following counter:
TCPIP Performance Diagnostics/TCP connect requests fallen off loopback fast path
Leaving the question opened for now in case someone have a better answer.