aboutsummaryrefslogtreecommitdiff
path: root/kamon-statsd/src/test/scala/kamon/statsd
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2014-04-07 23:57:57 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2014-04-07 23:57:57 -0300
commitded044c87eeb5313ec4067dc660ea92cccb4b098 (patch)
tree8bcb2fff795ec51401b7fbee02b4dd03d7ef9f6b /kamon-statsd/src/test/scala/kamon/statsd
parent1affa4763f101a6fd16b2f24ac45fcc20c52af60 (diff)
downloadKamon-ded044c87eeb5313ec4067dc660ea92cccb4b098.tar.gz
Kamon-ded044c87eeb5313ec4067dc660ea92cccb4b098.tar.bz2
Kamon-ded044c87eeb5313ec4067dc660ea92cccb4b098.zip
! statsd: take advantange of the multi-measurement format
Diffstat (limited to 'kamon-statsd/src/test/scala/kamon/statsd')
-rw-r--r--kamon-statsd/src/test/scala/kamon/statsd/StatsDMetricSenderSpec.scala144
1 files changed, 144 insertions, 0 deletions
diff --git a/kamon-statsd/src/test/scala/kamon/statsd/StatsDMetricSenderSpec.scala b/kamon-statsd/src/test/scala/kamon/statsd/StatsDMetricSenderSpec.scala
new file mode 100644
index 00000000..caeaee28
--- /dev/null
+++ b/kamon-statsd/src/test/scala/kamon/statsd/StatsDMetricSenderSpec.scala
@@ -0,0 +1,144 @@
+/*
+ * =========================================================================================
+ * 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.statsd
+
+import akka.testkit.{TestKitBase, TestProbe}
+import akka.actor.{ActorRef, Props, ActorSystem}
+import org.scalatest.{Matchers, WordSpecLike}
+import kamon.metrics._
+import akka.io.Udp
+import org.HdrHistogram.HdrRecorder
+import kamon.metrics.Subscriptions.TickMetricSnapshot
+import java.lang.management.ManagementFactory
+import com.typesafe.config.ConfigFactory
+
+class StatsDMetricSenderSpec extends TestKitBase with WordSpecLike with Matchers {
+
+ implicit lazy val system: ActorSystem = ActorSystem("statsd-metric-sender-spec", ConfigFactory.parseString(
+ """
+ |kamon.statsd {
+ | max-packet-size = 256
+ |}
+ """.stripMargin
+ ))
+
+ "the StatsDMetricSender" should {
+ "flush the metrics data after processing the tick, even if the max-packet-size is not reached" in new UdpListenerFixture {
+ val testMetricName = "test-metric"
+ val testMetricKey = buildMetricKey(testMetricName)
+ val testRecorder = HdrRecorder(1000L, 2, Scale.Unit)
+ testRecorder.record(10L)
+
+ val udp = setup(Map(testMetricName -> testRecorder.collect()))
+ val Udp.Send(data, _, _) = udp.expectMsgType[Udp.Send]
+
+ data.utf8String should be(s"$testMetricKey:10|ms")
+ }
+
+ "render several measurements of the same key under a single (key + multiple measurements) packet" in new UdpListenerFixture {
+ val testMetricName = "test-metric"
+ val testMetricKey = buildMetricKey(testMetricName)
+ val testRecorder = HdrRecorder(1000L, 2, Scale.Unit)
+ testRecorder.record(10L)
+ testRecorder.record(11L)
+ testRecorder.record(12L)
+
+ val udp = setup(Map(testMetricName -> testRecorder.collect()))
+ val Udp.Send(data, _, _) = udp.expectMsgType[Udp.Send]
+
+ data.utf8String should be(s"$testMetricKey:10|ms:11|ms:12|ms")
+ }
+
+ "include the correspondent sampling rate when rendering multiple occurrences of the same value" in new UdpListenerFixture {
+ val testMetricName = "test-metric"
+ val testMetricKey = buildMetricKey(testMetricName)
+ val testRecorder = HdrRecorder(1000L, 2, Scale.Unit)
+ testRecorder.record(10L)
+ testRecorder.record(10L)
+
+ val udp = setup(Map(testMetricName -> testRecorder.collect()))
+ val Udp.Send(data, _, _) = udp.expectMsgType[Udp.Send]
+
+ data.utf8String should be(s"$testMetricKey:10|ms|@0.5")
+ }
+
+
+ "render multiple keys in the same packet using newline as separator" in new UdpListenerFixture {
+ val firstTestMetricName = "first-test-metric"
+ val firstTestMetricKey = buildMetricKey(firstTestMetricName)
+ val secondTestMetricName = "second-test-metric"
+ val secondTestMetricKey = buildMetricKey(secondTestMetricName)
+ val firstTestRecorder = HdrRecorder(1000L, 2, Scale.Unit)
+ val secondTestRecorder = HdrRecorder(1000L, 2, Scale.Unit)
+
+ firstTestRecorder.record(10L)
+ firstTestRecorder.record(10L)
+ firstTestRecorder.record(11L)
+
+ secondTestRecorder.record(20L)
+ secondTestRecorder.record(21L)
+
+ val udp = setup(Map(
+ firstTestMetricName -> firstTestRecorder.collect(),
+ secondTestMetricName -> secondTestRecorder.collect()))
+ val Udp.Send(data, _, _) = udp.expectMsgType[Udp.Send]
+
+ data.utf8String should be(s"$firstTestMetricKey:10|ms|@0.5:11|ms\n$secondTestMetricKey:20|ms:21|ms")
+ }
+ }
+
+
+ trait UdpListenerFixture {
+ val localhostName = ManagementFactory.getRuntimeMXBean.getName.split('@')(1)
+
+ def buildMetricKey(metricName: String): String = s"Kamon.$localhostName.test-metric-category.test-group.$metricName"
+
+ def setup(metrics: Map[String, MetricSnapshotLike]): TestProbe = {
+ val udp = TestProbe()
+ val metricsSender = system.actorOf(Props(new StatsDMetricsSender {
+ override def udpExtension(implicit system: ActorSystem): ActorRef = udp.ref
+ }))
+
+ // Setup the SimpleSender
+ udp.expectMsgType[Udp.SimpleSender]
+ udp.reply(Udp.SimpleSenderReady)
+
+
+ val testGroupIdentity = new MetricGroupIdentity {
+ val name: String = "test-group"
+ val category: MetricGroupCategory = new MetricGroupCategory {
+ val name: String = "test-metric-category"
+ }
+ }
+
+ val testMetrics = for((metricName, snapshot) <- metrics) yield {
+ val testMetricIdentity = new MetricIdentity {
+ val name: String = metricName
+ val tag: String = ""
+ }
+
+ (testMetricIdentity, snapshot)
+ }
+
+ metricsSender ! TickMetricSnapshot(0, 0, Map(testGroupIdentity -> new MetricGroupSnapshot {
+ val metrics: Map[MetricIdentity, MetricSnapshotLike] = testMetrics.toMap
+ }))
+
+ udp
+ }
+ }
+}