How expensive is it to create a Windows performance counter?

Raymond Chen

A customer had a program that created a lot of performance counters, although the program uses only a subset of them at any particular moment. How expensive is it to create a bunch of performance counters that aren’t being used? Should they be careful to create them only when needed and promptly destroy them when finished? Or is it okay to create all of them at the start of the program and destroy all of them when the program ends?

Performance counters can be implemented in several different ways, and each way has a different cost.

One of the simplest performance counters is just a global 32-bit or 64-bit integer that tracks the number of times an event has occurred, or the total size of something. These types of counters are relatively inexpensive to keep up to date, since the code just needs to increment the value each time the thing occurs, or atomically add or subtract the size delta.

struct Widget
{
    Widget()
    {
        InterlockedIncrement(&TotalWidgetsCreated);
        InterlockedIncrement(&TotalActiveWidgets);
    }

    ~Widget()
    {
        InterlockedDecrement(&TotalActiveWidgets);
    }
};

HRESULT CreateWidget(Widget** result)
{
    *result = new(std::nothrow) Widget();
    return *result ? S_OK : E_OUTOFMEMORY;
}

These simple updates are so inexpensive that you may as well just do them unconditionally. The cost of of checking whether anybody is using them is comparable to the cost of updating the counter, so you may as well not bother checking.

On the other hand, other performance counters are more complicated to maintain.

For example, “Bytes sent over the network on behalf of application X” may have to do quite a bit of work to figure out which application to charge each network request to.

A counter that needs to be updated at each context switch would require a context switch hook to be installed to update the counters. And you don’t want to slow down context switches unnecessarily.

Some counters are backed by another data source, and starting a counter sets up a periodic timer to pull the values from the external data source and update the performance counter.

In other words, the answer is “It depends.”

Some performance counters are cheap. Others can be expensive. I don’t think there’s any requirement that each counter document how expensive they are, so if you want to play it safe, you should create counters only when needed and destroy them as soon as you’re finished.

3 comments

Discussion is closed. Login to edit/delete existing comments.

  • Antonio Rodríguez 0

    Another thing to take into account is that performance counters sometimes alter the magnitude being measured. A counter uses some memory and takes some CPU time to update, so it is worth taking into account if you are measuring CPU or memory usage. Specially if you are trying to profile an specific function or object, which sometimes implies switching the counter on and off thousands of times per second.

    But it’s just another case that can be solved by asking yourself “How would I implement it?”. Maybe you idea isn’t an optimal implementation, but the answer will shed some light in how the counter works, and how it can affect the magnitude being measured.

  • David N 0

    Surely the customer would have meant a Windows Performance Counter that needs API calls to create and update, rather than just an internal only counter?

  • Simon Kissane 0

    Raymond, on the topic of performance counters, what is an “auxiliary counter”? Some functions relating to them are documented, e.g. ConvertAuxiliaryCounterToPerformanceCounter, but the docs never explain what an “auxiliary counter” is, why you’d want to use one, how you create one, etc.

Feedback usabilla icon