forked from newrelic/go-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
62 lines (51 loc) · 2.08 KB
/
errors.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
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package newrelic
import "github.com/newrelic/go-agent/internal"
// StackTracer can be implemented by errors to provide a stack trace when using
// Transaction.NoticeError.
type StackTracer interface {
StackTrace() []uintptr
}
// ErrorClasser can be implemented by errors to provide a custom class when
// using Transaction.NoticeError.
type ErrorClasser interface {
ErrorClass() string
}
// ErrorAttributer can be implemented by errors to provide extra context when
// using Transaction.NoticeError.
type ErrorAttributer interface {
ErrorAttributes() map[string]interface{}
}
// Error is an error that implements ErrorClasser, ErrorAttributer, and
// StackTracer. Use it with Transaction.NoticeError to directly control error
// message, class, stacktrace, and attributes.
type Error struct {
// Message is the error message which will be returned by the Error()
// method.
Message string
// Class indicates how the error may be aggregated.
Class string
// Attributes are attached to traced errors and error events for
// additional context. These attributes are validated just like those
// added to `Transaction.AddAttribute`.
Attributes map[string]interface{}
// Stack is the stack trace. Assign this field using NewStackTrace,
// or leave it nil to indicate that Transaction.NoticeError should
// generate one.
Stack []uintptr
}
// NewStackTrace generates a stack trace which can be assigned to the Error
// struct's Stack field or returned by an error that implements the ErrorClasser
// interface.
func NewStackTrace() []uintptr {
st := internal.GetStackTrace()
return []uintptr(st)
}
func (e Error) Error() string { return e.Message }
// ErrorClass implements the ErrorClasser interface.
func (e Error) ErrorClass() string { return e.Class }
// ErrorAttributes implements the ErrorAttributes interface.
func (e Error) ErrorAttributes() map[string]interface{} { return e.Attributes }
// StackTrace implements the StackTracer interface.
func (e Error) StackTrace() []uintptr { return e.Stack }