aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/module/ReportingModule.scala
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-03-18 13:44:50 +0100
committerGitHub <noreply@github.com>2019-03-18 13:44:50 +0100
commit8efb3b408a876a3dfdac79580773279125cb4135 (patch)
tree96fd746fc13f4ffb914d8e59c4ea074513877556 /kamon-core/src/main/scala/kamon/module/ReportingModule.scala
parente311df4b3a272f4f160857f718a96ec316a2fc06 (diff)
parentec83a72879378bc9eedea24f828e4d30fed95e92 (diff)
downloadKamon-8efb3b408a876a3dfdac79580773279125cb4135.tar.gz
Kamon-8efb3b408a876a3dfdac79580773279125cb4135.tar.bz2
Kamon-8efb3b408a876a3dfdac79580773279125cb4135.zip
Merge pull request #569 from ivantopo/status-page
Status page
Diffstat (limited to 'kamon-core/src/main/scala/kamon/module/ReportingModule.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/module/ReportingModule.scala21
1 files changed, 0 insertions, 21 deletions
diff --git a/kamon-core/src/main/scala/kamon/module/ReportingModule.scala b/kamon-core/src/main/scala/kamon/module/ReportingModule.scala
deleted file mode 100644
index 0e88fc23..00000000
--- a/kamon-core/src/main/scala/kamon/module/ReportingModule.scala
+++ /dev/null
@@ -1,21 +0,0 @@
-package kamon
-package module
-
-import kamon.trace.Span
-import kamon.metric.PeriodSnapshot
-
-/**
- * Modules implementing this trait will get registered for periodically receiving metric period snapshots. The
- * frequency of the period snapshots is controlled by the kamon.metric.tick-interval setting.
- */
-trait MetricReporter extends Module {
- def reportPeriodSnapshot(snapshot: PeriodSnapshot): Unit
-}
-
-/**
- * Modules implementing this trait will get registered for periodically receiving span batches. The frequency of the
- * span batches is controlled by the kamon.trace.tick-interval setting.
- */
-trait SpanReporter extends Module {
- def reportSpans(spans: Seq[Span.FinishedSpan]): Unit
-}