4 writes to _startedRequests
System.Net.Http (4)
System\Net\Http\HttpTelemetry.AnyOS.cs (3)
51
_startedRequestsCounter ??= new PollingCounter("requests-started", this, () => Interlocked.Read(ref
_startedRequests
))
57
_startedRequestsPerSecondCounter ??= new IncrementingPollingCounter("requests-started-rate", this, () => Interlocked.Read(ref
_startedRequests
))
82
_currentRequestsCounter ??= new PollingCounter("current-requests", this, () => -Interlocked.Read(ref _stoppedRequests) + Interlocked.Read(ref
_startedRequests
))
System\Net\Http\HttpTelemetry.cs (1)
40
Interlocked.Increment(ref
_startedRequests
);