Performance Counters

  • Thread starter Thread starter Jerry Negrelli
  • Start date Start date
J

Jerry Negrelli

What is happening behind the scenes when I call
System.Diagnostics.PerformanceCounter on a remote
machine? Is it connecting via RPC? What security
context is it run under? Any explanation or links would
be much appreciated!

JER
 
Exactly the same thing that happens when dealing with non managed code.
The System.Diagnostics.PerformanceCounter classes are just calling the Win32 API's (like RegConnectRegistry). When querying remote
systems, the client connects to the remote system registry service using SMB protocol based RPC's.

Willy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top