aboutsummaryrefslogtreecommitdiff
path: root/kamon-system-metrics/src/main/scala/kamon/metrics/NetworkMetrics.scala
blob: 62fc3fcdc9d38c7f4971018c52cb946e3b49393f (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
 * =========================================================================================
 * Copyright © 2013-2014 the kamon project <http://kamon.io/>
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
 * except in compliance with the License. You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the
 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 * =========================================================================================
 */
package kamon.metrics

import akka.actor.ActorSystem
import com.typesafe.config.Config
import kamon.metric._
import kamon.metric.instrument.Gauge.CurrentValueCollector
import kamon.metric.instrument.{ Gauge, Histogram }
import kamon.system.SigarExtensionProvider
import org.hyperic.sigar.{ NetInterfaceStat, SigarProxy }

case class NetworkMetrics(name: String) extends MetricGroupIdentity {
  val category = NetworkMetrics
}

object NetworkMetrics extends MetricGroupCategory {
  val name = "network"

  case object RxBytes extends MetricIdentity { val name = "rx-bytes" }
  case object TxBytes extends MetricIdentity { val name = "tx-bytes" }
  case object RxErrors extends MetricIdentity { val name = "rx-errors" }
  case object TxErrors extends MetricIdentity { val name = "tx-errors" }

  case class NetworkMetricRecorder(rxBytes: Gauge, txBytes: Gauge, rxErrors: Gauge, txErrors: Gauge)
      extends MetricGroupRecorder {

    def collect(context: CollectionContext): MetricGroupSnapshot = {
      NetworkMetricSnapshot(rxBytes.collect(context), txBytes.collect(context), rxErrors.collect(context), txErrors.collect(context))
    }

    def cleanup: Unit = {}
  }

  case class NetworkMetricSnapshot(rxBytes: Histogram.Snapshot, txBytes: Histogram.Snapshot, rxErrors: Histogram.Snapshot, txErrors: Histogram.Snapshot)
      extends MetricGroupSnapshot {

    type GroupSnapshotType = NetworkMetricSnapshot

    def merge(that: GroupSnapshotType, context: CollectionContext): GroupSnapshotType = {
      NetworkMetricSnapshot(rxBytes.merge(that.rxBytes, context), txBytes.merge(that.txBytes, context), rxErrors.merge(that.rxErrors, context), txErrors.merge(that.txErrors, context))
    }

    val metrics: Map[MetricIdentity, MetricSnapshot] = Map(
      RxBytes -> rxBytes,
      TxBytes -> txBytes,
      RxErrors -> rxErrors,
      TxErrors -> txErrors)
  }

  val Factory = new MetricGroupFactory with SigarExtensionProvider {

    val interfaces: Set[String] = sigar.getNetInterfaceList.toSet

    type GroupRecorder = NetworkMetricRecorder

    def create(config: Config, system: ActorSystem): GroupRecorder = {
      val settings = config.getConfig("precision.system.network")

      val rxBytesConfig = settings.getConfig("rx-bytes")
      val txBytesConfig = settings.getConfig("tx-bytes")
      val rxErrorsConfig = settings.getConfig("rx-errors")
      val txErrorsConfig = settings.getConfig("tx-errors")

      new NetworkMetricRecorder(
        Gauge.fromConfig(rxBytesConfig, system)(collect(sigar, interfaces)(net  net.getRxBytes)),
        Gauge.fromConfig(txBytesConfig, system)(collect(sigar, interfaces)(net  net.getTxBytes)),
        Gauge.fromConfig(rxErrorsConfig, system)(collect(sigar, interfaces)(net  net.getRxErrors)),
        Gauge.fromConfig(txErrorsConfig, system)(collect(sigar, interfaces)(net  net.getTxErrors)))
    }

    private def collect(sigar: SigarProxy, interfaces: Set[String])(block: NetInterfaceStat  Long) = ()  {
      interfaces.foldLeft(0L) { (totalBytes, interface) 
        {
          val net = sigar.getNetInterfaceStat(interface)
          totalBytes + block(net)
        }
      }
    }
  }
}