-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcheckermonitoring.go
95 lines (75 loc) · 2.42 KB
/
checkermonitoring.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package checkermonitoring
import (
"fmt"
"strconv"
"time"
"github.com/bolt-observer/graphite-golang"
"github.com/golang/glog"
)
// PREFIX is the prefix for all metrics
const PREFIX = "bolt.boltobserver"
// CheckerMonitoring struct
type CheckerMonitoring struct {
graphite *graphite.Graphite
env string
name string
}
// NewNopCheckerMonitoring constructs a new CheckerMonitoring that does nothing
func NewNopCheckerMonitoring(name string) *CheckerMonitoring {
g := graphite.NewGraphiteNop("", 2003)
g.DisableLog = true
return &CheckerMonitoring{graphite: g, name: name}
}
// NewCheckerMonitoring constructs a new CheckerMonitoring instance
func NewCheckerMonitoring(name, env, graphiteHost, graphitePort string) *CheckerMonitoring {
port, err := strconv.Atoi(graphitePort)
if err != nil {
port = 0
}
if graphiteHost == "" {
g := graphite.NewGraphiteNop(graphiteHost, port)
g.DisableLog = true
return &CheckerMonitoring{graphite: g}
}
g, err := graphite.NewGraphiteUDP(graphiteHost, port)
if err != nil {
g = graphite.NewGraphiteNop(graphiteHost, port)
g.DisableLog = false
}
err = g.Connect()
if err != nil {
g = graphite.NewGraphiteNop(graphiteHost, port)
g.DisableLog = false
}
return &CheckerMonitoring{graphite: g, env: env, name: name}
}
// MetricsTimer - is used to time function executions
func (c *CheckerMonitoring) MetricsTimer(name string, tags map[string]string) func() {
// A simple way to time function execution ala
// defer c.timer("checkall")()
if tags == nil {
tags = make(map[string]string)
}
tags["env"] = c.env
start := time.Now()
return func() {
duration := time.Since(start)
g := c.graphite
glog.V(2).Infof("Method %s took %d milliseconds\n", name, duration.Milliseconds())
g.SendMetrics([]graphite.Metric{
graphite.NewMetricWithTags(fmt.Sprintf("%s.%s.%s.duration", PREFIX, c.name, name), fmt.Sprintf("%d", duration.Milliseconds()), time.Now().Unix(), tags),
graphite.NewMetricWithTags(fmt.Sprintf("%s.%s.%s.invocation", PREFIX, c.name, name), "1", time.Now().Unix(), tags),
})
}
}
// MetricsReport - is used to report a metric
func (c *CheckerMonitoring) MetricsReport(name, val string, tags map[string]string) {
g := c.graphite
if tags == nil {
tags = make(map[string]string)
}
tags["env"] = c.env
g.SendMetrics([]graphite.Metric{
graphite.NewMetricWithTags(fmt.Sprintf("%s.%s.%s.%s", PREFIX, c.name, name, val), "1", time.Now().Unix(), tags),
})
}