go-datadog-api
go-datadog-api copied to clipboard
A Go implementation of the Datadog API.
Seen in https://travis-ci.org/zorkian/go-datadog-api/jobs/418580761 (Go 1.9): ```bash --- PASS: TestDowntimeLinkedToMonitorCreateAndDelete (0.53s) === RUN TestDowntimeUpdate --- FAIL: TestDowntimeUpdate (0.32s) panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: runtime...
Follow up from #163 > When reading up on the API doco at https://docs.datadoghq.com/api/?lang=bash#monitors I noticed there are quite a few changes possible in regards to states: # Input -...
Here is my code to post metrics. Metrics explorer could not find the sent metrics. But there is no error shown ``` datadogClient := datadog.NewClient(config.API_KEY,config.APP_KEY) data := []datadog.DataPoint{datadog.DataPoint{1.0,15.0}} test:= datadog.Metric{}...