15 references to UnixNanoSecondsToDateTime
Aspire.Dashboard (14)
Otlp\Model\MetricValues\DimensionScope.cs (5)
35
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(d.StartTimeUnixNano);
36
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(d.TimeUnixNano);
83
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(h.StartTimeUnixNano);
84
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(h.TimeUnixNano);
140
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(exemplar.TimeUnixNano);
Otlp\Model\OtlpLogEntryData.cs (1)
92
return OtlpHelpers.
UnixNanoSecondsToDateTime
(resolvedTimeUnixNano);
Otlp\Storage\SqliteTelemetryRepository.Metrics.Writes.cs (5)
192
var endTimeTicks = OtlpHelpers.
UnixNanoSecondsToDateTime
(point.TimeUnixNano).Ticks;
212
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(point.StartTimeUnixNano);
267
var endTimeTicks = OtlpHelpers.
UnixNanoSecondsToDateTime
(point.TimeUnixNano).Ticks;
286
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(point.StartTimeUnixNano);
656
var startTicks = OtlpHelpers.
UnixNanoSecondsToDateTime
(exemplar.TimeUnixNano).Ticks;
Otlp\Storage\SqliteTelemetryRepository.Traces.Writes.cs (3)
932
StartTime = OtlpHelpers.
UnixNanoSecondsToDateTime
(span.StartTimeUnixNano),
933
EndTime = OtlpHelpers.
UnixNanoSecondsToDateTime
(span.EndTimeUnixNano),
949
Time = OtlpHelpers.
UnixNanoSecondsToDateTime
(spanEvent.TimeUnixNano),
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\MetricsTests.cs (1)
333
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(nanoSeconds);