aboutsummaryrefslogtreecommitdiff
path: root/kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala
diff options
context:
space:
mode:
authorIvan Topolnak <itopolnak@despegar.com>2014-02-04 18:16:07 -0300
committerIvan Topolnak <itopolnak@despegar.com>2014-02-04 18:16:07 -0300
commit57e433c07a271b4e5e4159500cdc828cd7bb6a83 (patch)
tree6b2928dcf3c1dc68c4131aa864a0a0f53ccf2160 /kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala
parent7307e1cc97e0363d1fb4cc116fc69a5272ca3730 (diff)
downloadKamon-57e433c07a271b4e5e4159500cdc828cd7bb6a83.tar.gz
Kamon-57e433c07a271b4e5e4159500cdc828cd7bb6a83.tar.bz2
Kamon-57e433c07a271b4e5e4159500cdc828cd7bb6a83.zip
partial rewrite of kamon-newrelic
Diffstat (limited to 'kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala')
-rw-r--r--kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala38
1 files changed, 38 insertions, 0 deletions
diff --git a/kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala b/kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala
new file mode 100644
index 00000000..39177e30
--- /dev/null
+++ b/kamon-newrelic/src/main/scala/kamon/newrelic/MetricTranslator.scala
@@ -0,0 +1,38 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013 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.newrelic
+
+import akka.actor.{Props, ActorRef, Actor}
+import kamon.metrics.Subscriptions.TickMetricSnapshot
+import kamon.newrelic.MetricTranslator.TimeSliceMetrics
+
+class MetricTranslator(receiver: ActorRef) extends Actor with WebTransactionMetrics {
+
+ def receive = {
+ case TickMetricSnapshot(from, to, metrics) =>
+ val allMetrics = collectWebTransactionMetrics(metrics)
+
+ receiver ! TimeSliceMetrics(from, to, allMetrics)
+ }
+
+}
+
+object MetricTranslator {
+ case class TimeSliceMetrics(from: Long, to: Long, metrics: Seq[NewRelic.Metric])
+
+ def props(receiver: ActorRef): Props = Props(new MetricTranslator(receiver))
+}