1 write to _operationDurationHistogram
Microsoft.Extensions.AI (1)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (1)
72
_operationDurationHistogram
= _meter.CreateHistogram<double>(
4 references to _operationDurationHistogram
Microsoft.Extensions.AI (4)
SpeechToText\OpenTelemetrySpeechToTextClient.cs (4)
120
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
148
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
254
if (
_operationDurationHistogram
.Enabled && stopwatch is not null)
264
_operationDurationHistogram
.Record(stopwatch.Elapsed.TotalSeconds, tags);