Skip to content

iflix/datadog-scala

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

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"

Packages

No packages published

Languages

  • Scala 100.0%