Тест нагрузки VS и счетчик производительности «Всего отправлено байт»? - PullRequest
0 голосов
/ 22 сентября 2011

У меня есть нагрузочный тест для службы WCF, где мы пробуем разные библиотеки сжатия и конфигурации, и нам нужно измерить общее количество мегабайт, отправленных во время теста.Есть ли счетчик производительности, который измеряет относительный трафик pr.тестовое задание.Если да, то как мне добавить его в свой нагрузочный тест - кажется, что видна только часть счетчиков производительности - например, в категории «Веб-служба», я не вижу счетчик производительности «Всего полученных байт» в VSЗагрузите тест, но я могу найти его в PerfMon.

Спасибо

1 Ответ

2 голосов
/ 13 октября 2011

В тесте нагрузки разверните Наборы счетчиков> Разверните применимо> Щелкните правой кнопкой мыши Наборы счетчиков> Добавить счетчики

Вы можете реализовать свой собственный счетчик производительности следующим образом:

using System;
using System.Diagnostics;
using System.Net.NetworkInformation;

namespace PerfCounter
{
class PerfCounter
{
    private const String categoryName = "Custom category";
    private const String counterName = "Total bytes received";
    private const String categoryHelp = "A category for custom performance counters";
    private const String counterHelp = "Total bytes received on network interface";
    private const String lanName = "Local Area Connection"; // change this to match your network connection
    private  const int sampleRateInMillis = 1000;
    private const int numberofSamples = 200000;

    private static NetworkInterface lan = null;
    private static PerformanceCounter perfCounter;
    private static long initialReceivedBytes;

    static void Main(string[] args)
    {
        setupLAN();
        setupCategory();
        createCounters();
        updatePerfCounters();
    }

    private static void setupCategory()
    {
        if (!PerformanceCounterCategory.Exists(categoryName))
        {
            CounterCreationDataCollection counterCreationDataCollection = new CounterCreationDataCollection();
            CounterCreationData totalBytesReceived = new CounterCreationData();
            totalBytesReceived.CounterType = PerformanceCounterType.NumberOfItems64;
            totalBytesReceived.CounterName = counterName;
            counterCreationDataCollection.Add(totalBytesReceived);
            PerformanceCounterCategory.Create(categoryName, categoryHelp, PerformanceCounterCategoryType.MultiInstance, counterCreationDataCollection);
        }
        else
            Console.WriteLine("Category {0} exists", categoryName);
    }

    private static void createCounters()
    {
        perfCounter = new PerformanceCounter(categoryName, counterName, false);
        perfCounter.RawValue = getTotalBytesReceived();
    }

    private static long getTotalBytesReceived()
    {
        return lan.GetIPv4Statistics().BytesReceived;
    }

    private static void setupLAN()
    {
        NetworkInterface[] interfaces = NetworkInterface.GetAllNetworkInterfaces();
        foreach (NetworkInterface networkInterface in interfaces)
        {
            if (networkInterface.Name.Equals(lanName))
                lan = networkInterface;
        }
        initialReceivedBytes = lan.GetIPv4Statistics().BytesReceived;
    }

    private static void updatePerfCounters()
    {
        for (int i = 0; i < numberofSamples; i++)
        {
            perfCounter.RawValue = getTotalBytesReceived();
            Console.WriteLine("received: {0} bytes", perfCounter.RawValue - initialReceivedBytes);
            System.Threading.Thread.Sleep(sampleRateInMillis);
        }
    }
}
}
...