Click here to Skip to main content
Licence GPL3
First Posted 29 Feb 2004
Views 196,185
Bookmarked 143 times

Monitoring network speed

By | 29 Feb 2004 | Article
Detecting upload and download speed of a network adapter using performance counters.

Sample Image

Introduction

The .NET Class Library provides a set of performance counters that you can use to track the performance both of the system and of an application. This program makes use of counters in the Networking category to obtain information about data sent and received over the network, and calculates network speed.

Using the code

This library includes only two classes, NetworkMonitor and NetworkAdapter. The former one provides general methods to enumerate network adapters installed on a computer, start or stop watching specified adapter, and a timer to read performance counter samples every second, and the latter represents a specific network adapter, providing properties presenting current speed.

The following code is a simple example of using these two classes:

    NetworkMonitor monitor    =    new NetworkMonitor();
    NetworkAdapter[] adapters    =    monitor.Adapters;

    // If the length of adapters is zero, then no instance
    // exists in the networking category of performance console.
    if (adapters.Length == 0)
    {
        Console.WriteLine("No network adapters found on this computer.");
        return;
    }

    // Start a timer to obtain new performance counter sample every second.
    monitor.StartMonitoring();

    for( int i = 0; i < 10; i ++)
    {
        foreach(NetworkAdapter adapter in adapters)
        {
            // The Name property denotes the name of this adapter.
            Console.WriteLine(adapter.Name);
            // The DownloadSpeedKbps and UploadSpeedKbps are
            // double values. You can also use properties DownloadSpeed
            // and UploadSpeed, which are long values but
            // are measured in bytes per second.
            Console.WriteLine(String.Format("dl: {0:n} " + 
               "kbps\t\tul: {1:n} kbps? adapter.DownloadSpeedKbps, 
               adapter.UploadSpeedKbps));
        }
        System.Threading.Thread.Sleep(1000); // Sleeps for one second.
    }

    // Stop the timer. Properties of adapter become invalid.
    monitor.StopMonitoring ();

Points of Interest

To enumerate the network adapters on a computer, I only utilize the existing interface names in the networking category of performance console. Here is the EnumerateNetworkAdapters() method.

    /// <summary>
    /// Enumerates network adapters installed on the computer.
    /// </summary>
    private void EnumerateNetworkAdapters()
    {
        PerformanceCounterCategory category    = 
          new PerformanceCounterCategory("Network Interface");

        foreach (string name in category.GetInstanceNames())
        {
            // This one exists on every computer.
            if (name == "MS TCP Loopback interface")
                continue;
            // Create an instance of NetworkAdapter class,
            // and create performance counters for it.
            NetworkAdapter adapter = new NetworkAdapter(name);
            adapter.dlCounter = new PerformanceCounter("Network Interface", 
                                                "Bytes Received/sec", name);
            adapter.ulCounter = new PerformanceCounter("Network Interface", 
                                                    "Bytes Sent/sec", name);
            this.adapters.Add(adapter);    // Add it to ArrayList adapter
        }
    }

A tricky problem with this approach is that an instance called “MS TCP Loopback interface” exists on every computer, of which both the download speed and the upload speed are always zero. So I explicitly check and exclude it in the program, which is certainly not a good manner but workable.

Before all of this, I tried to accomplish this by making a WMI query, which looked more decent, and my first version went like this:

    /// 
    /// Enumerates network adapters installed on the computer.
    /// 
    private void EnumerateNetworkAdapters()
    {
        // Information about network adapters can be found
        // by querying the WMI class Win32_NetworkAdapter,
        // NetConnectionStatus = 2 filters the ones that are not connected.
        // WMI related classes are located in assembly System.Management.dll
        ManagementObjectSearcher searcher = new 
            ManagementObjectSearcher("SELECT * FROM Win32_NetworkAdapter" + 
                                            " WHERE NetConnectionStatus=2");

        ManagementObjectCollection adapterObjects = searcher.Get();

        foreach (ManagementObject adapterObject in adapterObjects)
        {
            string name    =    adapterObject["Name"];

            // Create an instance of NetworkAdapter class,
            // and create performance counters for it.
            NetworkAdapter adapter = new NetworkAdapter(name);
            adapter.dlCounter = new PerformanceCounter("Network Interface", 
                                                "Bytes Received/sec", name);
            adapter.ulCounter = new PerformanceCounter("Network Interface", 
                                                    "Bytes Sent/sec", name);
            this.adapters.Add(adapter); // Add it to ArrayList adapter
        }
    }

The only problem is that the name of an adapter obtained this way will possibly differ from the instance name needed to create a performance counter. On my machine, this name is "Intel(R) PRO/100 VE Network Connection" querying WMI, and "Intel[R] Pro_100 VE Network Connection" in the performance console. I did not find a better solution and finally gave up WMI.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)

About the Author

Chen Pang

Software Developer
Autodesk
Singapore Singapore

Member

Follow on Twitter Follow on Twitter


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralWay to solve EnumerateNetworkAdapters name mismatch with WMI PinmemberAurimas1:58 11 Apr '11  
Generalabout network card name problem PinmemberMuhammad alaa22:27 15 Feb '11  
GeneralSource for CF.NET Pinmembernicolaquale4:19 5 Oct '10  
Generalpublish your program Pinmemberkasumayuda20:15 4 Apr '10  
GeneralNetwork information PinmemberSurya Ayyagari1:57 29 Jul '09  
GeneralPerformance Counter not working on some PCs PinmemberOnlymeDavid8:51 1 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberEchevil19:44 1 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberOnlymeDavid8:22 2 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberEchevil16:15 2 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberOnlymeDavid19:18 2 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberEchevil2:24 3 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberOnlymeDavid19:29 3 Oct '07  
GeneralRe: Performance Counter not working on some PCs PinmemberEchevil20:18 3 Oct '07  
AnswerRe: Performance Counter not working on some PCs [modified] PinmemberPawJershauge5:41 23 Dec '07  
GeneralEchevil DLL source code need PinmemberNaseer Ahmad4:01 19 Jun '07  
GeneralRe: Echevil DLL source code need PinmemberEchevil13:52 19 Jun '07  
GeneralCool Pinmemberyellodoo5:55 4 Jan '07  
QuestionMemory Usage PinmemberMentoss6:19 27 Dec '06  
AnswerRe: Memory Usage PinmemberEchevil20:12 6 Jan '07  
QuestionWhat about Wireless networkcards? PinmemberLasse Rasch2:50 9 Dec '06  
AnswerRe: What about Wireless networkcards? PinmemberEchevil1:18 10 Dec '06  
Questionwild card? Pinmembercrazytri11:25 6 Dec '06  
Questionwhat about of connection measurment with ASP.NET Pinmembergeo-geo2:38 2 Nov '06  
As we know we cannot access Counters trough web page
 
winx
Generalthank you very much Pinmemberosamahamed12322:35 3 Mar '06  
GeneralMonitoring Network Speed - WMI PinmemberkoenV2:31 22 Feb '06  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120529.1 | Last Updated 1 Mar 2004
Article Copyright 2004 by Chen Pang
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid