-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmain.go
39 lines (31 loc) · 836 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"log"
"os"
"time"
metrics "github.com/rcrowley/go-metrics"
datadog "github.com/syntaqx/go-metrics-datadog"
)
func main() {
// https://docs.datadoghq.com/developers/dogstatsd
statsdAddr, ok := os.LookupEnv("DD_AGENT_HOST")
if !ok {
statsdAddr = "127.0.0.1:8125"
}
ddOpts := []datadog.ReporterOption{
datadog.UseFlushInterval(time.Second * 10),
datadog.UsePercentiles([]float64{0.25, 0.99}),
}
reporter, err := datadog.NewReporter(nil, statsdAddr, ddOpts...)
if err != nil {
log.Fatal(err)
}
// configure a prefix, and send the EC2 availability zone as a tag with
// every metric.
reporter.Client.Namespace = "test."
reporter.Client.Tags = append(reporter.Client.Tags, "us-east-1a")
go reporter.Flush()
cn := metrics.NewCounter()
metrics.Register("first.count", cn)
cn.Inc(1)
}