1 write to Time
Aspire.Dashboard (1)
Otlp\Storage\TelemetryRepository.cs (1)
1318Time = OtlpHelpers.UnixNanoSecondsToDateTime(e.TimeUnixNano),
4 references to Time
Aspire.Dashboard (4)
Components\Controls\SpanDetails.razor.cs (1)
65ViewModel.Span.Events.Where(e => e.Name.Contains(_filter, StringComparison.CurrentCultureIgnoreCase)).OrderBy(e => e.Time).AsQueryable();
Model\GenAI\GenAIVisualizerDialogViewModel.cs (1)
286foreach (var (item, index) in viewModel.Span.Events.OrderBy(i => i.Time).Select((l, i) => (l, i)))
Model\TelemetryExportService.cs (1)
306TimeUnixNano = OtlpHelpers.DateTimeToUnixNanoseconds(evt.Time),
Otlp\Model\OtlpSpanEvent.cs (1)
22string IPropertyGridItem.Name => DurationFormatter.FormatDuration(Time - span.StartTime, CultureInfo.CurrentCulture);