1 write to _operationDurationHistogram
Microsoft.Extensions.AI (1)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (1)
73_operationDurationHistogram = _meter.CreateHistogram<double>(
4 references to _operationDurationHistogram
Microsoft.Extensions.AI (4)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (4)
123Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 151Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 257if (_operationDurationHistogram.Enabled && stopwatch is not null) 267_operationDurationHistogram.Record(stopwatch.Elapsed.TotalSeconds, tags);