Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 859 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 859 Bytes

Build Status

Go Datadog

Simple Go interface to the Datadog API.

Metrics

The client can report metrics from go-metrics. Using either its DefaultRegistry, or a custom one, metrics can be periodically sent with code along the lines of the following:

import(
  "github.com/esailors/go-datadog"
  "os"
  "time"
)

host _ := os.Hostname()
dog := datadog.New(host, "dog-api-key")
go dog.DefaultReporter().Start(60 * time.Second)

And to use a custom registry, it would simply read:

host _ := os.Hostname()
dog := datadog.New(host, "dog-api-key")
reporter := getMyCustomRegistry()
go dog.Reporter(registry).Start(60 * time.Second)