aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2014-08-02 17:36:26 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2014-08-02 17:36:26 -0300
commitcefc5c0e6cd0c5de49aa6bb748266d575fa4d728 (patch)
treec7cfd773b4f43c57b2828a910c5ee5dc49ea7c23 /kamon-core/src/main
parenta6741bbf57eb8c9088190778d6cb6da89f895925 (diff)
downloadKamon-cefc5c0e6cd0c5de49aa6bb748266d575fa4d728.tar.gz
Kamon-cefc5c0e6cd0c5de49aa6bb748266d575fa4d728.tar.bz2
Kamon-cefc5c0e6cd0c5de49aa6bb748266d575fa4d728.zip
= core: cleanup actor metrics recorder after the actor is stopped, closes #69
Diffstat (limited to 'kamon-core/src/main')
-rw-r--r--kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala2
-rw-r--r--kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala2
2 files changed, 1 insertions, 3 deletions
diff --git a/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala b/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
index 5fce4555..446bc487 100644
--- a/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
+++ b/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
@@ -82,7 +82,6 @@ class ActorCellInstrumentation {
val cellWithMetrics = cell.asInstanceOf[ActorCellMetrics]
cellWithMetrics.actorMetricsRecorder.map { p ⇒
- cellWithMetrics.mailboxSizeCollectorCancellable.cancel()
Kamon(Metrics)(cell.system).unregister(cellWithMetrics.metricIdentity)
}
}
@@ -103,7 +102,6 @@ class ActorCellInstrumentation {
trait ActorCellMetrics {
var metricIdentity: ActorMetrics = _
var actorMetricsRecorder: Option[ActorMetricsRecorder] = _
- var mailboxSizeCollectorCancellable: Cancellable = _
}
@Aspect
diff --git a/kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala b/kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala
index 00214f51..51cda6b2 100644
--- a/kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala
+++ b/kamon-core/src/main/scala/kamon/metric/MetricsExtension.scala
@@ -52,7 +52,7 @@ class MetricsExtension(system: ExtendedActorSystem) extends Kamon.Extension {
}
def unregister(identity: MetricGroupIdentity): Unit = {
- storage.remove(identity)
+ storage.remove(identity).map(_.cleanup)
}
def subscribe[C <: MetricGroupCategory](category: C, selection: String, subscriber: ActorRef, permanently: Boolean = false): Unit =