Sample
data class Sample(val sequenceId: Long, val time: Instant, val value: Double) : Comparable<DownsampledInstantaneousMetricData.Sample>
A single metric sample at a specific point in time.
The sequence ID serves as a tie-breaker for samples with identical timestamps, ensuring they are treated as distinct in the sorted set and don't accidentally overwrite each other.