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)
123
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
151
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
257
if (
_operationDurationHistogram
.Enabled && stopwatch is not null)
267
_operationDurationHistogram
.Record(stopwatch.Elapsed.TotalSeconds, tags);