aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-09-09 00:58:03 -0300
committerDiego <diegolparra@gmail.com>2014-09-09 01:05:42 -0300
commit54e5f1c7bf9b4b04fd26822e4d1f53ef9f22251c (patch)
tree30e2f5595446e56d765a7ece7246b9b69054dd17 /kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
parent0d7fa6333c7d6e865575522a0015c93ff3fbbe1b (diff)
downloadKamon-54e5f1c7bf9b4b04fd26822e4d1f53ef9f22251c.tar.gz
Kamon-54e5f1c7bf9b4b04fd26822e4d1f53ef9f22251c.tar.bz2
Kamon-54e5f1c7bf9b4b04fd26822e4d1f53ef9f22251c.zip
= play:
* remove from publishErrorMessage method * refactor onError method in RequestInstrumentation * refactor WSInstrumentation in order to propagate the TraceContext when a WS call is executed outside an Action * improve tests * closes #33
Diffstat (limited to 'kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala2
1 files changed, 1 insertions, 1 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 f6b68617..9b541a32 100644
--- a/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
+++ b/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorCellInstrumentation.scala
@@ -170,7 +170,7 @@ object ActorCellInstrumentation {
implicit class PimpedActorCellMetrics(cell: ActorCellMetrics) {
def onRoutedActorCell(block: ActorCellMetrics ⇒ Unit) = cell match {
case routedActorCell: RoutedActorCell ⇒ block(cell)
- case everyThingElse ⇒
+ case everythingElse ⇒
}
}
} \ No newline at end of file