1

I have 6 windows servers, those are working on different locations.

i need to check load on each server from one Server by using C# coding.

Thanks in advance.

Rajesh PV
  • 13
  • 2

1 Answers1

0

I guess you can use the PerformanceCounter class from the System.Diagnostics namespace. It has the following constructor:

public PerformanceCounter(
    string categoryName,
    string counterName,
    string instanceName,
    string machineName
)

You can see a simple example on this page.

Elian Ebbing
  • 18,779
  • 5
  • 48
  • 56