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)
119
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
147
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
253
if (
_operationDurationHistogram
.Enabled && stopwatch is not null)
263
_operationDurationHistogram
.Record(stopwatch.Elapsed.TotalSeconds, tags);