5 references to LongPointType
Aspire.Dashboard (5)
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (1)
245
LongPointType
=> new MetricValue<long>(point.IntegerValue!.Value, new DateTime(point.StartTimeTicks, DateTimeKind.Utc), new DateTime(point.EndTimeTicks, DateTimeKind.Utc)),
Otlp\Storage\SqliteTelemetryRepository.Metrics.Writes.cs (4)
180
NumberDataPoint.ValueOneofCase.AsInt =>
LongPointType
,
190
? pointType ==
LongPointType
? pendingLatest.IntegerValue == point.AsInt : pendingLatest.DoubleValue == point.AsDouble
191
: pointType ==
LongPointType
? latest?.IntegerValue == point.AsInt : latest?.DoubleValue == point.AsDouble);
225
IntegerValue = pointType ==
LongPointType
? point.AsInt : (long?)null,