aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-12-12 00:33:36 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2017-12-12 00:33:36 +0100
commit1860d08fdc3fde314e18c74f745c2861178388a7 (patch)
tree53c74cc86f0bc7d70e2e0db4c05dfd2123416560 /kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala
parenta302c285f7950e1125094fe69a892afa574ea90b (diff)
downloadKamon-1860d08fdc3fde314e18c74f745c2861178388a7.tar.gz
Kamon-1860d08fdc3fde314e18c74f745c2861178388a7.tar.bz2
Kamon-1860d08fdc3fde314e18c74f745c2861178388a7.zip
rename TickSnapshot to PeriodSnapshot, use Instant instead of plain Longs
Diffstat (limited to 'kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala75
1 files changed, 75 insertions, 0 deletions
diff --git a/kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala b/kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala
new file mode 100644
index 00000000..50a5f778
--- /dev/null
+++ b/kamon-core/src/main/scala/kamon/metric/PeriodSnapshot.scala
@@ -0,0 +1,75 @@
+/* =========================================================================================
+ * Copyright © 2013-2017 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
+package metric
+
+import java.time.Instant
+
+
+/**
+ * Contains immutable snapshots of all metrics recorded since from and until to.
+ *
+ * @param from
+ * @param to
+ * @param metrics
+ */
+case class PeriodSnapshot(from: Instant, to: Instant, metrics: MetricsSnapshot)
+
+case class MetricsSnapshot(
+ histograms: Seq[MetricDistribution],
+ rangeSamplers: Seq[MetricDistribution],
+ gauges: Seq[MetricValue],
+ counters: Seq[MetricValue]
+)
+
+/**
+ * Snapshot for instruments that internally track a single value. Meant to be used for counters and gauges.
+ *
+ */
+case class MetricValue(name: String, tags: Tags, unit: MeasurementUnit, value: Long)
+
+/**
+ * Snapshot for instruments that internally the distribution of values in a defined dynamic range. Meant to be used
+ * with histograms and min max counters.
+ */
+case class MetricDistribution(name: String, tags: Tags, unit: MeasurementUnit, dynamicRange: DynamicRange, distribution: Distribution)
+
+
+trait Distribution {
+ def buckets: Seq[Bucket]
+ def bucketsIterator: Iterator[Bucket]
+
+ def min: Long
+ def max: Long
+ def sum: Long
+ def count: Long
+ def percentile(p: Double): Percentile
+
+ def percentiles: Seq[Percentile]
+ def percentilesIterator: Iterator[Percentile]
+}
+
+trait Bucket {
+ def value: Long
+ def frequency: Long
+}
+
+trait Percentile {
+ def quantile: Double
+ def value: Long
+ def countUnderQuantile: Long
+}
+