1 write to _operationDurationHistogram
Microsoft.Extensions.AI (1)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (1)
71_operationDurationHistogram = _meter.CreateHistogram<double>(
4 references to _operationDurationHistogram
Microsoft.Extensions.AI (4)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (4)
119Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 147Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 253if (_operationDurationHistogram.Enabled && stopwatch is not null) 263_operationDurationHistogram.Record(stopwatch.Elapsed.TotalSeconds, tags);