aboutsummaryrefslogtreecommitdiff
path: root/kamon-newrelic/src/main/scala/kamon/newrelic/Metric.scala
blob: 14541483061fc38c91ad39da18d739653f32bea6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package kamon.newrelic

import kamon.metric.instrument.{ Counter, Histogram }
import kamon.metric.{ MetricSnapshot, Scale }

case class MetricID(name: String, scope: Option[String])
case class MetricData(callCount: Long, total: Double, totalExclusive: Double, min: Double, max: Double, sumOfSquares: Double) {
  def merge(that: MetricData): MetricData =
    MetricData(
      callCount + that.callCount,
      total + that.total,
      totalExclusive + that.totalExclusive,
      math.min(min, that.min),
      math.max(max, that.max),
      sumOfSquares + that.sumOfSquares)
}

object Metric {

  def fromKamonMetricSnapshot(snapshot: MetricSnapshot, name: String, scope: Option[String], targetScale: Scale): Metric = {
    snapshot match {
      case hs: Histogram.Snapshot 
        var total: Double = 0D
        var sumOfSquares: Double = 0D
        val scaledMin = Scale.convert(hs.scale, targetScale, hs.min)
        val scaledMax = Scale.convert(hs.scale, targetScale, hs.max)

        hs.recordsIterator.foreach { record 
          val scaledValue = Scale.convert(hs.scale, targetScale, record.level)

          total += scaledValue * record.count
          sumOfSquares += (scaledValue * scaledValue) * record.count
        }

        (MetricID(name, scope), MetricData(hs.numberOfMeasurements, total, total, scaledMin, scaledMax, sumOfSquares))

      case cs: Counter.Snapshot 
        (MetricID(name, scope), MetricData(cs.count, cs.count, cs.count, 0, cs.count, cs.count * cs.count))
    }
  }
}

case class TimeSliceMetrics(from: Long, to: Long, metrics: Map[MetricID, MetricData]) {
  import kamon.metric.combineMaps

  def merge(that: TimeSliceMetrics): TimeSliceMetrics = {
    val mergedFrom = math.min(from, that.from)
    val mergedTo = math.max(to, that.to)
    val mergedMetrics = combineMaps(metrics, that.metrics)((l, r)  l.merge(r))

    TimeSliceMetrics(mergedFrom, mergedTo, mergedMetrics)
  }
}

case class MetricBatch(runID: Long, timeSliceMetrics: TimeSliceMetrics)