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)
142Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 203Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 240Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 291Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 367Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 441if (_operationDurationHistogram.Enabled && stopwatch is not null) 458_operationDurationHistogram.Record(stopwatch.Elapsed.TotalSeconds, tags);