Datadog-Scala
A Scala library for interacting with the Datadog API.
As of October 2014 this library covers all the methods in the Datadog API Documentation.
Example
import github.gphat.datadog.Client
import scala.concurrent.ExecutionContext.Implicits.global
val client = new Client(apiKey = "XXX", appKey = "XXX")
client.getAllTimeboards.foreach({ response =>
println(response.body)
})
Using It
This library is available on Maven Central.
// Add the Dep, 2.10 and 2.11 artifacts are published!
libraryDependencies += "com.github.gphat" %% "datadog-scala" % "1.1.3"