-
Notifications
You must be signed in to change notification settings - Fork 521
/
trace.pb.go
3024 lines (2906 loc) · 79.8 KB
/
trace.pb.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: trace/v1/trace.proto
package v1
import (
encoding_binary "encoding/binary"
fmt "fmt"
proto "github.com/gogo/protobuf/proto"
v11 "github.com/grafana/tempo/pkg/tempopb/common/v1"
v1 "github.com/grafana/tempo/pkg/tempopb/resource/v1"
io "io"
math "math"
math_bits "math/bits"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package
// SpanFlags represents constants used to interpret the
// Span.flags field, which is protobuf 'fixed32' type and is to
// be used as bit-fields. Each non-zero value defined in this enum is
// a bit-mask. To extract the bit-field, for example, use an
// expression like:
//
// (span.flags & SPAN_FLAGS_TRACE_FLAGS_MASK)
//
// See https://www.w3.org/TR/trace-context-2/#trace-flags for the flag definitions.
//
// Note that Span flags were introduced in version 1.1 of the
// OpenTelemetry protocol. Older Span producers do not set this
// field, consequently consumers should not rely on the absence of a
// particular flag bit to indicate the presence of a particular feature.
type SpanFlags int32
const (
// The zero value for the enum. Should not be used for comparisons.
// Instead use bitwise "and" with the appropriate mask as shown above.
SpanFlags_SPAN_FLAGS_DO_NOT_USE SpanFlags = 0
// Bits 0-7 are used for trace flags.
SpanFlags_SPAN_FLAGS_TRACE_FLAGS_MASK SpanFlags = 255
// Bits 8 and 9 are used to indicate that the parent span or link span is remote.
// Bit 8 (`HAS_IS_REMOTE`) indicates whether the value is known.
// Bit 9 (`IS_REMOTE`) indicates whether the span or link is remote.
SpanFlags_SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK SpanFlags = 256
SpanFlags_SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK SpanFlags = 512
)
var SpanFlags_name = map[int32]string{
0: "SPAN_FLAGS_DO_NOT_USE",
255: "SPAN_FLAGS_TRACE_FLAGS_MASK",
256: "SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK",
512: "SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK",
}
var SpanFlags_value = map[string]int32{
"SPAN_FLAGS_DO_NOT_USE": 0,
"SPAN_FLAGS_TRACE_FLAGS_MASK": 255,
"SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK": 256,
"SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK": 512,
}
func (x SpanFlags) String() string {
return proto.EnumName(SpanFlags_name, int32(x))
}
func (SpanFlags) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{0}
}
// SpanKind is the type of span. Can be used to specify additional relationships between spans
// in addition to a parent/child relationship.
type Span_SpanKind int32
const (
// Unspecified. Do NOT use as default.
// Implementations MAY assume SpanKind to be INTERNAL when receiving UNSPECIFIED.
Span_SPAN_KIND_UNSPECIFIED Span_SpanKind = 0
// Indicates that the span represents an internal operation within an application,
// as opposed to an operation happening at the boundaries. Default value.
Span_SPAN_KIND_INTERNAL Span_SpanKind = 1
// Indicates that the span covers server-side handling of an RPC or other
// remote network request.
Span_SPAN_KIND_SERVER Span_SpanKind = 2
// Indicates that the span describes a request to some remote service.
Span_SPAN_KIND_CLIENT Span_SpanKind = 3
// Indicates that the span describes a producer sending a message to a broker.
// Unlike CLIENT and SERVER, there is often no direct critical path latency relationship
// between producer and consumer spans. A PRODUCER span ends when the message was accepted
// by the broker while the logical processing of the message might span a much longer time.
Span_SPAN_KIND_PRODUCER Span_SpanKind = 4
// Indicates that the span describes consumer receiving a message from a broker.
// Like the PRODUCER kind, there is often no direct critical path latency relationship
// between producer and consumer spans.
Span_SPAN_KIND_CONSUMER Span_SpanKind = 5
)
var Span_SpanKind_name = map[int32]string{
0: "SPAN_KIND_UNSPECIFIED",
1: "SPAN_KIND_INTERNAL",
2: "SPAN_KIND_SERVER",
3: "SPAN_KIND_CLIENT",
4: "SPAN_KIND_PRODUCER",
5: "SPAN_KIND_CONSUMER",
}
var Span_SpanKind_value = map[string]int32{
"SPAN_KIND_UNSPECIFIED": 0,
"SPAN_KIND_INTERNAL": 1,
"SPAN_KIND_SERVER": 2,
"SPAN_KIND_CLIENT": 3,
"SPAN_KIND_PRODUCER": 4,
"SPAN_KIND_CONSUMER": 5,
}
func (x Span_SpanKind) String() string {
return proto.EnumName(Span_SpanKind_name, int32(x))
}
func (Span_SpanKind) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{3, 0}
}
// For the semantics of status codes see
// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/api.md#set-status
type Status_StatusCode int32
const (
// The default status.
Status_STATUS_CODE_UNSET Status_StatusCode = 0
// The Span has been validated by an Application developer or Operator to
// have completed successfully.
Status_STATUS_CODE_OK Status_StatusCode = 1
// The Span contains an error.
Status_STATUS_CODE_ERROR Status_StatusCode = 2
)
var Status_StatusCode_name = map[int32]string{
0: "STATUS_CODE_UNSET",
1: "STATUS_CODE_OK",
2: "STATUS_CODE_ERROR",
}
var Status_StatusCode_value = map[string]int32{
"STATUS_CODE_UNSET": 0,
"STATUS_CODE_OK": 1,
"STATUS_CODE_ERROR": 2,
}
func (x Status_StatusCode) String() string {
return proto.EnumName(Status_StatusCode_name, int32(x))
}
func (Status_StatusCode) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{4, 0}
}
// TracesData represents the traces data that can be stored in a persistent storage,
// OR can be embedded by other protocols that transfer OTLP traces data but do
// not implement the OTLP protocol.
//
// The main difference between this message and collector protocol is that
// in this message there will not be any "control" or "metadata" specific to
// OTLP protocol.
//
// When new fields are added into this message, the OTLP request MUST be updated
// as well.
type TracesData struct {
// An array of ResourceSpans.
// For data coming from a single resource this array will typically contain
// one element. Intermediary nodes that receive data from multiple origins
// typically batch the data before forwarding further and in that case this
// array will contain multiple elements.
ResourceSpans []*ResourceSpans `protobuf:"bytes,1,rep,name=resource_spans,json=resourceSpans,proto3" json:"resource_spans,omitempty"`
}
func (m *TracesData) Reset() { *m = TracesData{} }
func (m *TracesData) String() string { return proto.CompactTextString(m) }
func (*TracesData) ProtoMessage() {}
func (*TracesData) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{0}
}
func (m *TracesData) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *TracesData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_TracesData.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *TracesData) XXX_Merge(src proto.Message) {
xxx_messageInfo_TracesData.Merge(m, src)
}
func (m *TracesData) XXX_Size() int {
return m.Size()
}
func (m *TracesData) XXX_DiscardUnknown() {
xxx_messageInfo_TracesData.DiscardUnknown(m)
}
var xxx_messageInfo_TracesData proto.InternalMessageInfo
func (m *TracesData) GetResourceSpans() []*ResourceSpans {
if m != nil {
return m.ResourceSpans
}
return nil
}
// A collection of ScopeSpans from a Resource.
type ResourceSpans struct {
// The resource for the spans in this message.
// If this field is not set then no resource info is known.
Resource *v1.Resource `protobuf:"bytes,1,opt,name=resource,proto3" json:"resource,omitempty"`
// A list of ScopeSpans that originate from a resource.
ScopeSpans []*ScopeSpans `protobuf:"bytes,2,rep,name=scope_spans,json=scopeSpans,proto3" json:"scope_spans,omitempty"`
// The Schema URL, if known. This is the identifier of the Schema that the resource data
// is recorded in. To learn more about Schema URL see
// https://opentelemetry.io/docs/specs/otel/schemas/#schema-url
// This schema_url applies to the data in the "resource" field. It does not apply
// to the data in the "scope_spans" field which have their own schema_url field.
SchemaUrl string `protobuf:"bytes,3,opt,name=schema_url,json=schemaUrl,proto3" json:"schema_url,omitempty"`
}
func (m *ResourceSpans) Reset() { *m = ResourceSpans{} }
func (m *ResourceSpans) String() string { return proto.CompactTextString(m) }
func (*ResourceSpans) ProtoMessage() {}
func (*ResourceSpans) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{1}
}
func (m *ResourceSpans) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ResourceSpans) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ResourceSpans.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ResourceSpans) XXX_Merge(src proto.Message) {
xxx_messageInfo_ResourceSpans.Merge(m, src)
}
func (m *ResourceSpans) XXX_Size() int {
return m.Size()
}
func (m *ResourceSpans) XXX_DiscardUnknown() {
xxx_messageInfo_ResourceSpans.DiscardUnknown(m)
}
var xxx_messageInfo_ResourceSpans proto.InternalMessageInfo
func (m *ResourceSpans) GetResource() *v1.Resource {
if m != nil {
return m.Resource
}
return nil
}
func (m *ResourceSpans) GetScopeSpans() []*ScopeSpans {
if m != nil {
return m.ScopeSpans
}
return nil
}
func (m *ResourceSpans) GetSchemaUrl() string {
if m != nil {
return m.SchemaUrl
}
return ""
}
// A collection of Spans produced by an InstrumentationScope.
type ScopeSpans struct {
// The instrumentation scope information for the spans in this message.
// Semantically when InstrumentationScope isn't set, it is equivalent with
// an empty instrumentation scope name (unknown).
Scope *v11.InstrumentationScope `protobuf:"bytes,1,opt,name=scope,proto3" json:"scope,omitempty"`
// A list of Spans that originate from an instrumentation scope.
Spans []*Span `protobuf:"bytes,2,rep,name=spans,proto3" json:"spans,omitempty"`
// The Schema URL, if known. This is the identifier of the Schema that the span data
// is recorded in. To learn more about Schema URL see
// https://opentelemetry.io/docs/specs/otel/schemas/#schema-url
// This schema_url applies to all spans and span events in the "spans" field.
SchemaUrl string `protobuf:"bytes,3,opt,name=schema_url,json=schemaUrl,proto3" json:"schema_url,omitempty"`
}
func (m *ScopeSpans) Reset() { *m = ScopeSpans{} }
func (m *ScopeSpans) String() string { return proto.CompactTextString(m) }
func (*ScopeSpans) ProtoMessage() {}
func (*ScopeSpans) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{2}
}
func (m *ScopeSpans) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *ScopeSpans) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_ScopeSpans.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *ScopeSpans) XXX_Merge(src proto.Message) {
xxx_messageInfo_ScopeSpans.Merge(m, src)
}
func (m *ScopeSpans) XXX_Size() int {
return m.Size()
}
func (m *ScopeSpans) XXX_DiscardUnknown() {
xxx_messageInfo_ScopeSpans.DiscardUnknown(m)
}
var xxx_messageInfo_ScopeSpans proto.InternalMessageInfo
func (m *ScopeSpans) GetScope() *v11.InstrumentationScope {
if m != nil {
return m.Scope
}
return nil
}
func (m *ScopeSpans) GetSpans() []*Span {
if m != nil {
return m.Spans
}
return nil
}
func (m *ScopeSpans) GetSchemaUrl() string {
if m != nil {
return m.SchemaUrl
}
return ""
}
// A Span represents a single operation performed by a single component of the system.
//
// The next available field id is 17.
type Span struct {
// A unique identifier for a trace. All spans from the same trace share
// the same `trace_id`. The ID is a 16-byte array. An ID with all zeroes OR
// of length other than 16 bytes is considered invalid (empty string in OTLP/JSON
// is zero-length and thus is also invalid).
//
// This field is required.
TraceId []byte `protobuf:"bytes,1,opt,name=trace_id,json=traceId,proto3" json:"trace_id,omitempty"`
// A unique identifier for a span within a trace, assigned when the span
// is created. The ID is an 8-byte array. An ID with all zeroes OR of length
// other than 8 bytes is considered invalid (empty string in OTLP/JSON
// is zero-length and thus is also invalid).
//
// This field is required.
SpanId []byte `protobuf:"bytes,2,opt,name=span_id,json=spanId,proto3" json:"span_id,omitempty"`
// trace_state conveys information about request position in multiple distributed tracing graphs.
// It is a trace_state in w3c-trace-context format: https://www.w3.org/TR/trace-context/#tracestate-header
// See also https://github.com/w3c/distributed-tracing for more details about this field.
TraceState string `protobuf:"bytes,3,opt,name=trace_state,json=traceState,proto3" json:"trace_state,omitempty"`
// The `span_id` of this span's parent span. If this is a root span, then this
// field must be empty. The ID is an 8-byte array.
ParentSpanId []byte `protobuf:"bytes,4,opt,name=parent_span_id,json=parentSpanId,proto3" json:"parent_span_id,omitempty"`
// Flags, a bit field.
//
// Bits 0-7 (8 least significant bits) are the trace flags as defined in W3C Trace
// Context specification. To read the 8-bit W3C trace flag, use
// `flags & SPAN_FLAGS_TRACE_FLAGS_MASK`.
//
// See https://www.w3.org/TR/trace-context-2/#trace-flags for the flag definitions.
//
// Bits 8 and 9 represent the 3 states of whether a span's parent
// is remote. The states are (unknown, is not remote, is remote).
// To read whether the value is known, use `(flags & SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK) != 0`.
// To read whether the span is remote, use `(flags & SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK) != 0`.
//
// When creating span messages, if the message is logically forwarded from another source
// with an equivalent flags fields (i.e., usually another OTLP span message), the field SHOULD
// be copied as-is. If creating from a source that does not have an equivalent flags field
// (such as a runtime representation of an OpenTelemetry span), the high 22 bits MUST
// be set to zero.
// Readers MUST NOT assume that bits 10-31 (22 most significant bits) will be zero.
//
// [Optional].
Flags uint32 `protobuf:"fixed32,16,opt,name=flags,proto3" json:"flags,omitempty"`
// A description of the span's operation.
//
// For example, the name can be a qualified method name or a file name
// and a line number where the operation is called. A best practice is to use
// the same display name at the same call point in an application.
// This makes it easier to correlate spans in different traces.
//
// This field is semantically required to be set to non-empty string.
// Empty value is equivalent to an unknown span name.
//
// This field is required.
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
// Distinguishes between spans generated in a particular context. For example,
// two spans with the same name may be distinguished using `CLIENT` (caller)
// and `SERVER` (callee) to identify queueing latency associated with the span.
Kind Span_SpanKind `protobuf:"varint,6,opt,name=kind,proto3,enum=tempopb.trace.v1.Span_SpanKind" json:"kind,omitempty"`
// start_time_unix_nano is the start time of the span. On the client side, this is the time
// kept by the local machine where the span execution starts. On the server side, this
// is the time when the server's application handler starts running.
// Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.
//
// This field is semantically required and it is expected that end_time >= start_time.
StartTimeUnixNano uint64 `protobuf:"fixed64,7,opt,name=start_time_unix_nano,json=startTimeUnixNano,proto3" json:"start_time_unix_nano,omitempty"`
// end_time_unix_nano is the end time of the span. On the client side, this is the time
// kept by the local machine where the span execution ends. On the server side, this
// is the time when the server application handler stops running.
// Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January 1970.
//
// This field is semantically required and it is expected that end_time >= start_time.
EndTimeUnixNano uint64 `protobuf:"fixed64,8,opt,name=end_time_unix_nano,json=endTimeUnixNano,proto3" json:"end_time_unix_nano,omitempty"`
// attributes is a collection of key/value pairs. Note, global attributes
// like server name can be set using the resource API. Examples of attributes:
//
// "/http/user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"
// "/http/server_latency": 300
// "example.com/myattribute": true
// "example.com/score": 10.239
//
// The OpenTelemetry API specification further restricts the allowed value types:
// https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/common/README.md#attribute
// Attribute keys MUST be unique (it is not allowed to have more than one
// attribute with the same key).
Attributes []*v11.KeyValue `protobuf:"bytes,9,rep,name=attributes,proto3" json:"attributes,omitempty"`
// dropped_attributes_count is the number of attributes that were discarded. Attributes
// can be discarded because their keys are too long or because there are too many
// attributes. If this value is 0, then no attributes were dropped.
DroppedAttributesCount uint32 `protobuf:"varint,10,opt,name=dropped_attributes_count,json=droppedAttributesCount,proto3" json:"dropped_attributes_count,omitempty"`
// events is a collection of Event items.
Events []*Span_Event `protobuf:"bytes,11,rep,name=events,proto3" json:"events,omitempty"`
// dropped_events_count is the number of dropped events. If the value is 0, then no
// events were dropped.
DroppedEventsCount uint32 `protobuf:"varint,12,opt,name=dropped_events_count,json=droppedEventsCount,proto3" json:"dropped_events_count,omitempty"`
// links is a collection of Links, which are references from this span to a span
// in the same or different trace.
Links []*Span_Link `protobuf:"bytes,13,rep,name=links,proto3" json:"links,omitempty"`
// dropped_links_count is the number of dropped links after the maximum size was
// enforced. If this value is 0, then no links were dropped.
DroppedLinksCount uint32 `protobuf:"varint,14,opt,name=dropped_links_count,json=droppedLinksCount,proto3" json:"dropped_links_count,omitempty"`
// An optional final status for this span. Semantically when Status isn't set, it means
// span's status code is unset, i.e. assume STATUS_CODE_UNSET (code = 0).
Status *Status `protobuf:"bytes,15,opt,name=status,proto3" json:"status,omitempty"`
}
func (m *Span) Reset() { *m = Span{} }
func (m *Span) String() string { return proto.CompactTextString(m) }
func (*Span) ProtoMessage() {}
func (*Span) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{3}
}
func (m *Span) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Span) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Span.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Span) XXX_Merge(src proto.Message) {
xxx_messageInfo_Span.Merge(m, src)
}
func (m *Span) XXX_Size() int {
return m.Size()
}
func (m *Span) XXX_DiscardUnknown() {
xxx_messageInfo_Span.DiscardUnknown(m)
}
var xxx_messageInfo_Span proto.InternalMessageInfo
func (m *Span) GetTraceId() []byte {
if m != nil {
return m.TraceId
}
return nil
}
func (m *Span) GetSpanId() []byte {
if m != nil {
return m.SpanId
}
return nil
}
func (m *Span) GetTraceState() string {
if m != nil {
return m.TraceState
}
return ""
}
func (m *Span) GetParentSpanId() []byte {
if m != nil {
return m.ParentSpanId
}
return nil
}
func (m *Span) GetFlags() uint32 {
if m != nil {
return m.Flags
}
return 0
}
func (m *Span) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Span) GetKind() Span_SpanKind {
if m != nil {
return m.Kind
}
return Span_SPAN_KIND_UNSPECIFIED
}
func (m *Span) GetStartTimeUnixNano() uint64 {
if m != nil {
return m.StartTimeUnixNano
}
return 0
}
func (m *Span) GetEndTimeUnixNano() uint64 {
if m != nil {
return m.EndTimeUnixNano
}
return 0
}
func (m *Span) GetAttributes() []*v11.KeyValue {
if m != nil {
return m.Attributes
}
return nil
}
func (m *Span) GetDroppedAttributesCount() uint32 {
if m != nil {
return m.DroppedAttributesCount
}
return 0
}
func (m *Span) GetEvents() []*Span_Event {
if m != nil {
return m.Events
}
return nil
}
func (m *Span) GetDroppedEventsCount() uint32 {
if m != nil {
return m.DroppedEventsCount
}
return 0
}
func (m *Span) GetLinks() []*Span_Link {
if m != nil {
return m.Links
}
return nil
}
func (m *Span) GetDroppedLinksCount() uint32 {
if m != nil {
return m.DroppedLinksCount
}
return 0
}
func (m *Span) GetStatus() *Status {
if m != nil {
return m.Status
}
return nil
}
// Event is a time-stamped annotation of the span, consisting of user-supplied
// text description and key-value pairs.
type Span_Event struct {
// time_unix_nano is the time the event occurred.
TimeUnixNano uint64 `protobuf:"fixed64,1,opt,name=time_unix_nano,json=timeUnixNano,proto3" json:"time_unix_nano,omitempty"`
// name of the event.
// This field is semantically required to be set to non-empty string.
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// attributes is a collection of attribute key/value pairs on the event.
// Attribute keys MUST be unique (it is not allowed to have more than one
// attribute with the same key).
Attributes []*v11.KeyValue `protobuf:"bytes,3,rep,name=attributes,proto3" json:"attributes,omitempty"`
// dropped_attributes_count is the number of dropped attributes. If the value is 0,
// then no attributes were dropped.
DroppedAttributesCount uint32 `protobuf:"varint,4,opt,name=dropped_attributes_count,json=droppedAttributesCount,proto3" json:"dropped_attributes_count,omitempty"`
}
func (m *Span_Event) Reset() { *m = Span_Event{} }
func (m *Span_Event) String() string { return proto.CompactTextString(m) }
func (*Span_Event) ProtoMessage() {}
func (*Span_Event) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{3, 0}
}
func (m *Span_Event) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Span_Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Span_Event.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Span_Event) XXX_Merge(src proto.Message) {
xxx_messageInfo_Span_Event.Merge(m, src)
}
func (m *Span_Event) XXX_Size() int {
return m.Size()
}
func (m *Span_Event) XXX_DiscardUnknown() {
xxx_messageInfo_Span_Event.DiscardUnknown(m)
}
var xxx_messageInfo_Span_Event proto.InternalMessageInfo
func (m *Span_Event) GetTimeUnixNano() uint64 {
if m != nil {
return m.TimeUnixNano
}
return 0
}
func (m *Span_Event) GetName() string {
if m != nil {
return m.Name
}
return ""
}
func (m *Span_Event) GetAttributes() []*v11.KeyValue {
if m != nil {
return m.Attributes
}
return nil
}
func (m *Span_Event) GetDroppedAttributesCount() uint32 {
if m != nil {
return m.DroppedAttributesCount
}
return 0
}
// A pointer from the current span to another span in the same trace or in a
// different trace. For example, this can be used in batching operations,
// where a single batch handler processes multiple requests from different
// traces or when the handler receives a request from a different project.
type Span_Link struct {
// A unique identifier of a trace that this linked span is part of. The ID is a
// 16-byte array.
TraceId []byte `protobuf:"bytes,1,opt,name=trace_id,json=traceId,proto3" json:"trace_id,omitempty"`
// A unique identifier for the linked span. The ID is an 8-byte array.
SpanId []byte `protobuf:"bytes,2,opt,name=span_id,json=spanId,proto3" json:"span_id,omitempty"`
// The trace_state associated with the link.
TraceState string `protobuf:"bytes,3,opt,name=trace_state,json=traceState,proto3" json:"trace_state,omitempty"`
// attributes is a collection of attribute key/value pairs on the link.
// Attribute keys MUST be unique (it is not allowed to have more than one
// attribute with the same key).
Attributes []*v11.KeyValue `protobuf:"bytes,4,rep,name=attributes,proto3" json:"attributes,omitempty"`
// dropped_attributes_count is the number of dropped attributes. If the value is 0,
// then no attributes were dropped.
DroppedAttributesCount uint32 `protobuf:"varint,5,opt,name=dropped_attributes_count,json=droppedAttributesCount,proto3" json:"dropped_attributes_count,omitempty"`
// Flags, a bit field.
//
// Bits 0-7 (8 least significant bits) are the trace flags as defined in W3C Trace
// Context specification. To read the 8-bit W3C trace flag, use
// `flags & SPAN_FLAGS_TRACE_FLAGS_MASK`.
//
// See https://www.w3.org/TR/trace-context-2/#trace-flags for the flag definitions.
//
// Bits 8 and 9 represent the 3 states of whether the link is remote.
// The states are (unknown, is not remote, is remote).
// To read whether the value is known, use `(flags & SPAN_FLAGS_CONTEXT_HAS_IS_REMOTE_MASK) != 0`.
// To read whether the link is remote, use `(flags & SPAN_FLAGS_CONTEXT_IS_REMOTE_MASK) != 0`.
//
// Readers MUST NOT assume that bits 10-31 (22 most significant bits) will be zero.
// When creating new spans, bits 10-31 (most-significant 22-bits) MUST be zero.
//
// [Optional].
Flags uint32 `protobuf:"fixed32,6,opt,name=flags,proto3" json:"flags,omitempty"`
}
func (m *Span_Link) Reset() { *m = Span_Link{} }
func (m *Span_Link) String() string { return proto.CompactTextString(m) }
func (*Span_Link) ProtoMessage() {}
func (*Span_Link) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{3, 1}
}
func (m *Span_Link) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Span_Link) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Span_Link.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Span_Link) XXX_Merge(src proto.Message) {
xxx_messageInfo_Span_Link.Merge(m, src)
}
func (m *Span_Link) XXX_Size() int {
return m.Size()
}
func (m *Span_Link) XXX_DiscardUnknown() {
xxx_messageInfo_Span_Link.DiscardUnknown(m)
}
var xxx_messageInfo_Span_Link proto.InternalMessageInfo
func (m *Span_Link) GetTraceId() []byte {
if m != nil {
return m.TraceId
}
return nil
}
func (m *Span_Link) GetSpanId() []byte {
if m != nil {
return m.SpanId
}
return nil
}
func (m *Span_Link) GetTraceState() string {
if m != nil {
return m.TraceState
}
return ""
}
func (m *Span_Link) GetAttributes() []*v11.KeyValue {
if m != nil {
return m.Attributes
}
return nil
}
func (m *Span_Link) GetDroppedAttributesCount() uint32 {
if m != nil {
return m.DroppedAttributesCount
}
return 0
}
func (m *Span_Link) GetFlags() uint32 {
if m != nil {
return m.Flags
}
return 0
}
// The Status type defines a logical error model that is suitable for different
// programming environments, including REST APIs and RPC APIs.
type Status struct {
// A developer-facing human readable error message.
Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
// The status code.
Code Status_StatusCode `protobuf:"varint,3,opt,name=code,proto3,enum=tempopb.trace.v1.Status_StatusCode" json:"code,omitempty"`
}
func (m *Status) Reset() { *m = Status{} }
func (m *Status) String() string { return proto.CompactTextString(m) }
func (*Status) ProtoMessage() {}
func (*Status) Descriptor() ([]byte, []int) {
return fileDescriptor_a52825641200f25e, []int{4}
}
func (m *Status) XXX_Unmarshal(b []byte) error {
return m.Unmarshal(b)
}
func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
if deterministic {
return xxx_messageInfo_Status.Marshal(b, m, deterministic)
} else {
b = b[:cap(b)]
n, err := m.MarshalToSizedBuffer(b)
if err != nil {
return nil, err
}
return b[:n], nil
}
}
func (m *Status) XXX_Merge(src proto.Message) {
xxx_messageInfo_Status.Merge(m, src)
}
func (m *Status) XXX_Size() int {
return m.Size()
}
func (m *Status) XXX_DiscardUnknown() {
xxx_messageInfo_Status.DiscardUnknown(m)
}
var xxx_messageInfo_Status proto.InternalMessageInfo
func (m *Status) GetMessage() string {
if m != nil {
return m.Message
}
return ""
}
func (m *Status) GetCode() Status_StatusCode {
if m != nil {
return m.Code
}
return Status_STATUS_CODE_UNSET
}
func init() {
proto.RegisterEnum("tempopb.trace.v1.SpanFlags", SpanFlags_name, SpanFlags_value)
proto.RegisterEnum("tempopb.trace.v1.Span_SpanKind", Span_SpanKind_name, Span_SpanKind_value)
proto.RegisterEnum("tempopb.trace.v1.Status_StatusCode", Status_StatusCode_name, Status_StatusCode_value)
proto.RegisterType((*TracesData)(nil), "tempopb.trace.v1.TracesData")
proto.RegisterType((*ResourceSpans)(nil), "tempopb.trace.v1.ResourceSpans")
proto.RegisterType((*ScopeSpans)(nil), "tempopb.trace.v1.ScopeSpans")
proto.RegisterType((*Span)(nil), "tempopb.trace.v1.Span")
proto.RegisterType((*Span_Event)(nil), "tempopb.trace.v1.Span.Event")
proto.RegisterType((*Span_Link)(nil), "tempopb.trace.v1.Span.Link")
proto.RegisterType((*Status)(nil), "tempopb.trace.v1.Status")
}
func init() { proto.RegisterFile("trace/v1/trace.proto", fileDescriptor_a52825641200f25e) }
var fileDescriptor_a52825641200f25e = []byte{
// 1033 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6f, 0x1b, 0x45,
0x14, 0xf6, 0x38, 0xeb, 0x1f, 0x79, 0x49, 0xdc, 0xed, 0x90, 0x86, 0x6d, 0xda, 0x3a, 0xc6, 0xfc,
0xb2, 0x0a, 0xd8, 0x4d, 0x8a, 0x04, 0x08, 0xf5, 0xe0, 0xda, 0x1b, 0x70, 0x93, 0xac, 0xa3, 0xd9,
0x75, 0x84, 0xb8, 0xac, 0x36, 0xde, 0x69, 0xba, 0x8a, 0x3d, 0xbb, 0xda, 0x1d, 0x47, 0xed, 0x8d,
0x3f, 0x81, 0x0b, 0x12, 0x48, 0xfc, 0x05, 0x9c, 0xe0, 0xc6, 0x9f, 0xc0, 0xb1, 0x47, 0x8e, 0x28,
0xb9, 0x94, 0x3b, 0x77, 0xd0, 0xcc, 0xec, 0x3a, 0xb6, 0x49, 0xcb, 0xa5, 0x5c, 0x92, 0x99, 0xef,
0x7d, 0xef, 0xfb, 0xde, 0xcc, 0x7b, 0x63, 0x2d, 0xac, 0xf3, 0xd8, 0x1b, 0xd2, 0xd6, 0xd9, 0x76,
0x4b, 0x2e, 0x9a, 0x51, 0x1c, 0xf2, 0x10, 0xeb, 0x9c, 0x8e, 0xa3, 0x30, 0x3a, 0x6e, 0x2a, 0xf0,
0x6c, 0x7b, 0x73, 0x63, 0x18, 0x8e, 0xc7, 0x21, 0x13, 0x44, 0xb5, 0x52, 0xcc, 0xcd, 0xcd, 0x98,
0x26, 0xe1, 0x24, 0x56, 0x12, 0xd9, 0x5a, 0xc5, 0xea, 0x0e, 0x80, 0x23, 0xf2, 0x93, 0xae, 0xc7,
0x3d, 0xbc, 0x0b, 0x95, 0x2c, 0xee, 0x26, 0x91, 0xc7, 0x12, 0x03, 0xd5, 0x96, 0x1a, 0x2b, 0x3b,
0x5b, 0xcd, 0x45, 0xb3, 0x26, 0x49, 0x79, 0xb6, 0xa0, 0x91, 0xb5, 0x78, 0x76, 0x5b, 0xff, 0x19,
0xc1, 0xda, 0x1c, 0x01, 0x7f, 0x06, 0xe5, 0x8c, 0x62, 0xa0, 0x1a, 0x6a, 0xac, 0xec, 0xdc, 0x99,
0x6a, 0x4e, 0x4b, 0x9a, 0x91, 0x25, 0x53, 0x3a, 0x7e, 0x00, 0x2b, 0xc9, 0x30, 0x8c, 0xb2, 0x8a,
0xf2, 0xb2, 0xa2, 0xdb, 0xff, 0xae, 0xc8, 0x16, 0x24, 0x55, 0x0e, 0x24, 0xd3, 0x35, 0xbe, 0x03,
0x90, 0x0c, 0x9f, 0xd0, 0xb1, 0xe7, 0x4e, 0xe2, 0x91, 0xb1, 0x54, 0x43, 0x8d, 0x65, 0xb2, 0xac,
0x90, 0x41, 0x3c, 0x7a, 0x54, 0x2c, 0xbf, 0x28, 0xe9, 0x7f, 0x96, 0xea, 0xdf, 0x23, 0x80, 0x4b,
0x05, 0xfc, 0x00, 0x0a, 0x52, 0x23, 0x2d, 0xf6, 0xfd, 0xa9, 0x5d, 0x7a, 0xb3, 0x67, 0xdb, 0xcd,
0x1e, 0x4b, 0x78, 0x3c, 0x19, 0x53, 0xc6, 0x3d, 0x1e, 0x84, 0x4c, 0x26, 0x13, 0x95, 0x85, 0x3f,
0x84, 0xc2, 0x6c, 0xb5, 0x1b, 0x57, 0x54, 0x1b, 0x79, 0x8c, 0x28, 0xd2, 0x7f, 0x94, 0x58, 0xff,
0x6b, 0x19, 0x34, 0x41, 0xc7, 0x37, 0xa1, 0x2c, 0xf3, 0xdd, 0xc0, 0x97, 0x75, 0xad, 0x92, 0x92,
0xdc, 0xf7, 0x7c, 0xfc, 0x26, 0x94, 0x84, 0x96, 0x88, 0xe4, 0x65, 0xa4, 0x28, 0xb6, 0x3d, 0x1f,
0x6f, 0xc1, 0x8a, 0xca, 0x49, 0xb8, 0xc7, 0x69, 0x2a, 0x0e, 0x12, 0xb2, 0x05, 0x82, 0xdf, 0x81,
0x4a, 0xe4, 0xc5, 0x94, 0x71, 0x37, 0x13, 0xd0, 0xa4, 0xc0, 0xaa, 0x42, 0x6d, 0x25, 0xb3, 0x0e,
0x85, 0xc7, 0x23, 0xef, 0x24, 0x31, 0xf4, 0x1a, 0x6a, 0x94, 0x88, 0xda, 0x60, 0x0c, 0x1a, 0xf3,
0xc6, 0xd4, 0x28, 0x48, 0x55, 0xb9, 0xc6, 0xf7, 0x41, 0x3b, 0x0d, 0x98, 0x6f, 0x14, 0x6b, 0xa8,
0x51, 0xb9, 0x6a, 0x72, 0x84, 0xa2, 0xfc, 0xb3, 0x17, 0x30, 0x9f, 0x48, 0x32, 0x6e, 0xc1, 0x7a,
0xc2, 0xbd, 0x98, 0xbb, 0x3c, 0x18, 0x53, 0x77, 0xc2, 0x82, 0xa7, 0x2e, 0xf3, 0x58, 0x68, 0x94,
0x6a, 0xa8, 0x51, 0x24, 0xd7, 0x65, 0xcc, 0x09, 0xc6, 0x74, 0xc0, 0x82, 0xa7, 0x96, 0xc7, 0x42,
0xfc, 0x01, 0x60, 0xca, 0xfc, 0x45, 0x7a, 0x59, 0xd2, 0xaf, 0x51, 0xe6, 0xcf, 0x91, 0x3f, 0x07,
0xf0, 0x38, 0x8f, 0x83, 0xe3, 0x09, 0xa7, 0x89, 0xb1, 0x2c, 0x5b, 0x72, 0xeb, 0x8a, 0x8e, 0xee,
0xd1, 0x67, 0x47, 0xde, 0x68, 0x42, 0xc9, 0x0c, 0x1d, 0x7f, 0x0a, 0x86, 0x1f, 0x87, 0x51, 0x44,
0x7d, 0xf7, 0x12, 0x75, 0x87, 0xe1, 0x84, 0x71, 0x03, 0x6a, 0xa8, 0xb1, 0x46, 0x36, 0xd2, 0x78,
0x7b, 0x1a, 0xee, 0x88, 0x28, 0xfe, 0x18, 0x8a, 0xf4, 0x8c, 0x32, 0x9e, 0x18, 0x2b, 0x2f, 0x9d,
0x59, 0x71, 0x17, 0xa6, 0x20, 0x91, 0x94, 0x8b, 0xef, 0xc1, 0x7a, 0xe6, 0xa7, 0x90, 0xd4, 0x6b,
0x55, 0x7a, 0xe1, 0x34, 0x26, 0x73, 0x52, 0x9f, 0x6d, 0x28, 0x8c, 0x02, 0x76, 0x9a, 0x18, 0x6b,
0x0b, 0x27, 0x9b, 0xb7, 0xd9, 0x0f, 0xd8, 0x29, 0x51, 0x4c, 0xdc, 0x84, 0x37, 0x32, 0x13, 0x09,
0xa4, 0x1e, 0x15, 0xe9, 0x71, 0x3d, 0x0d, 0x89, 0x84, 0xd4, 0xe2, 0x1e, 0x14, 0xc5, 0xfc, 0x4c,
0x12, 0xe3, 0x9a, 0x7c, 0x0f, 0xc6, 0x15, 0x1e, 0x32, 0x4e, 0x52, 0xde, 0xe6, 0xaf, 0x08, 0x0a,
0xb2, 0x48, 0x31, 0x60, 0x0b, 0x6d, 0x42, 0xb2, 0x4d, 0xab, 0x7c, 0xb6, 0x47, 0xd9, 0x28, 0xe5,
0x67, 0x46, 0x69, 0xbe, 0x6f, 0x4b, 0xaf, 0xaf, 0x6f, 0xda, 0xab, 0xfa, 0xb6, 0xf9, 0x02, 0x81,
0x26, 0xce, 0xfe, 0xff, 0xbc, 0xb7, 0xf9, 0x43, 0x69, 0xaf, 0xef, 0x50, 0x85, 0x57, 0x0e, 0xe3,
0xf4, 0x01, 0x17, 0x67, 0x1e, 0x70, 0xfd, 0x07, 0x04, 0xe5, 0xec, 0x29, 0xe2, 0x9b, 0x70, 0xc3,
0x3e, 0x6c, 0x5b, 0xee, 0x5e, 0xcf, 0xea, 0xba, 0x03, 0xcb, 0x3e, 0x34, 0x3b, 0xbd, 0xdd, 0x9e,
0xd9, 0xd5, 0x73, 0x78, 0x03, 0xf0, 0x65, 0xa8, 0x67, 0x39, 0x26, 0xb1, 0xda, 0xfb, 0x3a, 0xc2,
0xeb, 0xa0, 0x5f, 0xe2, 0xb6, 0x49, 0x8e, 0x4c, 0xa2, 0xe7, 0xe7, 0xd1, 0xce, 0x7e, 0xcf, 0xb4,
0x1c, 0x7d, 0x69, 0x5e, 0xe3, 0x90, 0xf4, 0xbb, 0x83, 0x8e, 0x49, 0x74, 0x6d, 0x1e, 0xef, 0xf4,
0x2d, 0x7b, 0x70, 0x60, 0x12, 0xbd, 0x50, 0xff, 0x05, 0x41, 0x51, 0x0d, 0x15, 0x36, 0xa0, 0x34,
0xa6, 0x49, 0xe2, 0x9d, 0x64, 0xf3, 0x91, 0x6d, 0xf1, 0x27, 0xa0, 0x0d, 0x43, 0x5f, 0xdd, 0x73,
0x65, 0xe7, 0xed, 0x97, 0x8d, 0x65, 0xfa, 0xaf, 0x13, 0xfa, 0x94, 0xc8, 0x84, 0xba, 0x05, 0x70,
0x89, 0xe1, 0x1b, 0x70, 0xdd, 0x76, 0xda, 0xce, 0xc0, 0x76, 0x3b, 0xfd, 0xae, 0x29, 0x0e, 0x6f,
0x3a, 0x7a, 0x0e, 0x63, 0xa8, 0xcc, 0xc2, 0xfd, 0x3d, 0x1d, 0x2d, 0x52, 0x4d, 0x42, 0xfa, 0x44,
0xcf, 0x3f, 0xd2, 0xca, 0x48, 0xcf, 0xdf, 0xfd, 0x11, 0xc1, 0xb2, 0xb8, 0xcf, 0x5d, 0xf9, 0xf3,
0x98, 0x5d, 0xe8, 0xee, 0x7e, 0xfb, 0x0b, 0xdb, 0xed, 0xf6, 0x5d, 0xab, 0xef, 0xb8, 0x03, 0xdb,
0xd4, 0x73, 0xb8, 0x06, 0xb7, 0x66, 0x42, 0x0e, 0x69, 0x77, 0xcc, 0x74, 0x7d, 0xd0, 0xb6, 0xf7,
0xf4, 0xbf, 0x11, 0xbe, 0x0b, 0xef, 0xce, 0x30, 0x3a, 0x7d, 0xcb, 0x31, 0xbf, 0x72, 0xdc, 0x2f,
0xdb, 0xb6, 0xdb, 0xb3, 0x5d, 0x62, 0x1e, 0xf4, 0x1d, 0x53, 0x71, 0xbf, 0xc9, 0xe3, 0xf7, 0xe0,
0xad, 0x2b, 0xb8, 0x8b, 0x3c, 0xed, 0xe1, 0x77, 0xe8, 0xb7, 0xf3, 0x2a, 0x7a, 0x7e, 0x5e, 0x45,
0x7f, 0x9c, 0x57, 0xd1, 0xb7, 0x17, 0xd5, 0xdc, 0xf3, 0x8b, 0x6a, 0xee, 0xf7, 0x8b, 0x6a, 0x0e,
0xb6, 0x82, 0xb0, 0x19, 0x46, 0x94, 0x71, 0x3a, 0xa2, 0x63, 0xca, 0xe3, 0x67, 0xea, 0x03, 0x61,
0x7a, 0x91, 0x0f, 0xd5, 0x77, 0xc2, 0xa1, 0x00, 0x0f, 0xd1, 0xd7, 0x1f, 0x9d, 0x04, 0xfc, 0xc9,
0x44, 0xce, 0x6b, 0xeb, 0x24, 0xf6, 0x1e, 0x7b, 0xcc, 0x6b, 0xc9, 0xbb, 0x6f, 0x45, 0xa7, 0x27,
0xad, 0xb4, 0x0b, 0xad, 0xec, 0xc3, 0xe5, 0xa7, 0xfc, 0xed, 0x7e, 0x44, 0x99, 0x33, 0xd5, 0x96,
0x32, 0x4d, 0xa9, 0xd8, 0x3c, 0xda, 0x3e, 0x2e, 0x4a, 0xaf, 0xfb, 0xff, 0x04, 0x00, 0x00, 0xff,
0xff, 0x70, 0x50, 0x50, 0xd5, 0xea, 0x08, 0x00, 0x00,
}
func (m *TracesData) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *TracesData) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}
func (m *TracesData) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i := len(dAtA)
_ = i
var l int
_ = l
if len(m.ResourceSpans) > 0 {
for iNdEx := len(m.ResourceSpans) - 1; iNdEx >= 0; iNdEx-- {
{
size, err := m.ResourceSpans[iNdEx].MarshalToSizedBuffer(dAtA[:i])
if err != nil {
return 0, err
}
i -= size
i = encodeVarintTrace(dAtA, i, uint64(size))
}
i--
dAtA[i] = 0xa
}
}
return len(dAtA) - i, nil
}
func (m *ResourceSpans) Marshal() (dAtA []byte, err error) {
size := m.Size()
dAtA = make([]byte, size)
n, err := m.MarshalToSizedBuffer(dAtA[:size])
if err != nil {
return nil, err
}
return dAtA[:n], nil
}
func (m *ResourceSpans) MarshalTo(dAtA []byte) (int, error) {
size := m.Size()
return m.MarshalToSizedBuffer(dAtA[:size])
}