1 write to _operationDurationHistogram
Microsoft.Extensions.AI (1)
Files\OpenTelemetryHostedFileClient.cs (1)
85
_operationDurationHistogram
= _meter.CreateHistogram<double>(
7 references to _operationDurationHistogram
Microsoft.Extensions.AI (7)
Files\OpenTelemetryHostedFileClient.cs (7)
142
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
203
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
240
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
291
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
367
Stopwatch? stopwatch =
_operationDurationHistogram
.Enabled ? Stopwatch.StartNew() : null;
441
if (
_operationDurationHistogram
.Enabled && stopwatch is not null)
458
_operationDurationHistogram
.Record(stopwatch.Elapsed.TotalSeconds, tags);