-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstacktrace_processor.go
152 lines (137 loc) · 4.06 KB
/
stacktrace_processor.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
package opentelemetry_stacktrace_processor // import "github.com/joostlek/opentelemetry-stacktrace-processor"
import (
"context"
"fmt"
"github.com/go-sourcemap/sourcemap"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/consumer"
"go.opentelemetry.io/collector/pdata/ptrace"
"go.opentelemetry.io/collector/processor"
"io"
"os"
"strconv"
"strings"
)
type stackTraceProcessor struct {
nextConsumer consumer.Traces
sourceMaps map[string][]byte
sourceMapDirs []string
}
func (s *stackTraceProcessor) Start(ctx context.Context, host component.Host) error {
s.sourceMaps = make(map[string][]byte)
for _, dir := range s.sourceMapDirs {
files, err := os.ReadDir(dir)
if err != nil {
return err
}
for _, file := range files {
if strings.HasSuffix(file.Name(), ".map") {
err := s.ReadSourceMap(dir, file.Name())
if err != nil {
return err
}
}
}
}
return nil
}
func (s *stackTraceProcessor) ReadSourceMap(path string, name string) error {
fullPath := fmt.Sprintf("%s/%s", path, name)
if path == "" {
fullPath = name
}
file, err := os.Open(fullPath)
if err != nil {
return err
}
b, err := io.ReadAll(file)
if err != nil {
return err
}
s.sourceMaps[name] = b
return nil
}
func (s *stackTraceProcessor) Shutdown(ctx context.Context) error {
return nil
}
func (s *stackTraceProcessor) Capabilities() consumer.Capabilities {
return consumer.Capabilities{MutatesData: true}
}
func (s *stackTraceProcessor) ConsumeTraces(ctx context.Context, td ptrace.Traces) error {
for resourceSpanId := 0; resourceSpanId < td.ResourceSpans().Len(); resourceSpanId++ {
resourceSpan := td.ResourceSpans().At(resourceSpanId)
sdkLanguage, valid := resourceSpan.Resource().Attributes().Get("telemetry.sdk.language")
if valid && sdkLanguage.Str() == "webjs" {
s.ConsumeScopeSpans(resourceSpan.ScopeSpans())
}
}
return s.nextConsumer.ConsumeTraces(ctx, td)
}
func (s *stackTraceProcessor) ConsumeScopeSpans(scopeSpans ptrace.ScopeSpansSlice) {
for scopeSpanId := 0; scopeSpanId < scopeSpans.Len(); scopeSpanId++ {
spans := scopeSpans.At(scopeSpanId).Spans()
s.ConsumeSpans(spans)
}
}
func (s *stackTraceProcessor) ConsumeSpans(spans ptrace.SpanSlice) {
for spanId := 0; spanId < spans.Len(); spanId++ {
span := spans.At(spanId)
s.ConsumeSpan(span)
}
}
func (s *stackTraceProcessor) ConsumeSpan(span ptrace.Span) {
for eventId := 0; eventId < span.Events().Len(); eventId++ {
event := span.Events().At(eventId)
if event.Name() == "exception" {
s.ConsumeException(event)
}
}
}
func (s *stackTraceProcessor) ConsumeException(event ptrace.SpanEvent) {
stacktrace, valid := event.Attributes().Get("exception.stacktrace")
if !valid {
return
}
var res []string
lines := strings.Split(stacktrace.Str(), "\n")
for n := 0; n < len(lines); n++ {
line := lines[n]
pieces := strings.Split(line, "@")
if len(pieces) == 1 {
res = append(res, line)
continue
}
trace := pieces[0]
source := pieces[1]
sourceFilePieces := strings.Split(source, "/")[len(strings.Split(source, "/"))-1]
mapPieces := strings.Split(sourceFilePieces, ":")
sourceFile := mapPieces[0]
mapLine, err := strconv.Atoi(mapPieces[1])
if err != nil {
res = append(res, line)
continue
}
mapColumn, err := strconv.Atoi(mapPieces[2])
if err != nil {
res = append(res, line)
continue
}
mapFileName := fmt.Sprintf("%s.map", sourceFile)
smap, err := sourcemap.Parse(sourceFile, s.sourceMaps[mapFileName])
if err != nil {
res = append(res, line)
continue
}
finalFile, _, sourceLine, sourceColumn, ok := smap.Source(mapLine, mapColumn)
if !ok {
res = append(res, line)
continue
}
res = append(res, fmt.Sprintf("%s@%s:%d:%d", trace, finalFile, sourceLine, sourceColumn))
}
event.Attributes().PutStr("exception.stacktrace", strings.Join(res, "\n"))
}
var _ consumer.Traces = (*stackTraceProcessor)(nil)
func newStackTraceProcessor(set processor.CreateSettings, next consumer.Traces, config *Config) (processor.Traces, error) {
return &stackTraceProcessor{nextConsumer: next, sourceMapDirs: config.SourceMapDirs}, nil
}