-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubt.go
250 lines (219 loc) · 5.97 KB
/
ubt.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
package UBT
import (
"encoding/json"
"fmt"
"log"
"net"
"os"
"strings"
"github.com/guonaihong/gout"
"github.com/pkg/errors"
)
type Message struct {
AppName string `json:"appName,omitempty"`
AppVersion string `json:"appVersion,omitempty"`
ServerHostname string `json:"serverHostname,omitempty"`
ServerAddr string `json:"serverAddr,omitempty"`
LogLevel string `json:"logLevel,omitempty"`
Request *ReqMessage `json:"req,omitempty"`
Response *ResMessage `json:"res,omitempty"`
Msg string `json:"msg,omitempty"`
Error *ErrorMsg `json:"error,omitempty"`
ExtraMessage
baseInfo
}
type ReqMessage struct {
Ip string `json:"ip,omitempty"` // 客户端的ip
Method string `json:"method,omitempty"` // 客户端请求方法。 "GET" | "POST"
Path string `json:"path,omitempty"` // 客户端请求路径
PostData string `json:"postData,omitempty"` // 客户端提交的参数,url query参数和data参数都在里面
Query string `json:"query,omitempty"` // 客户端查询的get query参数
Url string `json:"url,omitempty"` // 完整的url链接地址
Id string `json:"id,omitempty"`
Api string `json:"api,omitempty"`
Ua string `json:"ua,omitempty"`
Headers string `json:"headers,omitempty"`
}
type ResMessage struct {
ContentType string `json:"contentType,omitempty"`
ResponseTime string `json:"responseTime,omitempty"`
Data string `json:"data,omitempty"`
}
type ExtraMessage struct {
BusinessInfo map[string]string `json:"businessInfo,omitempty"`
Module string `json:"module,omitempty"` // 模块名字。 例如:预约里面的支付模块埋点,就写成booking.payment或者booking.pay。
LogType string `json:"logType,omitempty"`
}
type baseInfo struct {
SdkVersion string `json:"sdkVersion"` // GO SDK版本
}
type UBT struct {
options *ClientOptions
hostname string
addr string
resText string // ci模式 返回的字符串。
err error // ci专用
messageTextStacks []string
messageText string // 要发送的消息内容,这个只是为了测试。
}
type ClientOptions struct {
UBTServer string
AppName string
AppVersion string
IgnoreHeaders []string
systemInfo map[string]string
DebugMode bool // debug模式
ci bool // ci模式
}
func Init(options *ClientOptions) *UBT {
return &UBT{
options: options,
}
}
func (ubt *UBT) Debug(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: DEBUG,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Info(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: INFO,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Warn(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: WARN,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Error(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: ERROR,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Critical(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: CRITICAL,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Alert(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: ALERT,
}
ubt.base(message, extra...)
}
func (ubt *UBT) Fatal(msg string, extra ...*ExtraMessage) {
message := &Message{
Msg: msg,
LogLevel: FATAL,
}
ubt.base(message, extra...)
}
type ErrorMsg struct {
Code int `json:"code,omitempty"` // 错误code
Stacks string `json:"stacks,omitempty"` // 错误堆栈
File string `json:"file,omitempty"` // 错误文件
Line string `json:"line,omitempty"` // 错误行
}
// SendError 错误发送。 如果需要捕获错误堆栈,那么则需要使用github.com/pkg/errors
func (ubt *UBT) SendError(err error, extra ...*ExtraMessage) {
errMsg := &ErrorMsg{
Stacks: "",
}
type stackTracer interface {
StackTrace() errors.StackTrace
}
if err, ok := err.(stackTracer); ok {
for _, f := range err.StackTrace() {
errMsg.Stacks += fmt.Sprintf("%+s:%d\n", f, f)
}
}
ubt.base(&Message{
LogLevel: ERROR,
Msg: err.Error(),
Error: errMsg,
}, extra...)
}
func (ubt *UBT) clear() {
ubt.messageText = ""
ubt.messageTextStacks = []string{}
}
func (ubt *UBT) base(m *Message, extra ...*ExtraMessage) {
fn := func() {
if ubt.options.ci {
ubt.err = nil
}
// 追加自定义业务字段和module字段
if len(extra) > 0 && extra[0] != nil {
if extra[0].BusinessInfo != nil {
m.BusinessInfo = extra[0].BusinessInfo
}
if extra[0].Module != "" {
m.Module = extra[0].Module
}
if extra[0].LogType != "" {
m.LogType = extra[0].LogType
}
}
// 追加默认字段
m.AppName = ubt.options.AppName
m.AppVersion = ubt.options.AppVersion
m.SdkVersion = SdkVersion
m.ServerHostname, m.ServerAddr = ubt.getHostNameAddr()
messageText, err := json.Marshal(m)
if err != nil {
return
}
if ubt.options.ci {
ubt.messageText = string(messageText)
ubt.messageTextStacks = append(ubt.messageTextStacks, ubt.messageText)
}
err = gout.
POST(ubt.options.UBTServer + "/logging/v2").
SetJSON(m).
Debug(ubt.options.DebugMode).
BindBody(&ubt.resText).
Do()
if err != nil {
log.Println(err)
}
if ubt.options.ci {
ubt.err = err
}
}
// 在ci环境下面走同步,因为需要测试完成情况
if ubt.options.ci {
fn()
} else {
go fn()
}
}
func (ubt *UBT) getHostNameAddr() (hostname, addr string) {
if ubt.options.ci {
return "hostname-xxx", "192.168.1.1"
}
if ubt.hostname != "" && ubt.addr != "" {
return ubt.hostname, ubt.addr
}
hostname, _ = os.Hostname()
addrs, _ := net.LookupIP(hostname)
addr = ""
for _, a := range addrs {
if ipv4 := a.To4(); ipv4 != nil {
addr = addr + " " + ipv4.String()
}
}
ubt.hostname = hostname
ubt.addr = strings.Trim(addr, " ")
return ubt.hostname, ubt.addr
}