-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcse_reporter.go
executable file
·83 lines (72 loc) · 2.17 KB
/
cse_reporter.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
package metricsink
// Forked from github.com/afex/hystrix-go
// Some parts of this file have been modified to make it functional in this package
import (
"crypto/tls"
"fmt"
"github.com/go-chassis/go-chassis/v2/core/common"
"github.com/go-chassis/go-chassis/v2/third_party/forked/afex/hystrix-go/hystrix"
"github.com/go-chassis/openlog"
"net/http"
"sync"
"time"
)
var initOnce = sync.Once{}
// CseCollectorConfig is a struct to keep monitoring information
type CseCollectorConfig struct {
// CseMonitorAddr is the http address of the csemonitor server
CseMonitorAddr string
// Headers for csemonitor server
Header http.Header
// TickInterval specifies the period that this collector will send metrics to the server.
TimeInterval time.Duration
// Config structure to configure a TLS client for sending Metric data
TLSConfig *tls.Config
Env string
}
func init() {
hystrix.InstallReporter("CSE Monitoring", reportMetricsToCSEDashboard)
}
var reporter *Reporter
//GetReporter get reporter singleton
func GetReporter() (*Reporter, error) {
var errResult error
initOnce.Do(func() {
monitorServerURL, err := getMonitorEndpoint()
if err != nil {
openlog.Warn(fmt.Sprintf("Get Monitoring URL failed, CSE monitoring function disabled, err: %v", err))
errResult = err
return
}
openlog.Info(fmt.Sprintf("init monitoring client : %s", monitorServerURL))
tlsConfig, err := getTLSForClient(monitorServerURL)
if err != nil {
openlog.Error(fmt.Sprintf("Get %s.%s TLS config failed,error : %s", monitorServerURL, common.Consumer, err))
errResult = err
}
reporter, err = NewReporter(&CseCollectorConfig{
CseMonitorAddr: monitorServerURL,
Header: getAuthHeaders(),
TLSConfig: tlsConfig,
})
if err != nil {
openlog.Error("new reporter failed", openlog.WithTags(openlog.Tags{
"err": err.Error(),
}))
errResult = err
}
})
if reporter == nil {
errResult = fmt.Errorf("reporter is nil")
}
return reporter, errResult
}
//reportMetricsToCSEDashboard use send metrics to cse dashboard
func reportMetricsToCSEDashboard(cb *hystrix.CircuitBreaker) error {
r, err := GetReporter()
if err != nil {
return err
}
r.Send(cb)
return nil
}