5 references to LongPointType
Aspire.Dashboard (5)
Otlp\Storage\SqliteTelemetryRepository.Metrics.Reads.cs (1)
245LongPointType => 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)
180NumberDataPoint.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); 225IntegerValue = pointType == LongPointType ? point.AsInt : (long?)null,