add kamon-prometheus

pull/6134/head
Thibault Duplessis 2020-03-07 11:37:31 -06:00
parent 58f739e8e3
commit ecebf7d79c
2 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ libraryDependencies ++= Seq(
macwire.macros, macwire.util, play.json, jodaForms, ws,
scalaz, chess, compression, scalalib, hasher,
reactivemongo.driver, maxmind, prismic, scalatags,
kamon.core, kamon.influxdb, kamon.metrics,
kamon.core, kamon.influxdb, kamon.metrics, kamon.prometheus,
scrimage, scaffeine, lettuce, sprayJson
) ++ silencer.bundle ++ {
if (useEpoll) Seq(epoll, reactivemongo.epoll)

View File

@ -62,9 +62,10 @@ object Dependencies {
val json = "com.typesafe.play" %% "play-json" % "2.8.1"
}
object kamon {
val core = "io.kamon" %% "kamon-core" % "2.0.4"
val core = "io.kamon" %% "kamon-core" % "2.0.5"
val influxdb = "io.kamon" %% "kamon-influxdb" % "2.0.1-LILA"
val metrics = "io.kamon" %% "kamon-system-metrics" % "2.0.2"
val prometheus = "io.kamon" %% "kamon-prometheus" % "2.0.1"
}
object silencer {