vote up 0 vote down star

Probably a rookie error, but i'm getting something strange. i'm trying to weave a .NET performance counter into an application.

When i call the incrementBy(value) method on my avg performance counter it is changing the RawValue of my base counter by value as well. i checked the variable names and think everything is correct.

Then when i call increment() on my base counter it adds 1 to the rawvalue of the avgcounter as well as incrementing the base counter... adding insult to injury!

Has anyone else seen this kind of behavior? Any suggestions for what's going on and how to fix it?

In code i'm using two different counters to measure the time a merge sort i wrote takes. i have a instantaneous counter for the elapsed time of the sort and an average counter.

Dim timePiece As New Stopwatch()

timePiece.Start()
MergeSort()
timePiece.Stop()

ElapsedCounter.RawValue = timePiece.ElapsedMilliseconds
AvgCounter.IncrementBy(timePiece.ElapsedMilliseconds)
AvgCounterBase.Increment()

What i'm seeing occur is:

'Elapsed counter works as expected  
'AvgCounter RawValue is 7, AvgCounterBase RawValue is also 7 before incrementing
 AvgCounter.IncrementBy(value) 'AvgCounter.RV is 7+value, AvgCounterBase is 7+value   
 AvgCounterBase.Increment()    'AvgCounter.RV is 7+value+1, AvgCounterBase is 7+value+1  

i think i may be using the counters wrong, but why does changing the rawvalue of the average seem to also change the rawvalue of the base? i dont think that's supposed to happen.

flag
I don't understand what you are expecting to happen. Could you clarify your example with concrete values, and what you expect rawValue to be after each statement? – Michael Donohue Jul 23 at 17:55
alright i edited the question. hopefully it's more clear now. Thanks for the input. – Jugglingnutcase Jul 24 at 13:47
hmm... i never did catch this one. But i refactored my code completely and that seemed to help. i'll just chalk this one up to poor design i guess. – Jugglingnutcase Oct 6 at 13:40

1 Answer

vote up 0 vote down

That behavior is how it should work. Increment and IncrementBy are essentially thread-safe versions of what you could do yourself by modifying RawValue directly. When the counter is only accessed by a single thread these statements:

counterVariable.RawValue++;
counterVariable.RawValue += 2;

are equivalent to these statements:

counterVariable.Increment();
counterVariable.IncrementBy(2);

If accessed by multiple threads, modifying RawValue directly is not thread-safe and can possibly lose some of the updates.

link|flag
i think i may have been unclear in my question... When i call: avgcounter.incrementBy(value) avgcounterBase.increment() my base counter gets incremented by value (after the call to avgcounter) and then gets incremented once more. Does your answer still apply with that clarification? – Jugglingnutcase Jul 23 at 17:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.