-
Notifications
You must be signed in to change notification settings - Fork 1
/
profiler.go
210 lines (165 loc) · 4.7 KB
/
profiler.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
package profiler
import (
"container/list"
"fmt"
"github.com/njtc406/chaosutil/log"
"sync"
"time"
)
// TODO 整个这个逻辑在后面的调试过程中来逐渐修改,以符合项目
// DefaultMaxOvertime 最大超长时间,一般可以认为是死锁或者死循环,或者极差的性能问题
var DefaultMaxOvertime time.Duration = 5 * time.Second
// DefaultOvertime 超过该时间将会监控报告
var DefaultOvertime time.Duration = 10 * time.Millisecond
var DefaultMaxRecordNum int = 100 //最大记录条数
var mapProfiler map[string]*Profiler
type ReportFunType func(name string, callNum int, costTime time.Duration, record *list.List, logger log.ILogger)
var reportFunc ReportFunType = DefaultReportFunction
type Element struct {
tagName string
pushTime time.Time
}
type RecordType int
const (
MaxOvertimeType = 1
OvertimeType = 2
)
type Record struct {
RType RecordType
CostTime time.Duration
RecordName string
}
type Analyzer struct {
elem *list.Element
profiler *Profiler
}
type Profiler struct {
stack *list.List //Element
stackLocker sync.RWMutex
mapAnalyzer map[*list.Element]Analyzer
record *list.List //Record
callNum int //调用次数
totalCostTime time.Duration //总消费时间长
maxOverTime time.Duration
overTime time.Duration
maxRecordNum int
logger log.ILogger
}
func init() {
mapProfiler = map[string]*Profiler{}
}
func RegProfiler(profilerName string, logger log.ILogger) *Profiler {
if _, ok := mapProfiler[profilerName]; ok == true {
return nil
}
pProfiler := &Profiler{stack: list.New(), record: list.New(), maxOverTime: DefaultMaxOvertime, overTime: DefaultOvertime, logger: logger}
mapProfiler[profilerName] = pProfiler
return pProfiler
}
func (slf *Profiler) SetMaxOverTime(tm time.Duration) {
slf.maxOverTime = tm
}
func (slf *Profiler) SetOverTime(tm time.Duration) {
slf.overTime = tm
}
func (slf *Profiler) SetMaxRecordNum(num int) {
slf.maxRecordNum = num
}
func (slf *Profiler) Push(tag string) *Analyzer {
slf.stackLocker.Lock()
defer slf.stackLocker.Unlock()
pElem := slf.stack.PushBack(&Element{tagName: tag, pushTime: time.Now()})
return &Analyzer{elem: pElem, profiler: slf}
}
func (slf *Profiler) check(pElem *Element) (*Record, time.Duration) {
if pElem == nil {
return nil, 0
}
subTm := time.Now().Sub(pElem.pushTime)
if subTm < slf.overTime {
return nil, subTm
}
record := Record{
RType: OvertimeType,
CostTime: subTm,
RecordName: pElem.tagName,
}
if subTm > slf.maxOverTime {
record.RType = MaxOvertimeType
}
return &record, subTm
}
func (slf *Analyzer) Pop() {
slf.profiler.stackLocker.Lock()
defer slf.profiler.stackLocker.Unlock()
pElement := slf.elem.Value.(*Element)
pElem, subTm := slf.profiler.check(pElement)
slf.profiler.callNum += 1
slf.profiler.totalCostTime += subTm
if pElem != nil {
slf.profiler.pushRecordLog(pElem)
}
slf.profiler.stack.Remove(slf.elem)
}
func (slf *Profiler) pushRecordLog(record *Record) {
if slf.record.Len() >= DefaultMaxRecordNum {
front := slf.stack.Front()
if front != nil {
slf.stack.Remove(front)
}
}
slf.record.PushBack(record)
}
func SetReportFunction(reportFun ReportFunType) {
reportFunc = reportFun
}
func DefaultReportFunction(name string, callNum int, costTime time.Duration, record *list.List, logger log.ILogger) {
if record.Len() <= 0 {
return
}
var strReport string
strReport = "Profiler report tag " + name + ":\n"
var average int64
if callNum > 0 {
average = costTime.Milliseconds() / int64(callNum)
}
strReport += fmt.Sprintf("process count %d,take time %d Milliseconds,average %d Milliseconds/per.\n", callNum, costTime.Milliseconds(), average)
elem := record.Front()
var strTypes string
for elem != nil {
pRecord := elem.Value.(*Record)
if pRecord.RType == MaxOvertimeType {
strTypes = "too slow process"
} else {
strTypes = "slow process"
}
strReport += fmt.Sprintf("%s:%s is take %d Milliseconds\n", strTypes, pRecord.RecordName, pRecord.CostTime.Milliseconds())
elem = elem.Next()
}
logger.Info(strReport)
}
// Report 打印性能报告
func Report() {
var record *list.List
for name, prof := range mapProfiler {
prof.stackLocker.RLock()
//取栈顶,是否存在异常MaxOverTime数据
pElem := prof.stack.Back()
for pElem != nil {
pElement := pElem.Value.(*Element)
pExceptionElem, _ := prof.check(pElement)
if pExceptionElem != nil {
prof.pushRecordLog(pExceptionElem)
}
pElem = pElem.Prev()
}
if prof.record.Len() == 0 {
prof.stackLocker.RUnlock()
continue
}
record = prof.record
prof.record = list.New()
prof.stackLocker.RUnlock()
DefaultReportFunction(name, prof.callNum, prof.totalCostTime, record, prof.logger)
}
}