public long GetCumulativeCount(ThreadPoolEventType @event)
 {
     return(_cumulativeCounterStream.GetLatestCount(@event));
 }
Esempio n. 2
0
 public long GetLatestCount(ThreadPoolEventType eventType)
 {
     return(Latest[(int)eventType]);
 }
 public long GetRollingCount(ThreadPoolEventType @event)
 {
     return(_rollingCounterStream.GetLatestCount(@event));
 }