delta.go 225 B

1234567891011
  1. package metrics
  2. import "math"
  3. func calculateDelta(oldValue, newValue int64) int64 {
  4. if oldValue < newValue {
  5. return newValue - oldValue
  6. } else {
  7. return (math.MaxInt64 - oldValue) + (newValue - math.MinInt64) + 1
  8. }
  9. }