1 write to _operationDurationHistogram
Microsoft.Extensions.AI (1)
ChatCompletion\OpenTelemetryChatClient.cs (1)
74_operationDurationHistogram = OtelMetricHelpers.CreateGenAIOperationDurationHistogram(_meter);
4 references to _operationDurationHistogram
Microsoft.Extensions.AI (4)
ChatCompletion\OpenTelemetryChatClient.cs (4)
142Stopwatch? stopwatch = _operationDurationHistogram.Enabled ? Stopwatch.StartNew() : null; 174Stopwatch? stopwatch = _operationDurationHistogram.Enabled || recordChunkHistograms || activity is not null ? Stopwatch.StartNew() : null; 404if (_operationDurationHistogram.Enabled && stopwatch is not null) 414_operationDurationHistogram.Record(stopwatch.Elapsed.TotalSeconds, tags);