-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
signalerrors.go
59 lines (51 loc) · 1.68 KB
/
signalerrors.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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package consumererror // import "go.opentelemetry.io/collector/consumer/consumererror"
import (
"go.opentelemetry.io/collector/consumer/consumererror/internal"
"go.opentelemetry.io/collector/pdata/plog"
"go.opentelemetry.io/collector/pdata/pmetric"
"go.opentelemetry.io/collector/pdata/ptrace"
)
// Traces is an error that may carry associated Trace data for a subset of received data
// that failed to be processed or sent.
type Traces struct {
internal.Retryable[ptrace.Traces]
}
// NewTraces creates a Traces that can encapsulate received data that failed to be processed or sent.
func NewTraces(err error, data ptrace.Traces) error {
return Traces{
Retryable: internal.Retryable[ptrace.Traces]{
Err: err,
Value: data,
},
}
}
// Logs is an error that may carry associated Log data for a subset of received data
// that failed to be processed or sent.
type Logs struct {
internal.Retryable[plog.Logs]
}
// NewLogs creates a Logs that can encapsulate received data that failed to be processed or sent.
func NewLogs(err error, data plog.Logs) error {
return Logs{
Retryable: internal.Retryable[plog.Logs]{
Err: err,
Value: data,
},
}
}
// Metrics is an error that may carry associated Metrics data for a subset of received data
// that failed to be processed or sent.
type Metrics struct {
internal.Retryable[pmetric.Metrics]
}
// NewMetrics creates a Metrics that can encapsulate received data that failed to be processed or sent.
func NewMetrics(err error, data pmetric.Metrics) error {
return Metrics{
Retryable: internal.Retryable[pmetric.Metrics]{
Err: err,
Value: data,
},
}
}