-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathtraceInfo.go
52 lines (47 loc) · 1010 Bytes
/
traceInfo.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
package zipkin
import "github.com/elodina/go-avro"
type TraceInfo struct {
SpanId int64
TraceId int64
ParentSpanId interface{}
Sampled bool
}
func NewTraceInfo() *TraceInfo {
return &TraceInfo{
Sampled: false,
}
}
func (this *TraceInfo) Schema() avro.Schema {
if _TraceInfo_schema_err != nil {
panic(_TraceInfo_schema_err)
}
return _TraceInfo_schema
}
// Generated by codegen. Please do not modify.
var _TraceInfo_schema, _TraceInfo_schema_err = avro.ParseSchema(`{
"type": "record",
"name": "TraceInfo",
"fields": [
{
"name": "spanId",
"type": "long"
},
{
"name": "traceId",
"type": "long"
},
{
"name": "parentSpanId",
"default": null,
"type": [
"null",
"long"
]
},
{
"name": "sampled",
"default": false,
"type": "boolean"
}
]
}`)