12 references to UnixNanoSecondsToDateTime
Aspire.Dashboard (11)
Otlp\Model\MetricValues\DimensionScope.cs (5)
34
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(d.StartTimeUnixNano);
35
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(d.TimeUnixNano);
82
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(h.StartTimeUnixNano);
83
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(h.TimeUnixNano);
131
var start = OtlpHelpers.
UnixNanoSecondsToDateTime
(exemplar.TimeUnixNano);
Otlp\Model\OtlpLogEntry.cs (1)
94
return OtlpHelpers.
UnixNanoSecondsToDateTime
(resolvedTimeUnixNano);
Otlp\Storage\TelemetryRepository.cs (3)
1448
StartTime = OtlpHelpers.
UnixNanoSecondsToDateTime
(span.StartTimeUnixNano),
1449
EndTime = OtlpHelpers.
UnixNanoSecondsToDateTime
(span.EndTimeUnixNano),
1465
Time = OtlpHelpers.
UnixNanoSecondsToDateTime
(e.TimeUnixNano),
src\Shared\ConsoleLogs\SharedAIHelpers.cs (1)
271
? OtlpHelpers.
UnixNanoSecondsToDateTime
(startNano)
src\Shared\Otlp\OtlpHelpers.cs (1)
97
return
UnixNanoSecondsToDateTime
(nanos.Value)
Aspire.Dashboard.Tests (1)
TelemetryRepositoryTests\MetricsTests.cs (1)
318
var end = OtlpHelpers.
UnixNanoSecondsToDateTime
(nanoSeconds);