diff --git a/internal/storage/v2/grpc/trace_storage.proto b/internal/storage/v2/grpc/trace_storage.proto index 67ee2922167..df5921b7c2a 100644 --- a/internal/storage/v2/grpc/trace_storage.proto +++ b/internal/storage/v2/grpc/trace_storage.proto @@ -5,7 +5,6 @@ package jaeger.storage.v2; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -import "opentelemetry/proto/common/v1/common.proto"; import "opentelemetry/proto/trace/v1/trace.proto"; option go_package = "storage"; @@ -64,13 +63,41 @@ message GetOperationsResponse { repeated Operation operations = 1; } +// KeyValue and all its associated types are copied from opentelemetry-proto/common/v1/common.proto +// (https://github.com/open-telemetry/opentelemetry-proto/blob/main/opentelemetry/proto/common/v1/common.proto). +// This type is used to store attributes in traces. +message KeyValue { + string key = 1; + AnyValue value = 2; +} + +message AnyValue { + oneof value { + string string_value = 1; + bool bool_value = 2; + int64 int_value = 3; + double double_value = 4; + ArrayValue array_value = 5; + KeyValueList kvlist_value = 6; + bytes bytes_value = 7; + } +} + +message KeyValueList { + repeated KeyValue values = 1; +} + +message ArrayValue { + repeated AnyValue values = 1; +} + // TraceQueryParameters contains query parameters to find traces. For a detailed // definition of each field in this message, refer to `TraceQueryParameters` in `jaeger.api_v3` // (https://github.com/jaegertracing/jaeger-idl/blob/main/proto/api_v3/query_service.proto). message TraceQueryParameters { string service_name = 1; string operation_name = 2; - repeated opentelemetry.proto.common.v1.KeyValue attributes = 3; + repeated KeyValue attributes = 3; google.protobuf.Timestamp start_time_min = 4 [ (gogoproto.stdtime) = true, (gogoproto.nullable) = false @@ -97,7 +124,6 @@ message FindTracesRequest { TraceQueryParameters query = 1; } - // FoundTraceID is a wrapper around trace ID returned from FindTraceIDs // with an optional time range that may be used in GetTraces calls. // diff --git a/proto-gen/storage/v2/trace_storage.pb.go b/proto-gen/storage/v2/trace_storage.pb.go index 97bbc87abc1..8bdea1bed4e 100644 --- a/proto-gen/storage/v2/trace_storage.pb.go +++ b/proto-gen/storage/v2/trace_storage.pb.go @@ -9,7 +9,6 @@ import ( _ "github.com/gogo/protobuf/gogoproto" proto "github.com/gogo/protobuf/proto" _ "github.com/gogo/protobuf/types" - v11 "go.opentelemetry.io/proto/otlp/common/v1" v1 "go.opentelemetry.io/proto/otlp/trace/v1" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -341,28 +340,295 @@ func (m *GetOperationsResponse) GetOperations() []*Operation { return nil } +// KeyValue and all its associated types are copied from opentelemetry-proto/common/v1/common.proto +// (https://github.com/open-telemetry/opentelemetry-proto/blob/main/opentelemetry/proto/common/v1/common.proto). +// This type is used to store attributes in traces. +type KeyValue struct { + Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + Value *AnyValue `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *KeyValue) Reset() { *m = KeyValue{} } +func (m *KeyValue) String() string { return proto.CompactTextString(m) } +func (*KeyValue) ProtoMessage() {} +func (*KeyValue) Descriptor() ([]byte, []int) { + return fileDescriptor_3441c0fd9397413c, []int{7} +} +func (m *KeyValue) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_KeyValue.Unmarshal(m, b) +} +func (m *KeyValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_KeyValue.Marshal(b, m, deterministic) +} +func (m *KeyValue) XXX_Merge(src proto.Message) { + xxx_messageInfo_KeyValue.Merge(m, src) +} +func (m *KeyValue) XXX_Size() int { + return xxx_messageInfo_KeyValue.Size(m) +} +func (m *KeyValue) XXX_DiscardUnknown() { + xxx_messageInfo_KeyValue.DiscardUnknown(m) +} + +var xxx_messageInfo_KeyValue proto.InternalMessageInfo + +func (m *KeyValue) GetKey() string { + if m != nil { + return m.Key + } + return "" +} + +func (m *KeyValue) GetValue() *AnyValue { + if m != nil { + return m.Value + } + return nil +} + +type AnyValue struct { + // Types that are valid to be assigned to Value: + // *AnyValue_StringValue + // *AnyValue_BoolValue + // *AnyValue_IntValue + // *AnyValue_DoubleValue + // *AnyValue_ArrayValue + // *AnyValue_KvlistValue + // *AnyValue_BytesValue + Value isAnyValue_Value `protobuf_oneof:"value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AnyValue) Reset() { *m = AnyValue{} } +func (m *AnyValue) String() string { return proto.CompactTextString(m) } +func (*AnyValue) ProtoMessage() {} +func (*AnyValue) Descriptor() ([]byte, []int) { + return fileDescriptor_3441c0fd9397413c, []int{8} +} +func (m *AnyValue) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AnyValue.Unmarshal(m, b) +} +func (m *AnyValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AnyValue.Marshal(b, m, deterministic) +} +func (m *AnyValue) XXX_Merge(src proto.Message) { + xxx_messageInfo_AnyValue.Merge(m, src) +} +func (m *AnyValue) XXX_Size() int { + return xxx_messageInfo_AnyValue.Size(m) +} +func (m *AnyValue) XXX_DiscardUnknown() { + xxx_messageInfo_AnyValue.DiscardUnknown(m) +} + +var xxx_messageInfo_AnyValue proto.InternalMessageInfo + +type isAnyValue_Value interface { + isAnyValue_Value() +} + +type AnyValue_StringValue struct { + StringValue string `protobuf:"bytes,1,opt,name=string_value,json=stringValue,proto3,oneof" json:"string_value,omitempty"` +} +type AnyValue_BoolValue struct { + BoolValue bool `protobuf:"varint,2,opt,name=bool_value,json=boolValue,proto3,oneof" json:"bool_value,omitempty"` +} +type AnyValue_IntValue struct { + IntValue int64 `protobuf:"varint,3,opt,name=int_value,json=intValue,proto3,oneof" json:"int_value,omitempty"` +} +type AnyValue_DoubleValue struct { + DoubleValue float64 `protobuf:"fixed64,4,opt,name=double_value,json=doubleValue,proto3,oneof" json:"double_value,omitempty"` +} +type AnyValue_ArrayValue struct { + ArrayValue *ArrayValue `protobuf:"bytes,5,opt,name=array_value,json=arrayValue,proto3,oneof" json:"array_value,omitempty"` +} +type AnyValue_KvlistValue struct { + KvlistValue *KeyValueList `protobuf:"bytes,6,opt,name=kvlist_value,json=kvlistValue,proto3,oneof" json:"kvlist_value,omitempty"` +} +type AnyValue_BytesValue struct { + BytesValue []byte `protobuf:"bytes,7,opt,name=bytes_value,json=bytesValue,proto3,oneof" json:"bytes_value,omitempty"` +} + +func (*AnyValue_StringValue) isAnyValue_Value() {} +func (*AnyValue_BoolValue) isAnyValue_Value() {} +func (*AnyValue_IntValue) isAnyValue_Value() {} +func (*AnyValue_DoubleValue) isAnyValue_Value() {} +func (*AnyValue_ArrayValue) isAnyValue_Value() {} +func (*AnyValue_KvlistValue) isAnyValue_Value() {} +func (*AnyValue_BytesValue) isAnyValue_Value() {} + +func (m *AnyValue) GetValue() isAnyValue_Value { + if m != nil { + return m.Value + } + return nil +} + +func (m *AnyValue) GetStringValue() string { + if x, ok := m.GetValue().(*AnyValue_StringValue); ok { + return x.StringValue + } + return "" +} + +func (m *AnyValue) GetBoolValue() bool { + if x, ok := m.GetValue().(*AnyValue_BoolValue); ok { + return x.BoolValue + } + return false +} + +func (m *AnyValue) GetIntValue() int64 { + if x, ok := m.GetValue().(*AnyValue_IntValue); ok { + return x.IntValue + } + return 0 +} + +func (m *AnyValue) GetDoubleValue() float64 { + if x, ok := m.GetValue().(*AnyValue_DoubleValue); ok { + return x.DoubleValue + } + return 0 +} + +func (m *AnyValue) GetArrayValue() *ArrayValue { + if x, ok := m.GetValue().(*AnyValue_ArrayValue); ok { + return x.ArrayValue + } + return nil +} + +func (m *AnyValue) GetKvlistValue() *KeyValueList { + if x, ok := m.GetValue().(*AnyValue_KvlistValue); ok { + return x.KvlistValue + } + return nil +} + +func (m *AnyValue) GetBytesValue() []byte { + if x, ok := m.GetValue().(*AnyValue_BytesValue); ok { + return x.BytesValue + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*AnyValue) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*AnyValue_StringValue)(nil), + (*AnyValue_BoolValue)(nil), + (*AnyValue_IntValue)(nil), + (*AnyValue_DoubleValue)(nil), + (*AnyValue_ArrayValue)(nil), + (*AnyValue_KvlistValue)(nil), + (*AnyValue_BytesValue)(nil), + } +} + +type KeyValueList struct { + Values []*KeyValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *KeyValueList) Reset() { *m = KeyValueList{} } +func (m *KeyValueList) String() string { return proto.CompactTextString(m) } +func (*KeyValueList) ProtoMessage() {} +func (*KeyValueList) Descriptor() ([]byte, []int) { + return fileDescriptor_3441c0fd9397413c, []int{9} +} +func (m *KeyValueList) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_KeyValueList.Unmarshal(m, b) +} +func (m *KeyValueList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_KeyValueList.Marshal(b, m, deterministic) +} +func (m *KeyValueList) XXX_Merge(src proto.Message) { + xxx_messageInfo_KeyValueList.Merge(m, src) +} +func (m *KeyValueList) XXX_Size() int { + return xxx_messageInfo_KeyValueList.Size(m) +} +func (m *KeyValueList) XXX_DiscardUnknown() { + xxx_messageInfo_KeyValueList.DiscardUnknown(m) +} + +var xxx_messageInfo_KeyValueList proto.InternalMessageInfo + +func (m *KeyValueList) GetValues() []*KeyValue { + if m != nil { + return m.Values + } + return nil +} + +type ArrayValue struct { + Values []*AnyValue `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ArrayValue) Reset() { *m = ArrayValue{} } +func (m *ArrayValue) String() string { return proto.CompactTextString(m) } +func (*ArrayValue) ProtoMessage() {} +func (*ArrayValue) Descriptor() ([]byte, []int) { + return fileDescriptor_3441c0fd9397413c, []int{10} +} +func (m *ArrayValue) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ArrayValue.Unmarshal(m, b) +} +func (m *ArrayValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ArrayValue.Marshal(b, m, deterministic) +} +func (m *ArrayValue) XXX_Merge(src proto.Message) { + xxx_messageInfo_ArrayValue.Merge(m, src) +} +func (m *ArrayValue) XXX_Size() int { + return xxx_messageInfo_ArrayValue.Size(m) +} +func (m *ArrayValue) XXX_DiscardUnknown() { + xxx_messageInfo_ArrayValue.DiscardUnknown(m) +} + +var xxx_messageInfo_ArrayValue proto.InternalMessageInfo + +func (m *ArrayValue) GetValues() []*AnyValue { + if m != nil { + return m.Values + } + return nil +} + // TraceQueryParameters contains query parameters to find traces. For a detailed // definition of each field in this message, refer to `TraceQueryParameters` in `jaeger.api_v3` // (https://github.com/jaegertracing/jaeger-idl/blob/main/proto/api_v3/query_service.proto). type TraceQueryParameters struct { - ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"` - OperationName string `protobuf:"bytes,2,opt,name=operation_name,json=operationName,proto3" json:"operation_name,omitempty"` - Attributes []*v11.KeyValue `protobuf:"bytes,3,rep,name=attributes,proto3" json:"attributes,omitempty"` - StartTimeMin time.Time `protobuf:"bytes,4,opt,name=start_time_min,json=startTimeMin,proto3,stdtime" json:"start_time_min"` - StartTimeMax time.Time `protobuf:"bytes,5,opt,name=start_time_max,json=startTimeMax,proto3,stdtime" json:"start_time_max"` - DurationMin time.Duration `protobuf:"bytes,6,opt,name=duration_min,json=durationMin,proto3,stdduration" json:"duration_min"` - DurationMax time.Duration `protobuf:"bytes,7,opt,name=duration_max,json=durationMax,proto3,stdduration" json:"duration_max"` - SearchDepth int32 `protobuf:"varint,8,opt,name=search_depth,json=searchDepth,proto3" json:"search_depth,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + ServiceName string `protobuf:"bytes,1,opt,name=service_name,json=serviceName,proto3" json:"service_name,omitempty"` + OperationName string `protobuf:"bytes,2,opt,name=operation_name,json=operationName,proto3" json:"operation_name,omitempty"` + Attributes []*KeyValue `protobuf:"bytes,3,rep,name=attributes,proto3" json:"attributes,omitempty"` + StartTimeMin time.Time `protobuf:"bytes,4,opt,name=start_time_min,json=startTimeMin,proto3,stdtime" json:"start_time_min"` + StartTimeMax time.Time `protobuf:"bytes,5,opt,name=start_time_max,json=startTimeMax,proto3,stdtime" json:"start_time_max"` + DurationMin time.Duration `protobuf:"bytes,6,opt,name=duration_min,json=durationMin,proto3,stdduration" json:"duration_min"` + DurationMax time.Duration `protobuf:"bytes,7,opt,name=duration_max,json=durationMax,proto3,stdduration" json:"duration_max"` + SearchDepth int32 `protobuf:"varint,8,opt,name=search_depth,json=searchDepth,proto3" json:"search_depth,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TraceQueryParameters) Reset() { *m = TraceQueryParameters{} } func (m *TraceQueryParameters) String() string { return proto.CompactTextString(m) } func (*TraceQueryParameters) ProtoMessage() {} func (*TraceQueryParameters) Descriptor() ([]byte, []int) { - return fileDescriptor_3441c0fd9397413c, []int{7} + return fileDescriptor_3441c0fd9397413c, []int{11} } func (m *TraceQueryParameters) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_TraceQueryParameters.Unmarshal(m, b) @@ -396,7 +662,7 @@ func (m *TraceQueryParameters) GetOperationName() string { return "" } -func (m *TraceQueryParameters) GetAttributes() []*v11.KeyValue { +func (m *TraceQueryParameters) GetAttributes() []*KeyValue { if m != nil { return m.Attributes } @@ -452,7 +718,7 @@ func (m *FindTracesRequest) Reset() { *m = FindTracesRequest{} } func (m *FindTracesRequest) String() string { return proto.CompactTextString(m) } func (*FindTracesRequest) ProtoMessage() {} func (*FindTracesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_3441c0fd9397413c, []int{8} + return fileDescriptor_3441c0fd9397413c, []int{12} } func (m *FindTracesRequest) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FindTracesRequest.Unmarshal(m, b) @@ -499,7 +765,7 @@ func (m *FoundTraceID) Reset() { *m = FoundTraceID{} } func (m *FoundTraceID) String() string { return proto.CompactTextString(m) } func (*FoundTraceID) ProtoMessage() {} func (*FoundTraceID) Descriptor() ([]byte, []int) { - return fileDescriptor_3441c0fd9397413c, []int{9} + return fileDescriptor_3441c0fd9397413c, []int{13} } func (m *FoundTraceID) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FoundTraceID.Unmarshal(m, b) @@ -552,7 +818,7 @@ func (m *FindTraceIDsResponse) Reset() { *m = FindTraceIDsResponse{} } func (m *FindTraceIDsResponse) String() string { return proto.CompactTextString(m) } func (*FindTraceIDsResponse) ProtoMessage() {} func (*FindTraceIDsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_3441c0fd9397413c, []int{10} + return fileDescriptor_3441c0fd9397413c, []int{14} } func (m *FindTraceIDsResponse) XXX_Unmarshal(b []byte) error { return xxx_messageInfo_FindTraceIDsResponse.Unmarshal(m, b) @@ -587,6 +853,10 @@ func init() { proto.RegisterType((*GetOperationsRequest)(nil), "jaeger.storage.v2.GetOperationsRequest") proto.RegisterType((*Operation)(nil), "jaeger.storage.v2.Operation") proto.RegisterType((*GetOperationsResponse)(nil), "jaeger.storage.v2.GetOperationsResponse") + proto.RegisterType((*KeyValue)(nil), "jaeger.storage.v2.KeyValue") + proto.RegisterType((*AnyValue)(nil), "jaeger.storage.v2.AnyValue") + proto.RegisterType((*KeyValueList)(nil), "jaeger.storage.v2.KeyValueList") + proto.RegisterType((*ArrayValue)(nil), "jaeger.storage.v2.ArrayValue") proto.RegisterType((*TraceQueryParameters)(nil), "jaeger.storage.v2.TraceQueryParameters") proto.RegisterType((*FindTracesRequest)(nil), "jaeger.storage.v2.FindTracesRequest") proto.RegisterType((*FoundTraceID)(nil), "jaeger.storage.v2.FoundTraceID") @@ -596,57 +866,68 @@ func init() { func init() { proto.RegisterFile("trace_storage.proto", fileDescriptor_3441c0fd9397413c) } var fileDescriptor_3441c0fd9397413c = []byte{ - // 795 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x54, 0xdd, 0x6e, 0xd3, 0x4a, - 0x10, 0x8e, 0x9b, 0xa6, 0x89, 0x27, 0x69, 0x74, 0xba, 0xcd, 0x91, 0xdc, 0xe8, 0xe8, 0x24, 0xf5, - 0x39, 0xa5, 0x11, 0x48, 0x0e, 0x09, 0x12, 0x48, 0xfc, 0x08, 0xa9, 0x8a, 0x1a, 0x4a, 0xc5, 0x9f, - 0x5b, 0xb8, 0xe0, 0xa2, 0x61, 0x5b, 0x2f, 0xa9, 0xa1, 0x5e, 0xbb, 0xf6, 0x26, 0x4a, 0x79, 0x0a, - 0x2e, 0xb9, 0xe1, 0x01, 0x78, 0x13, 0x9e, 0x02, 0x5e, 0x02, 0x71, 0x8d, 0xbc, 0xbb, 0x76, 0x9c, - 0xc4, 0x4a, 0x43, 0xc5, 0x8d, 0xb5, 0x3b, 0xfe, 0x66, 0x76, 0xe6, 0xfb, 0x66, 0x06, 0xd6, 0x99, - 0x8f, 0x4f, 0x48, 0x2f, 0x60, 0xae, 0x8f, 0xfb, 0xc4, 0xf0, 0x7c, 0x97, 0xb9, 0x68, 0xed, 0x1d, - 0x26, 0x7d, 0xe2, 0x1b, 0x91, 0x75, 0xd8, 0xae, 0x56, 0xfa, 0x6e, 0xdf, 0xe5, 0x7f, 0x9b, 0xe1, - 0x49, 0x00, 0xab, 0xff, 0xf6, 0x5d, 0xb7, 0x7f, 0x46, 0x9a, 0xfc, 0x76, 0x3c, 0x78, 0xdb, 0xb4, - 0x06, 0x3e, 0x66, 0xb6, 0x4b, 0xe5, 0xff, 0xda, 0xf4, 0x7f, 0x66, 0x3b, 0x24, 0x60, 0xd8, 0xf1, - 0x24, 0xe0, 0xba, 0xeb, 0x11, 0xca, 0xc8, 0x19, 0x71, 0x08, 0xf3, 0x2f, 0x04, 0xae, 0x79, 0xe2, - 0x3a, 0x8e, 0x4b, 0x9b, 0xc3, 0x96, 0x3c, 0x49, 0x6c, 0x23, 0x0d, 0xcb, 0xd3, 0x0f, 0xa1, 0xfc, - 0x20, 0x90, 0xfa, 0x17, 0x05, 0xca, 0x5d, 0xc2, 0x0e, 0x43, 0xd3, 0x73, 0xec, 0x63, 0x27, 0x40, - 0x1b, 0x50, 0x10, 0x95, 0xda, 0x96, 0xa6, 0xd4, 0x95, 0x46, 0xc9, 0xcc, 0xf3, 0xfb, 0x9e, 0x85, - 0x1e, 0x02, 0x04, 0x0c, 0xfb, 0xac, 0x17, 0x26, 0xa7, 0x2d, 0xd5, 0x95, 0x46, 0xb1, 0x5d, 0x35, - 0x44, 0xe6, 0x46, 0x94, 0xb9, 0x71, 0x18, 0x65, 0xbe, 0xb3, 0xfc, 0xf1, 0x7b, 0x4d, 0x31, 0x55, - 0xee, 0x13, 0x5a, 0xd1, 0x3d, 0x28, 0x10, 0x6a, 0x09, 0xf7, 0xec, 0x82, 0xee, 0x79, 0x42, 0xad, - 0xd0, 0xa6, 0xef, 0xc3, 0x5f, 0x51, 0xaa, 0x81, 0x49, 0xce, 0x07, 0x24, 0x60, 0xe8, 0x0e, 0xe4, - 0xce, 0x07, 0xc4, 0xbf, 0xd0, 0x94, 0x7a, 0xb6, 0x51, 0x6c, 0x6f, 0x1a, 0x33, 0x7a, 0x18, 0x93, - 0xe5, 0x99, 0x02, 0xaf, 0x57, 0x00, 0x75, 0x09, 0x3b, 0x20, 0xfe, 0xd0, 0x1e, 0x87, 0xd3, 0x5b, - 0xb0, 0x3e, 0x61, 0x0d, 0x3c, 0x97, 0x06, 0x04, 0x55, 0xa1, 0x10, 0x48, 0x1b, 0x7f, 0x48, 0x35, - 0xe3, 0xbb, 0xfe, 0x01, 0x2a, 0x5d, 0xc2, 0x9e, 0x79, 0x44, 0xc8, 0x19, 0x67, 0xa6, 0x41, 0x5e, - 0x62, 0x38, 0x8b, 0xaa, 0x19, 0x5d, 0xd1, 0x23, 0x50, 0x03, 0x0f, 0xd3, 0xde, 0x7b, 0x9b, 0x5a, - 0x9c, 0xc4, 0x72, 0xfb, 0x86, 0x31, 0xa1, 0x98, 0x20, 0xc3, 0x10, 0x42, 0x0d, 0x5b, 0xc6, 0x81, - 0x87, 0x29, 0xff, 0xec, 0xdb, 0xd4, 0x32, 0x0b, 0x81, 0x3c, 0xe9, 0x36, 0xa8, 0xf1, 0xc3, 0x08, - 0xc1, 0x32, 0xc5, 0x4e, 0xf4, 0x1a, 0x3f, 0xff, 0xc1, 0xa7, 0x5e, 0xc2, 0xdf, 0x53, 0x65, 0x4a, - 0x6e, 0xee, 0x03, 0xb8, 0xb1, 0x55, 0xca, 0xf0, 0x4f, 0x8a, 0x0c, 0xb1, 0xab, 0x99, 0xc0, 0xeb, - 0x3f, 0xb2, 0x50, 0xe1, 0xea, 0xbc, 0x08, 0x55, 0xe1, 0x12, 0x11, 0x46, 0xfc, 0x00, 0x6d, 0x42, - 0x49, 0xf2, 0xd5, 0x4b, 0x54, 0x55, 0x94, 0xb6, 0xa7, 0x61, 0x71, 0x5b, 0x50, 0x8e, 0x23, 0x09, - 0xd0, 0x12, 0x07, 0xad, 0xc6, 0x56, 0x0e, 0xeb, 0x02, 0x60, 0xc6, 0x7c, 0xfb, 0x78, 0xc0, 0x48, - 0xa0, 0x65, 0x79, 0x82, 0xdb, 0xa9, 0x24, 0xc8, 0x19, 0x1a, 0xb6, 0x8c, 0x7d, 0x72, 0xf1, 0x0a, - 0x9f, 0x0d, 0x88, 0x99, 0x70, 0x45, 0x8f, 0xa1, 0x3c, 0xee, 0xfe, 0x9e, 0x63, 0x53, 0x6d, 0xf9, - 0xd2, 0x16, 0x2e, 0x7c, 0xfd, 0x56, 0xcb, 0xf0, 0x36, 0x2e, 0xc5, 0x53, 0xf0, 0xc4, 0xa6, 0xd3, - 0xb1, 0xf0, 0x48, 0xcb, 0x5d, 0x2d, 0x16, 0x1e, 0xa1, 0x5d, 0x28, 0x45, 0xcb, 0x84, 0x67, 0xb5, - 0xc2, 0x23, 0x6d, 0xcc, 0x44, 0xea, 0x48, 0x90, 0x08, 0xf4, 0x29, 0x0c, 0x54, 0x8c, 0x1c, 0xc3, - 0x9c, 0x26, 0xe2, 0xe0, 0x91, 0x96, 0xbf, 0x4a, 0x1c, 0x3c, 0x12, 0xd2, 0x61, 0xff, 0xe4, 0xb4, - 0x67, 0x11, 0x8f, 0x9d, 0x6a, 0x85, 0xba, 0xd2, 0xc8, 0x85, 0xd2, 0x85, 0xb6, 0x4e, 0x68, 0xd2, - 0x4d, 0x58, 0xdb, 0xb5, 0xa9, 0x35, 0x39, 0xcb, 0x0f, 0xc6, 0xb3, 0xac, 0x70, 0x8d, 0x66, 0x9b, - 0x28, 0xad, 0x55, 0xa2, 0x89, 0xfe, 0xac, 0x40, 0x69, 0xd7, 0x1d, 0xc8, 0xa8, 0x7b, 0x9d, 0x79, - 0x8b, 0xec, 0x2e, 0xe4, 0x38, 0x85, 0x0b, 0xec, 0xb0, 0x31, 0xeb, 0xc2, 0x05, 0xdd, 0x86, 0x2c, - 0xa1, 0xd6, 0x02, 0xeb, 0x6b, 0xec, 0x19, 0x3a, 0xe8, 0x87, 0x50, 0x89, 0x6b, 0xde, 0xeb, 0x24, - 0x07, 0x48, 0x8d, 0xd2, 0x8c, 0xe6, 0xa7, 0x96, 0x52, 0x7a, 0xb2, 0x34, 0xb3, 0x20, 0x0b, 0x09, - 0xda, 0x3f, 0xb3, 0x50, 0xe4, 0x56, 0x93, 0x60, 0x8b, 0xf8, 0xe8, 0x08, 0xd4, 0x78, 0x49, 0xa2, - 0xff, 0xe6, 0xac, 0xc3, 0x88, 0xf6, 0x6a, 0x63, 0xfe, 0x42, 0x10, 0xe0, 0x0e, 0x66, 0x58, 0xcf, - 0xdc, 0x54, 0xd0, 0x11, 0x14, 0x13, 0x1b, 0x12, 0x6d, 0xa5, 0xbf, 0x30, 0xb5, 0x57, 0xab, 0xd7, - 0x2e, 0x83, 0x09, 0x2e, 0xf4, 0x0c, 0xb2, 0x60, 0x75, 0x62, 0xcf, 0xa0, 0xed, 0x74, 0xd7, 0x99, - 0x85, 0x5b, 0x6d, 0x5c, 0x0e, 0x8c, 0x5f, 0x79, 0x03, 0x30, 0xee, 0x3f, 0xf4, 0x7f, 0x1a, 0xdd, - 0xd3, 0xed, 0xf9, 0x9b, 0x3c, 0xf5, 0xa0, 0x94, 0x54, 0x7b, 0xc1, 0x37, 0xb6, 0xe7, 0xa1, 0x12, - 0x4d, 0xa3, 0x67, 0x76, 0xd4, 0xd7, 0x79, 0x09, 0x3a, 0x5e, 0xe1, 0xa9, 0xdc, 0xfa, 0x15, 0x00, - 0x00, 0xff, 0xff, 0x43, 0x46, 0xda, 0x51, 0xa2, 0x08, 0x00, 0x00, + // 976 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0xdd, 0x8e, 0xdb, 0x44, + 0x14, 0x8e, 0x37, 0x9b, 0x8d, 0x7d, 0xec, 0xae, 0xda, 0x69, 0x90, 0xd2, 0x94, 0x92, 0xac, 0x4b, + 0xd9, 0x48, 0x48, 0x0e, 0x9b, 0x4a, 0x20, 0x51, 0x10, 0x74, 0x89, 0x76, 0xb3, 0x2c, 0x50, 0x70, + 0x17, 0x2e, 0xb8, 0xa8, 0x99, 0xd4, 0x43, 0x6a, 0x36, 0x19, 0xa7, 0x9e, 0x49, 0x94, 0xf0, 0x14, + 0x5c, 0x72, 0xc3, 0x03, 0xf0, 0x26, 0x7d, 0x0a, 0xb8, 0xe5, 0x09, 0xb8, 0x46, 0xf3, 0x63, 0xc7, + 0xc9, 0x5a, 0xd9, 0xac, 0xc4, 0x8d, 0xe5, 0xf9, 0xe6, 0x3b, 0xdf, 0x39, 0x73, 0xce, 0x99, 0x39, + 0x70, 0x97, 0x27, 0xf8, 0x25, 0x09, 0x18, 0x8f, 0x13, 0x3c, 0x24, 0xde, 0x24, 0x89, 0x79, 0x8c, + 0xee, 0xfc, 0x82, 0xc9, 0x90, 0x24, 0x5e, 0x8a, 0xce, 0xba, 0x8d, 0xda, 0x30, 0x1e, 0xc6, 0x72, + 0xb7, 0x23, 0xfe, 0x14, 0xb1, 0xf1, 0xce, 0x30, 0x8e, 0x87, 0x23, 0xd2, 0x91, 0xab, 0xc1, 0xf4, + 0xe7, 0x4e, 0x38, 0x4d, 0x30, 0x8f, 0x62, 0xaa, 0xf7, 0x9b, 0xeb, 0xfb, 0x3c, 0x1a, 0x13, 0xc6, + 0xf1, 0x78, 0xa2, 0x09, 0xed, 0x78, 0x42, 0x28, 0x27, 0x23, 0x32, 0x26, 0x3c, 0x59, 0x28, 0x5e, + 0x47, 0x86, 0xd4, 0x99, 0x1d, 0xa9, 0x1f, 0xc5, 0x74, 0xff, 0x34, 0x60, 0xff, 0x94, 0xf0, 0x0b, + 0x01, 0x7d, 0x8b, 0x13, 0x3c, 0x66, 0xe8, 0x1e, 0x98, 0x2a, 0xfa, 0x28, 0xac, 0x1b, 0x2d, 0xa3, + 0xed, 0xf8, 0x55, 0xb9, 0x3e, 0x0b, 0xd1, 0x67, 0x00, 0x8c, 0xe3, 0x84, 0x07, 0xc2, 0x61, 0x7d, + 0xa7, 0x65, 0xb4, 0xed, 0x6e, 0xc3, 0x53, 0xd1, 0x78, 0x69, 0x34, 0xde, 0x45, 0x1a, 0xcd, 0xf1, + 0xee, 0x6f, 0x7f, 0x37, 0x0d, 0xdf, 0x92, 0x36, 0x02, 0x45, 0x4f, 0xc0, 0x24, 0x34, 0x54, 0xe6, + 0xe5, 0x2d, 0xcd, 0xab, 0x84, 0x86, 0x02, 0x73, 0xcf, 0xe1, 0x76, 0x1a, 0x2a, 0xf3, 0xc9, 0xeb, + 0x29, 0x61, 0x1c, 0x7d, 0x04, 0x95, 0xd7, 0x53, 0x92, 0x2c, 0xea, 0x46, 0xab, 0xdc, 0xb6, 0xbb, + 0x07, 0xde, 0x95, 0x1c, 0x7b, 0xab, 0xc7, 0xf3, 0x15, 0xdf, 0xad, 0x01, 0x3a, 0x25, 0xfc, 0x39, + 0x49, 0x66, 0xd1, 0x52, 0xce, 0x3d, 0x82, 0xbb, 0x2b, 0x28, 0x9b, 0xc4, 0x94, 0x11, 0xd4, 0x00, + 0x93, 0x69, 0x4c, 0x3a, 0xb2, 0xfc, 0x6c, 0xed, 0xfe, 0x0a, 0xb5, 0x53, 0xc2, 0x9f, 0x4d, 0x88, + 0x2a, 0x51, 0x16, 0x59, 0x1d, 0xaa, 0x9a, 0x23, 0xb3, 0x68, 0xf9, 0xe9, 0x12, 0xf5, 0xc1, 0x62, + 0x13, 0x4c, 0x83, 0xcb, 0x88, 0x86, 0x32, 0x89, 0xfb, 0xdd, 0xf7, 0xbd, 0x95, 0x8a, 0xa9, 0x64, + 0x78, 0xaa, 0x50, 0xb3, 0x23, 0xef, 0xf9, 0x04, 0x53, 0xf9, 0x39, 0x8f, 0x68, 0xe8, 0x9b, 0x4c, + 0xff, 0xb9, 0x11, 0x58, 0x99, 0x63, 0x84, 0x60, 0x97, 0xe2, 0x71, 0xea, 0x4d, 0xfe, 0xff, 0x8f, + 0xae, 0xbe, 0x87, 0xb7, 0xd6, 0x8e, 0xa9, 0x73, 0xf3, 0x09, 0x40, 0x9c, 0xa1, 0xba, 0x0c, 0x6f, + 0x17, 0x94, 0x21, 0x33, 0xf5, 0x73, 0x7c, 0xf7, 0x19, 0x98, 0xe7, 0x64, 0xf1, 0x03, 0x1e, 0x4d, + 0x09, 0xba, 0x0d, 0xe5, 0x4b, 0xb2, 0xd0, 0xf1, 0x8b, 0x5f, 0x74, 0x04, 0x95, 0x99, 0xd8, 0xd2, + 0xad, 0x76, 0xbf, 0x40, 0xf6, 0x29, 0x55, 0xd6, 0xbe, 0x62, 0xba, 0x6f, 0x76, 0xc0, 0x4c, 0x31, + 0xf4, 0x10, 0x1c, 0xc6, 0x93, 0x88, 0x0e, 0x03, 0x25, 0x23, 0xa5, 0xfb, 0x25, 0xdf, 0x56, 0xa8, + 0x22, 0x35, 0x01, 0x06, 0x71, 0x3c, 0x0a, 0x96, 0x9e, 0xcc, 0x7e, 0xc9, 0xb7, 0x04, 0xa6, 0x08, + 0x0f, 0xc0, 0x8a, 0x28, 0xd7, 0xfb, 0xa2, 0x6b, 0xcb, 0xfd, 0x92, 0x6f, 0x46, 0x94, 0x67, 0x4e, + 0xc2, 0x78, 0x3a, 0x18, 0x11, 0xcd, 0xd8, 0x6d, 0x19, 0x6d, 0x43, 0x38, 0x51, 0xa8, 0x22, 0x7d, + 0x0e, 0x36, 0x4e, 0x12, 0xbc, 0xd0, 0x9c, 0x8a, 0x3c, 0xcf, 0x83, 0xa2, 0xf3, 0x08, 0x96, 0xb4, + 0xe9, 0x97, 0x7c, 0xc0, 0xd9, 0x0a, 0xf5, 0xc0, 0xb9, 0x9c, 0x8d, 0x22, 0x96, 0x06, 0xb2, 0x27, + 0x25, 0x9a, 0x05, 0x12, 0x69, 0x42, 0xbf, 0x8a, 0x18, 0x17, 0x71, 0x28, 0x33, 0xa5, 0x72, 0x00, + 0xf6, 0x60, 0xc1, 0x09, 0xd3, 0x22, 0x55, 0x71, 0xbf, 0x85, 0x23, 0x09, 0x4a, 0xca, 0x71, 0x55, + 0x27, 0xdd, 0xfd, 0x02, 0x9c, 0xbc, 0x14, 0x7a, 0x0c, 0x7b, 0x72, 0x23, 0xad, 0xf2, 0xfd, 0x0d, + 0xbe, 0x7d, 0x4d, 0x75, 0x9f, 0x02, 0x2c, 0x8f, 0xb4, 0x95, 0x44, 0x56, 0xd1, 0x54, 0xe2, 0x9f, + 0x32, 0xd4, 0xe4, 0x0d, 0xfe, 0x4e, 0xdc, 0x5c, 0x79, 0x8d, 0x09, 0x27, 0x09, 0x43, 0x07, 0xe0, + 0xe8, 0x3b, 0x15, 0xe4, 0x3a, 0xdf, 0xd6, 0xd8, 0x37, 0xe2, 0x02, 0x3c, 0x82, 0xfd, 0xac, 0xdb, + 0x14, 0x69, 0x47, 0x92, 0x6e, 0x65, 0xa8, 0xa4, 0x3d, 0x01, 0xc0, 0x9c, 0x27, 0xd1, 0x60, 0xca, + 0x09, 0xab, 0x97, 0xaf, 0x3f, 0x5e, 0x8e, 0x8e, 0xbe, 0x84, 0xfd, 0xe5, 0xab, 0x18, 0x8c, 0x23, + 0x2a, 0x5b, 0x60, 0xf3, 0xd3, 0x66, 0xbe, 0xf9, 0xab, 0x59, 0x92, 0xcf, 0x9b, 0x93, 0xbd, 0x8e, + 0x5f, 0x47, 0x74, 0x5d, 0x0b, 0xcf, 0x75, 0xab, 0xdc, 0x58, 0x0b, 0xcf, 0xd1, 0x09, 0x38, 0xe9, + 0xe0, 0x90, 0x51, 0xa9, 0x8e, 0xb9, 0x77, 0x45, 0xa9, 0xa7, 0x49, 0x4a, 0xe8, 0x77, 0x21, 0x64, + 0xa7, 0x86, 0x22, 0xa6, 0x15, 0x1d, 0x3c, 0x97, 0x4d, 0x73, 0x63, 0x1d, 0x3c, 0x57, 0xe5, 0xc2, + 0xc9, 0xcb, 0x57, 0x41, 0x48, 0x26, 0xfc, 0x55, 0xdd, 0x6c, 0x19, 0xed, 0x8a, 0x28, 0x97, 0xc0, + 0x7a, 0x02, 0x72, 0x7d, 0xb8, 0x73, 0x12, 0xd1, 0x70, 0xf5, 0x8d, 0xff, 0x74, 0xf9, 0xc6, 0x0b, + 0xc7, 0x87, 0x05, 0x75, 0x29, 0x6a, 0x8f, 0xf4, 0xa5, 0xff, 0xc3, 0x00, 0xe7, 0x24, 0x9e, 0x6a, + 0xd5, 0xb3, 0xde, 0xa6, 0x01, 0xf7, 0x31, 0x54, 0x64, 0x0a, 0xb7, 0x98, 0x6d, 0xcb, 0xac, 0x2b, + 0x13, 0xf4, 0x21, 0x94, 0x09, 0x0d, 0xb7, 0x18, 0x6b, 0x4b, 0x4b, 0x61, 0xe0, 0x5e, 0x40, 0x2d, + 0x3b, 0xf3, 0x59, 0x2f, 0xff, 0xb0, 0x5a, 0x69, 0x98, 0xe9, 0x75, 0x29, 0xba, 0xed, 0xf9, 0xa3, + 0xf9, 0xa6, 0x3e, 0x08, 0xeb, 0xfe, 0x5b, 0x06, 0x5b, 0xa2, 0x3e, 0xc1, 0x21, 0x49, 0xd0, 0x0b, + 0xb0, 0xb2, 0xe1, 0x89, 0x1e, 0x6e, 0x18, 0x93, 0x69, 0xda, 0x1b, 0xed, 0xcd, 0x83, 0x42, 0x91, + 0x7b, 0x98, 0x63, 0xb7, 0xf4, 0x81, 0x81, 0x5e, 0x80, 0x9d, 0x9b, 0x9c, 0xe8, 0x51, 0xb1, 0x87, + 0xb5, 0x79, 0xdb, 0x78, 0xef, 0x3a, 0x9a, 0xca, 0x85, 0x5b, 0x42, 0x21, 0xdc, 0x5a, 0x99, 0x3f, + 0xe8, 0xb0, 0xd8, 0xf4, 0xca, 0x20, 0x6e, 0xb4, 0xaf, 0x27, 0x66, 0x5e, 0x7e, 0x02, 0x58, 0xf6, + 0x1f, 0x7a, 0xb7, 0x28, 0xdd, 0xeb, 0xed, 0x79, 0xc3, 0x3c, 0x05, 0xe0, 0xe4, 0xab, 0xbd, 0xa5, + 0x8f, 0xc3, 0x4d, 0xac, 0x5c, 0xd3, 0xb8, 0xa5, 0x63, 0xeb, 0xc7, 0xaa, 0x26, 0x0d, 0xf6, 0x64, + 0x28, 0x8f, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x79, 0x2b, 0x3c, 0x30, 0x8e, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.