1 write to counters
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\Diagnostics\WorkflowServiceHostPerformanceCounters.cs (1)
280this.counters = new CounterData[(int)PerfCounters.TotalCounters];
28 references to counters
System.ServiceModel.Activities (28)
System\ServiceModel\Activities\Diagnostics\WorkflowServiceHostPerformanceCounters.cs (28)
283this.counters[i] = this.workflowServiceHostCounterSetInstance.Counters[i]; 284this.counters[i].Value = 0; 314this.counters[(int)PerfCounters.WorkflowsCreated].Increment(); 315this.counters[(int)PerfCounters.WorkflowsCreatedPerSecond].Increment(); 325this.counters[(int)PerfCounters.WorkflowsExecuting].Increment(); 329this.counters[(int)PerfCounters.WorkflowsExecuting].Decrement(); 338this.counters[(int)PerfCounters.WorkflowsCompleted].Increment(); 339this.counters[(int)PerfCounters.WorkflowsCompletedPerSecond].Increment(); 347this.counters[(int)PerfCounters.WorkflowsAborted].Increment(); 348this.counters[(int)PerfCounters.WorkflowsAbortedPerSecond].Increment(); 356this.counters[(int)PerfCounters.WorkflowsInMemory].Increment(); 364if (this.counters[(int)PerfCounters.WorkflowsInMemory].RawValue > 0 ) 365this.counters[(int)PerfCounters.WorkflowsInMemory].Decrement(); 373this.counters[(int)PerfCounters.WorkflowsPersisted].Increment(); 374this.counters[(int)PerfCounters.WorkflowsPersistedPerSecond].Increment(); 382this.counters[(int)PerfCounters.WorkflowsTerminated].Increment(); 383this.counters[(int)PerfCounters.WorkflowsTerminatedPerSecond].Increment(); 391this.counters[(int)PerfCounters.WorkflowsLoaded].Increment(); 392this.counters[(int)PerfCounters.WorkflowsLoadedPerSecond].Increment(); 400this.counters[(int)PerfCounters.WorkflowsUnloaded].Increment(); 401this.counters[(int)PerfCounters.WorkflowsUnloadedPerSecond].Increment(); 409this.counters[(int)PerfCounters.WorkflowsSuspended].Increment(); 410this.counters[(int)PerfCounters.WorkflowsSuspendedPerSecond].Increment(); 418this.counters[(int)PerfCounters.WorkflowsIdlePerSecond].Increment(); 426this.counters[(int)PerfCounters.AverageWorkflowLoadTime].IncrementBy(time); 427this.counters[(int)PerfCounters.AverageWorkflowLoadTimeBase].Increment(); 435this.counters[(int)PerfCounters.AverageWorkflowPersistTime].IncrementBy(time); 436this.counters[(int)PerfCounters.AverageWorkflowPersistTimeBase].Increment();