Enum PerfCounterType
Specifies the formula used to update the performance counters.
Namespace: Microsoft.Psi
Assembly: Microsoft.Psi.dll
Syntax
public enum PerfCounterType : int
Fields
Name | Description |
---|---|
AverageBase | A base counter that is used in the calculation of time or count averages, such as Average |
AverageCount64 | An average counter that shows how many items are processed, on average, during an operation. Counters of this type display a ratio of the items processed to the number of operations completed. The ratio is calculated by comparing the number of items processed during the last interval to the number of operations completed during the last interval. |
NumberOfItems32 | An instantaneous counter that shows the most recently observed value. Used, for example, to maintain a simple count of items or operations. |
RateOfCountsPerSecond32 | A difference counter that shows the average number of operations completed during each second of the sample interval. Counters of this type measure time in ticks of the system clock. |