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)
39Interlocked.Increment(ref _startedRequests);