aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorMichal Matloka <michal.matloka@softwaremill.com>2018-03-02 11:22:31 +0100
committerMichal Matloka <michal.matloka@softwaremill.com>2018-03-02 11:22:31 +0100
commitb8218c95c4836e8dc377c2ec01ec59972b1e5274 (patch)
tree16e262f99a1cf0ece22ed4dffec0112df663e294 /build.sbt
parent61eb81faf583eaafb0aee4620cd2df9ad5833abd (diff)
downloadsttp-b8218c95c4836e8dc377c2ec01ec59972b1e5274.tar.gz
sttp-b8218c95c4836e8dc377c2ec01ec59972b1e5274.tar.bz2
sttp-b8218c95c4836e8dc377c2ec01ec59972b1e5274.zip
Prometheus backend
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt12
1 files changed, 12 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 33b51a9..775a64c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -58,6 +58,7 @@ lazy val rootProject = (project in file("."))
circe,
json4s,
braveBackend,
+ prometheusBackend,
tests
)
@@ -188,6 +189,17 @@ lazy val braveBackend: Project = (project in file("metrics/brave-backend"))
)
).dependsOn(core)
+lazy val prometheusBackend: Project = (project in file("metrics/prometheus-backend"))
+ .settings(commonSettings: _*)
+ .settings(
+ name := "prometheus-backend",
+ libraryDependencies ++= Seq(
+ "io.prometheus" % "simpleclient" % "0.3.0",
+ scalaTest % "test"
+ )
+ )
+ .dependsOn(core)
+
lazy val tests: Project = (project in file("tests"))
.settings(commonSettings: _*)
.settings(