-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtrace_ctx.go
380 lines (319 loc) · 9.56 KB
/
trace_ctx.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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
package observe
import (
"context"
"log"
"strings"
"time"
"github.com/tetratelabs/wazero"
"github.com/tetratelabs/wazero/api"
"github.com/tetratelabs/wazero/experimental"
)
// TraceCtx holds the context for a trace, or wasm module invocation.
// It collects holds a channel to the Adapter and from the wazero Listener
// It will collect events throughout the invocation of the function. Calling
// Finish() will then submit those events to the Adapter to be processed and sent
type TraceCtx struct {
adapter chan TraceEvent
raw chan RawEvent
events []Event
stack []CallEvent
Options *Options
names map[uint32]string
telemetryId TelemetryId
adapterMeta interface{}
}
// Creates a new TraceCtx. Used internally by the Adapter. The user should create the trace context from the Adapter.
func newTraceCtx(ctx context.Context, eventsChan chan TraceEvent, r wazero.Runtime, data []byte, opts *Options) (*TraceCtx, error) {
names, err := parseNames(data)
if err != nil {
return nil, err
}
if opts.ChannelBufferSize == 0 {
opts.ChannelBufferSize = 64 // set a reasonable minimum here so unset option doesn't block execution on an unbuffered channel
}
traceCtx := &TraceCtx{
adapter: eventsChan,
raw: make(chan RawEvent, opts.ChannelBufferSize),
names: names,
telemetryId: NewTraceId(),
Options: opts,
}
err = traceCtx.init(ctx, r)
if err != nil {
return nil, err
}
return traceCtx, nil
}
func (t *TraceCtx) SetTraceId(id string) error {
return t.telemetryId.FromString(id)
}
func (t *TraceCtx) Metadata(metadata interface{}) {
t.adapterMeta = metadata
}
// Finish() will stop the trace and send the
// TraceEvent payload to the adapter
func (t *TraceCtx) Finish() {
traceEvent := TraceEvent{
Events: t.events,
TelemetryId: t.telemetryId,
AdapterMeta: t.adapterMeta,
}
t.adapter <- traceEvent
// clear the trace context
t.events = nil
t.telemetryId = NewTraceId()
}
// Attaches the wazero FunctionListener to the context
func (t *TraceCtx) withListener(ctx context.Context) context.Context {
return experimental.WithFunctionListenerFactory(ctx, t)
}
// Initializes the TraceCtx. This connects up the channels with events from the FunctionListener.
// Should only be called once.
func (t *TraceCtx) init(ctx context.Context, r wazero.Runtime) error {
ctx = t.withListener(ctx)
if r.Module("dylibso_observe") != nil || r.Module("dylibso:observe/instrument") != nil ||
r.Module("dylibso:observe/api") != nil {
return nil
}
enterFunc := func(ctx context.Context, m api.Module, i uint32) {
start := time.Now()
ev := <-t.raw
t.enter(ev, start)
}
spanEnterFunc := func(ctx context.Context, m api.Module, ptr uint32, len uint32) {
start := time.Now()
ev := <-t.raw
functionName, ok := m.Memory().Read(ptr, len)
if !ok {
log.Printf("span_enter: failed to read memory at offset %v with length %v\n", ptr, len)
}
ev.FunctionName = string(functionName)
t.enter(ev, start)
}
oldSpanEnterFunc := func(ctx context.Context, m api.Module, ptr uint64, len uint32) {
spanEnterFunc(ctx, m, uint32(ptr), len)
}
exitFunc := func(ctx context.Context, i uint32) {
end := time.Now()
ev := <-t.raw
t.exit(ev, end)
}
spanExitFunc := func(ctx context.Context, m api.Module) {
end := time.Now()
ev := <-t.raw
t.exit(ev, end)
}
memoryGrowFunc := func(ctx context.Context, amt uint32) {
ev := <-t.raw
if ev.Kind != RawMemoryGrow {
log.Println("Expected event", MemoryGrow, "but got", ev.Kind)
return
}
if len(t.stack) > 0 {
f := t.stack[len(t.stack)-1]
ev.FunctionIndex = f.FunctionIndex()
ev.FunctionName = f.FunctionName()
}
event := MemoryGrowEvent{
Raw: ev,
Time: time.Now(),
}
fn, ok := t.popFunction()
if !ok {
t.events = append(t.events, event)
return
}
fn.within = append(fn.within, event)
t.pushFunction(fn)
}
metricFunc := func(ctx context.Context, m api.Module, f uint32, ptr uint32, l uint32) {
format := MetricFormat(f)
buffer, ok := m.Memory().Read(ptr, l)
if !ok {
log.Printf("metric: failed to read memory at offset %v with length %v\n", ptr, l)
}
event := MetricEvent{
Time: time.Now(),
Format: format,
Message: string(buffer),
}
fn, ok := t.popFunction()
if !ok {
t.events = append(t.events, event)
return
}
fn.within = append(fn.within, event)
t.pushFunction(fn)
}
oldMetricFunc := func(ctx context.Context, m api.Module, f uint32, ptr uint64, len uint32) {
metricFunc(ctx, m, f, uint32(ptr), len)
}
spanTagsFunc := func(ctx context.Context, m api.Module, ptr uint32, len uint32) {
buffer, ok := m.Memory().Read(ptr, len)
if !ok {
log.Printf("span-tags: failed to read memory at offset %v with length %v\n", ptr, len)
}
ev := <-t.raw
if ev.Kind != RawSpanTags {
log.Println("Expected event", SpanTags, "but got", ev.Kind)
return
}
event := SpanTagsEvent{
Time: time.Now(),
Raw: ev,
Tags: strings.Split(string(buffer), ","),
}
fn, ok := t.popFunction()
if !ok {
t.events = append(t.events, event)
return
}
fn.within = append(fn.within, event)
t.pushFunction(fn)
}
oldSpanTagsFunc := func(ctx context.Context, m api.Module, ptr uint64, len uint32) {
spanTagsFunc(ctx, m, uint32(ptr), len)
}
logFunc := func(ctx context.Context, m api.Module, l uint32, ptr uint32, len uint32) {
if l < uint32(Error) || l > uint32(Debug) {
log.Printf("log: invalid log level %v\n", l)
}
level := LogLevel(l)
buffer, ok := m.Memory().Read(ptr, len)
if !ok {
log.Printf("log: failed to read memory at offset %v with length %v\n", ptr, len)
}
event := LogEvent{
Time: time.Now(),
Level: level,
Message: string(buffer),
}
fn, ok := t.popFunction()
if !ok {
t.events = append(t.events, event)
return
}
fn.within = append(fn.within, event)
t.pushFunction(fn)
}
oldLogFunc := func(ctx context.Context, m api.Module, l uint32, ptr uint64, len uint32) {
logFunc(ctx, m, l, uint32(ptr), len)
}
// instrument api
{
instrument := r.NewHostModuleBuilder("dylibso:observe/instrument")
instrFunctions := instrument.NewFunctionBuilder()
instrFunctions.WithFunc(enterFunc).Export("enter")
instrFunctions.WithFunc(exitFunc).Export("exit")
instrFunctions.WithFunc(memoryGrowFunc).Export("memory-grow")
_, err := instrument.Instantiate(ctx)
if err != nil {
return err
}
}
// manual api
{
api := r.NewHostModuleBuilder("dylibso:observe/api")
apiFunctions := api.NewFunctionBuilder()
apiFunctions.WithFunc(spanEnterFunc).Export("span-enter")
apiFunctions.WithFunc(spanExitFunc).Export("span-exit")
apiFunctions.WithFunc(spanTagsFunc).Export("span-tags")
apiFunctions.WithFunc(metricFunc).Export("metric")
apiFunctions.WithFunc(logFunc).Export("log")
_, err := api.Instantiate(ctx)
if err != nil {
return err
}
}
//old api (combined instrument and manual api)
{
observe := r.NewHostModuleBuilder("dylibso_observe")
observeFunctions := observe.NewFunctionBuilder()
observeFunctions.WithFunc(enterFunc).Export("instrument_enter")
observeFunctions.WithFunc(exitFunc).Export("instrument_exit")
observeFunctions.WithFunc(memoryGrowFunc).Export("instrument_memory_grow")
observeFunctions.WithFunc(oldSpanEnterFunc).Export("span_enter")
observeFunctions.WithFunc(spanExitFunc).Export("span_exit")
observeFunctions.WithFunc(oldSpanTagsFunc).Export("span_tags")
observeFunctions.WithFunc(oldMetricFunc).Export("metric")
observeFunctions.WithFunc(oldLogFunc).Export("log")
_, err := observe.Instantiate(ctx)
if err != nil {
return err
}
}
return nil
}
func (t *TraceCtx) enter(ev RawEvent, start time.Time) {
if ev.Kind != RawEnter {
log.Println("Expected event", RawEnter, "but got", ev.Kind)
}
t.pushFunction(CallEvent{Raw: []RawEvent{ev}, Time: start})
}
func (t *TraceCtx) exit(ev RawEvent, end time.Time) {
if ev.Kind != RawExit {
log.Println("Expected event", RawExit, "but got", ev.Kind)
return
}
fn, ok := t.peekFunction()
if !ok {
log.Println("Expected values on started function stack, but none were found")
return
}
if ev.FunctionIndex != fn.FunctionIndex() {
log.Println("Expected call to", ev.FunctionIndex, "but found call to", fn.FunctionIndex())
return
}
fn, _ = t.popFunction()
fn.Stop(end)
fn.Raw = append(fn.Raw, ev)
// if there is no function left to pop, we are exiting the root function of the trace
f, ok := t.peekFunction()
if !ok {
t.events = append(t.events, fn)
return
}
// if the function duration is less than minimum duration, disregard
funcDuration := fn.Duration.Microseconds()
minSpanDuration := t.Options.SpanFilter.MinDuration.Microseconds()
if funcDuration < minSpanDuration {
// check for memory allocations and attribute them to the parent span
f, ok = t.popFunction()
if ok {
for _, ev := range fn.within {
switch e := ev.(type) {
case MemoryGrowEvent:
f.within = append(f.within, e)
}
}
t.pushFunction(f)
}
return
}
// the function is within another function
f, ok = t.popFunction()
if ok {
f.within = append(f.within, fn)
t.pushFunction(f)
}
}
// Pushes a function onto the stack
func (t *TraceCtx) pushFunction(ev CallEvent) {
t.stack = append(t.stack, ev)
}
// Pops a function off the stack
func (t *TraceCtx) popFunction() (CallEvent, bool) {
if len(t.stack) == 0 {
return CallEvent{}, false
}
event := t.stack[len(t.stack)-1]
t.stack = t.stack[:len(t.stack)-1]
return event, true
}
// Peek at the function on top of the stack without modifying
func (t *TraceCtx) peekFunction() (CallEvent, bool) {
if len(t.stack) == 0 {
return CallEvent{}, false
}
return t.stack[len(t.stack)-1], true
}