-
Notifications
You must be signed in to change notification settings - Fork 36
/
agent.go
290 lines (236 loc) · 7.5 KB
/
agent.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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
package stackimpact
import (
"fmt"
"log"
"net/http"
"github.com/stackimpact/stackimpact-go/internal"
)
const ErrorGroupRecoveredPanics string = "Recovered panics"
const ErrorGroupUnrecoveredPanics string = "Unrecovered panics"
const ErrorGroupHandledExceptions string = "Handled exceptions"
type Options struct {
DashboardAddress string
ProxyAddress string
HTTPClient *http.Client
AgentKey string
AppName string
AppVersion string
AppEnvironment string
HostName string
DisableAutoProfiling bool
Debug bool
Logger *log.Logger
ProfileAgent bool
}
type Agent struct {
internalAgent *internal.Agent
spanStarted int32
// compatibility < 1.2.0
DashboardAddress string
AgentKey string
AppName string
HostName string
Debug bool
}
// DEPRECATED. Kept for compatibility with <1.4.3.
func NewAgent() *Agent {
a := &Agent{
internalAgent: internal.NewAgent(),
spanStarted: 0,
}
return a
}
// Agent instance
var _agent *Agent = nil
// Starts the agent with configuration options.
// Required options are AgentKey and AppName.
func Start(options Options) *Agent {
if _agent == nil {
_agent = &Agent{
internalAgent: internal.NewAgent(),
}
}
_agent.Start(options)
return _agent
}
// Starts the agent with configuration options.
// Required options are AgentKey and AppName.
func (a *Agent) Start(options Options) {
a.internalAgent.AgentKey = options.AgentKey
a.internalAgent.AppName = options.AppName
if options.AppVersion != "" {
a.internalAgent.AppVersion = options.AppVersion
}
if options.AppEnvironment != "" {
a.internalAgent.AppEnvironment = options.AppEnvironment
}
if options.HostName != "" {
a.internalAgent.HostName = options.HostName
}
if options.DisableAutoProfiling {
a.internalAgent.AutoProfiling = false
}
if options.DashboardAddress != "" {
a.internalAgent.DashboardAddress = options.DashboardAddress
}
if options.ProxyAddress != "" {
a.internalAgent.ProxyAddress = options.ProxyAddress
}
if options.HTTPClient != nil {
a.internalAgent.HTTPClient = options.HTTPClient
}
if options.Debug {
a.internalAgent.Debug = true
}
if options.Logger != nil {
a.internalAgent.Logger = options.Logger
}
if options.ProfileAgent {
a.internalAgent.ProfileAgent = true
}
a.internalAgent.Start()
}
// Update some options after the agent has already been started.
// Only ProxyAddress, HTTPClient and Debug options are updatable.
func (a *Agent) UpdateOptions(options Options) {
if options.ProxyAddress != "" {
a.internalAgent.ProxyAddress = options.ProxyAddress
}
if options.HTTPClient != nil {
a.internalAgent.HTTPClient = options.HTTPClient
}
if options.Debug {
a.internalAgent.Debug = true
}
if options.Logger != nil {
a.internalAgent.Logger = options.Logger
}
}
// DEPRECATED. Kept for compatibility with <1.2.0.
func (a *Agent) Configure(agentKey string, appName string) {
a.Start(Options{
AgentKey: agentKey,
AppName: appName,
HostName: a.HostName,
DashboardAddress: a.DashboardAddress,
Debug: a.Debug,
})
}
// Start CPU profiler. Automatic profiling should be disabled.
func (a *Agent) StartCPUProfiler() {
a.internalAgent.StartCPUProfiler()
}
// Stop CPU profiler and report the recorded profile to the Dashboard.
func (a *Agent) StopCPUProfiler() {
a.internalAgent.StopCPUProfiler()
}
// Start blocking call profiler. Automatic profiling should be disabled.
func (a *Agent) StartBlockProfiler() {
a.internalAgent.StartBlockProfiler()
}
// Stop blocking call profiler and report the recorded profile to the Dashboard.
func (a *Agent) StopBlockProfiler() {
a.internalAgent.StopBlockProfiler()
}
// Report current allocation profile to the Dashboard.
func (a *Agent) ReportAllocationProfile() {
a.internalAgent.ReportAllocationProfile()
}
// Use this method to instruct the agent to start and stop
// profiling. It does not guarantee that any profiler will be
// started. The decision is made by the agent based on the
// overhead constraints. The method returns Span object, on
// which the Stop() method should be called.
func (a *Agent) Profile() *Span {
return a.ProfileWithName("Default")
}
// This method is similar to the Profile() method. It additionally
// allows to specify a span name to group span timing measurements.
func (a *Agent) ProfileWithName(name string) *Span {
s := newSpan(a, name)
s.start()
return s
}
// A helper function to profile HTTP handler function execution
// by wrapping http.HandleFunc method parameters.
func (a *Agent) ProfileHandlerFunc(pattern string, handlerFunc func(http.ResponseWriter, *http.Request)) (string, func(http.ResponseWriter, *http.Request)) {
return pattern, func(w http.ResponseWriter, r *http.Request) {
span := newSpan(a, fmt.Sprintf("Handler %s", pattern))
span.start()
defer span.Stop()
if span.active {
WithPprofLabel("workload", span.name, r, func() {
handlerFunc(w, r)
})
} else {
handlerFunc(w, r)
}
}
}
// A helper function to profile HTTP handler execution
// by wrapping http.Handle method parameters.
func (a *Agent) ProfileHandler(pattern string, handler http.Handler) (string, http.Handler) {
return pattern, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
span := newSpan(a, fmt.Sprintf("Handler %s", pattern))
span.start()
defer span.Stop()
if span.active {
WithPprofLabel("workload", span.name, r, func() {
handler.ServeHTTP(w, r)
})
} else {
handler.ServeHTTP(w, r)
}
})
}
// DEPRECATED. Starts measurement of execution time of a code segment.
// To stop measurement call Stop on returned Segment object.
// After calling Stop the segment is recorded, aggregated and
// reported with regular intervals.
func (a *Agent) MeasureSegment(segmentName string) *Segment {
s := newSegment(a, segmentName)
s.start()
return s
}
// DEPRECATED. A helper function to measure HTTP handler function execution
// by wrapping http.HandleFunc method parameters.
func (a *Agent) MeasureHandlerFunc(pattern string, handlerFunc func(http.ResponseWriter, *http.Request)) (string, func(http.ResponseWriter, *http.Request)) {
return pattern, func(w http.ResponseWriter, r *http.Request) {
segment := a.MeasureSegment(fmt.Sprintf("Handler %s", pattern))
defer segment.Stop()
handlerFunc(w, r)
}
}
// DEPRECATED. A helper function to measure HTTP handler execution
// by wrapping http.Handle method parameters.
func (a *Agent) MeasureHandler(pattern string, handler http.Handler) (string, http.Handler) {
return pattern, http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
segment := a.MeasureSegment(fmt.Sprintf("Handler %s", pattern))
defer segment.Stop()
handler.ServeHTTP(w, r)
})
}
// Aggregates and reports errors with regular intervals.
func (a *Agent) RecordError(err interface{}) {
a.internalAgent.RecordError(ErrorGroupHandledExceptions, err, 1)
}
// Aggregates and reports panics with regular intervals.
func (a *Agent) RecordPanic() {
if err := recover(); err != nil {
a.internalAgent.RecordError(ErrorGroupUnrecoveredPanics, err, 1)
panic(err)
}
}
// Aggregates and reports panics with regular intervals. This function also
// recovers from panics
func (a *Agent) RecordAndRecoverPanic() {
if err := recover(); err != nil {
a.internalAgent.RecordError(ErrorGroupRecoveredPanics, err, 1)
}
}
// DEPRECATED. Kept for compatibility.
func (a *Agent) Report() {
}
// DEPRECATED. Kept for compatibility.
func (a *Agent) ReportWithHTTPClient(client *http.Client) {
}