aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/instrumentation
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
commit6884c0f3f7bf9376e9eaf4f330d7622c142399e3 (patch)
tree5953082053452a644b0f3323f4216c1808ee3ccb /kamon-core/src/main/scala/kamon/instrumentation
parent23785a41dc3a0e9651ba87bc9dc255932ea64bd6 (diff)
downloadKamon-6884c0f3f7bf9376e9eaf4f330d7622c142399e3.tar.gz
Kamon-6884c0f3f7bf9376e9eaf4f330d7622c142399e3.tar.bz2
Kamon-6884c0f3f7bf9376e9eaf4f330d7622c142399e3.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')
-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