aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test
diff options
context:
space:
mode:
authorIvan Topolnak <itopolnak@despegar.com>2014-03-06 18:08:59 -0300
committerIvan Topolnak <itopolnak@despegar.com>2014-03-06 18:08:59 -0300
commiteb7c41c17ced2a749fe2c63794531f067d76ea7b (patch)
tree2c1cca7523c67d79c5be63f3cd9fac70aed09645 /kamon-core/src/test
parentda2ba240b2202639cae75928232f3f39228dbc3d (diff)
downloadKamon-eb7c41c17ced2a749fe2c63794531f067d76ea7b.tar.gz
Kamon-eb7c41c17ced2a749fe2c63794531f067d76ea7b.tar.bz2
Kamon-eb7c41c17ced2a749fe2c63794531f067d76ea7b.zip
support for custom metrics
Diffstat (limited to 'kamon-core/src/test')
-rw-r--r--kamon-core/src/test/scala/kamon/metrics/CustomMetricSpec.scala61
1 files changed, 61 insertions, 0 deletions
diff --git a/kamon-core/src/test/scala/kamon/metrics/CustomMetricSpec.scala b/kamon-core/src/test/scala/kamon/metrics/CustomMetricSpec.scala
new file mode 100644
index 00000000..f5caf6e9
--- /dev/null
+++ b/kamon-core/src/test/scala/kamon/metrics/CustomMetricSpec.scala
@@ -0,0 +1,61 @@
+/*
+ * =========================================================================================
+ * 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.metrics
+
+import akka.testkit.TestKitBase
+import org.scalatest.{ Matchers, WordSpecLike }
+import akka.actor.ActorSystem
+import scala.concurrent.duration._
+import com.typesafe.config.ConfigFactory
+import kamon.Kamon
+import kamon.metrics.Subscriptions.TickMetricSnapshot
+
+class CustomMetricSpec extends TestKitBase with WordSpecLike with Matchers {
+ implicit lazy val system: ActorSystem = ActorSystem("actor-metrics-spec", ConfigFactory.parseString(
+ """
+ |kamon.metrics {
+ | filters = [
+ | {
+ | custom-metric {
+ | includes = [ "test/*" ]
+ | excludes = [ ]
+ | }
+ | }
+ | ]
+ |}
+ """.stripMargin))
+
+ "the Kamon custom metrics support" should {
+ "allow registering a custom metric with the Metrics extension" in {
+ val recorder = Kamon(Metrics).register(CustomMetric("test/sample-counter"), CustomMetric.withConfig(100, 2))
+
+ recorder should be('defined)
+ }
+
+ "allow subscriptions to custom metrics using the default subscription protocol" in {
+ val recorder = Kamon(Metrics).register(CustomMetric("test/sample-counter"), CustomMetric.withConfig(100, 2))
+ recorder.map(_.record(100))
+
+ Kamon(Metrics).subscribe(CustomMetric, "test/sample-counter", testActor)
+
+ println(within(5 seconds) {
+ expectMsgType[TickMetricSnapshot]
+ }.metrics(CustomMetric("test/sample-counter")))
+ }
+ }
+
+}