mirror of https://github.com/prometheus/prometheus
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1702 lines
43 KiB
1702 lines
43 KiB
// Code generated by protoc-gen-gogo. DO NOT EDIT. |
|
// source: remote.proto |
|
|
|
package prompb |
|
|
|
import ( |
|
fmt "fmt" |
|
io "io" |
|
math "math" |
|
math_bits "math/bits" |
|
|
|
_ "github.com/gogo/protobuf/gogoproto" |
|
proto "github.com/gogo/protobuf/proto" |
|
) |
|
|
|
// 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 |
|
|
|
type ReadRequest_ResponseType int32 |
|
|
|
const ( |
|
// Server will return a single ReadResponse message with matched series that includes list of raw samples. |
|
// It's recommended to use streamed response types instead. |
|
// |
|
// Response headers: |
|
// Content-Type: "application/x-protobuf" |
|
// Content-Encoding: "snappy" |
|
ReadRequest_SAMPLES ReadRequest_ResponseType = 0 |
|
// Server will stream a delimited ChunkedReadResponse message that |
|
// contains XOR or HISTOGRAM(!) encoded chunks for a single series. |
|
// Each message is following varint size and fixed size bigendian |
|
// uint32 for CRC32 Castagnoli checksum. |
|
// |
|
// Response headers: |
|
// Content-Type: "application/x-streamed-protobuf; proto=prometheus.ChunkedReadResponse" |
|
// Content-Encoding: "" |
|
ReadRequest_STREAMED_XOR_CHUNKS ReadRequest_ResponseType = 1 |
|
) |
|
|
|
var ReadRequest_ResponseType_name = map[int32]string{ |
|
0: "SAMPLES", |
|
1: "STREAMED_XOR_CHUNKS", |
|
} |
|
|
|
var ReadRequest_ResponseType_value = map[string]int32{ |
|
"SAMPLES": 0, |
|
"STREAMED_XOR_CHUNKS": 1, |
|
} |
|
|
|
func (x ReadRequest_ResponseType) String() string { |
|
return proto.EnumName(ReadRequest_ResponseType_name, int32(x)) |
|
} |
|
|
|
func (ReadRequest_ResponseType) EnumDescriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{1, 0} |
|
} |
|
|
|
type WriteRequest struct { |
|
Timeseries []TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries"` |
|
Metadata []MetricMetadata `protobuf:"bytes,3,rep,name=metadata,proto3" json:"metadata"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *WriteRequest) Reset() { *m = WriteRequest{} } |
|
func (m *WriteRequest) String() string { return proto.CompactTextString(m) } |
|
func (*WriteRequest) ProtoMessage() {} |
|
func (*WriteRequest) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{0} |
|
} |
|
func (m *WriteRequest) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *WriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_WriteRequest.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 *WriteRequest) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_WriteRequest.Merge(m, src) |
|
} |
|
func (m *WriteRequest) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *WriteRequest) XXX_DiscardUnknown() { |
|
xxx_messageInfo_WriteRequest.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_WriteRequest proto.InternalMessageInfo |
|
|
|
func (m *WriteRequest) GetTimeseries() []TimeSeries { |
|
if m != nil { |
|
return m.Timeseries |
|
} |
|
return nil |
|
} |
|
|
|
func (m *WriteRequest) GetMetadata() []MetricMetadata { |
|
if m != nil { |
|
return m.Metadata |
|
} |
|
return nil |
|
} |
|
|
|
// ReadRequest represents a remote read request. |
|
type ReadRequest struct { |
|
Queries []*Query `protobuf:"bytes,1,rep,name=queries,proto3" json:"queries,omitempty"` |
|
// accepted_response_types allows negotiating the content type of the response. |
|
// |
|
// Response types are taken from the list in the FIFO order. If no response type in `accepted_response_types` is |
|
// implemented by server, error is returned. |
|
// For request that do not contain `accepted_response_types` field the SAMPLES response type will be used. |
|
AcceptedResponseTypes []ReadRequest_ResponseType `protobuf:"varint,2,rep,packed,name=accepted_response_types,json=acceptedResponseTypes,proto3,enum=prometheus.ReadRequest_ResponseType" json:"accepted_response_types,omitempty"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} } |
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) } |
|
func (*ReadRequest) ProtoMessage() {} |
|
func (*ReadRequest) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{1} |
|
} |
|
func (m *ReadRequest) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_ReadRequest.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 *ReadRequest) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_ReadRequest.Merge(m, src) |
|
} |
|
func (m *ReadRequest) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *ReadRequest) XXX_DiscardUnknown() { |
|
xxx_messageInfo_ReadRequest.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_ReadRequest proto.InternalMessageInfo |
|
|
|
func (m *ReadRequest) GetQueries() []*Query { |
|
if m != nil { |
|
return m.Queries |
|
} |
|
return nil |
|
} |
|
|
|
func (m *ReadRequest) GetAcceptedResponseTypes() []ReadRequest_ResponseType { |
|
if m != nil { |
|
return m.AcceptedResponseTypes |
|
} |
|
return nil |
|
} |
|
|
|
// ReadResponse is a response when response_type equals SAMPLES. |
|
type ReadResponse struct { |
|
// In same order as the request's queries. |
|
Results []*QueryResult `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} } |
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) } |
|
func (*ReadResponse) ProtoMessage() {} |
|
func (*ReadResponse) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{2} |
|
} |
|
func (m *ReadResponse) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_ReadResponse.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 *ReadResponse) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_ReadResponse.Merge(m, src) |
|
} |
|
func (m *ReadResponse) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *ReadResponse) XXX_DiscardUnknown() { |
|
xxx_messageInfo_ReadResponse.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_ReadResponse proto.InternalMessageInfo |
|
|
|
func (m *ReadResponse) GetResults() []*QueryResult { |
|
if m != nil { |
|
return m.Results |
|
} |
|
return nil |
|
} |
|
|
|
type Query struct { |
|
StartTimestampMs int64 `protobuf:"varint,1,opt,name=start_timestamp_ms,json=startTimestampMs,proto3" json:"start_timestamp_ms,omitempty"` |
|
EndTimestampMs int64 `protobuf:"varint,2,opt,name=end_timestamp_ms,json=endTimestampMs,proto3" json:"end_timestamp_ms,omitempty"` |
|
Matchers []*LabelMatcher `protobuf:"bytes,3,rep,name=matchers,proto3" json:"matchers,omitempty"` |
|
Hints *ReadHints `protobuf:"bytes,4,opt,name=hints,proto3" json:"hints,omitempty"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *Query) Reset() { *m = Query{} } |
|
func (m *Query) String() string { return proto.CompactTextString(m) } |
|
func (*Query) ProtoMessage() {} |
|
func (*Query) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{3} |
|
} |
|
func (m *Query) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *Query) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_Query.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 *Query) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_Query.Merge(m, src) |
|
} |
|
func (m *Query) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *Query) XXX_DiscardUnknown() { |
|
xxx_messageInfo_Query.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_Query proto.InternalMessageInfo |
|
|
|
func (m *Query) GetStartTimestampMs() int64 { |
|
if m != nil { |
|
return m.StartTimestampMs |
|
} |
|
return 0 |
|
} |
|
|
|
func (m *Query) GetEndTimestampMs() int64 { |
|
if m != nil { |
|
return m.EndTimestampMs |
|
} |
|
return 0 |
|
} |
|
|
|
func (m *Query) GetMatchers() []*LabelMatcher { |
|
if m != nil { |
|
return m.Matchers |
|
} |
|
return nil |
|
} |
|
|
|
func (m *Query) GetHints() *ReadHints { |
|
if m != nil { |
|
return m.Hints |
|
} |
|
return nil |
|
} |
|
|
|
type QueryResult struct { |
|
// Samples within a time series must be ordered by time. |
|
Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries,proto3" json:"timeseries,omitempty"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *QueryResult) Reset() { *m = QueryResult{} } |
|
func (m *QueryResult) String() string { return proto.CompactTextString(m) } |
|
func (*QueryResult) ProtoMessage() {} |
|
func (*QueryResult) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{4} |
|
} |
|
func (m *QueryResult) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_QueryResult.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 *QueryResult) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_QueryResult.Merge(m, src) |
|
} |
|
func (m *QueryResult) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *QueryResult) XXX_DiscardUnknown() { |
|
xxx_messageInfo_QueryResult.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_QueryResult proto.InternalMessageInfo |
|
|
|
func (m *QueryResult) GetTimeseries() []*TimeSeries { |
|
if m != nil { |
|
return m.Timeseries |
|
} |
|
return nil |
|
} |
|
|
|
// ChunkedReadResponse is a response when response_type equals STREAMED_XOR_CHUNKS. |
|
// We strictly stream full series after series, optionally split by time. This means that a single frame can contain |
|
// partition of the single series, but once a new series is started to be streamed it means that no more chunks will |
|
// be sent for previous one. Series are returned sorted in the same way TSDB block are internally. |
|
type ChunkedReadResponse struct { |
|
ChunkedSeries []*ChunkedSeries `protobuf:"bytes,1,rep,name=chunked_series,json=chunkedSeries,proto3" json:"chunked_series,omitempty"` |
|
// query_index represents an index of the query from ReadRequest.queries these chunks relates to. |
|
QueryIndex int64 `protobuf:"varint,2,opt,name=query_index,json=queryIndex,proto3" json:"query_index,omitempty"` |
|
XXX_NoUnkeyedLiteral struct{} `json:"-"` |
|
XXX_unrecognized []byte `json:"-"` |
|
XXX_sizecache int32 `json:"-"` |
|
} |
|
|
|
func (m *ChunkedReadResponse) Reset() { *m = ChunkedReadResponse{} } |
|
func (m *ChunkedReadResponse) String() string { return proto.CompactTextString(m) } |
|
func (*ChunkedReadResponse) ProtoMessage() {} |
|
func (*ChunkedReadResponse) Descriptor() ([]byte, []int) { |
|
return fileDescriptor_eefc82927d57d89b, []int{5} |
|
} |
|
func (m *ChunkedReadResponse) XXX_Unmarshal(b []byte) error { |
|
return m.Unmarshal(b) |
|
} |
|
func (m *ChunkedReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
|
if deterministic { |
|
return xxx_messageInfo_ChunkedReadResponse.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 *ChunkedReadResponse) XXX_Merge(src proto.Message) { |
|
xxx_messageInfo_ChunkedReadResponse.Merge(m, src) |
|
} |
|
func (m *ChunkedReadResponse) XXX_Size() int { |
|
return m.Size() |
|
} |
|
func (m *ChunkedReadResponse) XXX_DiscardUnknown() { |
|
xxx_messageInfo_ChunkedReadResponse.DiscardUnknown(m) |
|
} |
|
|
|
var xxx_messageInfo_ChunkedReadResponse proto.InternalMessageInfo |
|
|
|
func (m *ChunkedReadResponse) GetChunkedSeries() []*ChunkedSeries { |
|
if m != nil { |
|
return m.ChunkedSeries |
|
} |
|
return nil |
|
} |
|
|
|
func (m *ChunkedReadResponse) GetQueryIndex() int64 { |
|
if m != nil { |
|
return m.QueryIndex |
|
} |
|
return 0 |
|
} |
|
|
|
func init() { |
|
proto.RegisterEnum("prometheus.ReadRequest_ResponseType", ReadRequest_ResponseType_name, ReadRequest_ResponseType_value) |
|
proto.RegisterType((*WriteRequest)(nil), "prometheus.WriteRequest") |
|
proto.RegisterType((*ReadRequest)(nil), "prometheus.ReadRequest") |
|
proto.RegisterType((*ReadResponse)(nil), "prometheus.ReadResponse") |
|
proto.RegisterType((*Query)(nil), "prometheus.Query") |
|
proto.RegisterType((*QueryResult)(nil), "prometheus.QueryResult") |
|
proto.RegisterType((*ChunkedReadResponse)(nil), "prometheus.ChunkedReadResponse") |
|
} |
|
|
|
func init() { proto.RegisterFile("remote.proto", fileDescriptor_eefc82927d57d89b) } |
|
|
|
var fileDescriptor_eefc82927d57d89b = []byte{ |
|
// 496 bytes of a gzipped FileDescriptorProto |
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x53, 0xcd, 0x6e, 0xd3, 0x40, |
|
0x10, 0xee, 0x26, 0x69, 0x13, 0x8d, 0x43, 0x14, 0xb6, 0x2d, 0x09, 0x39, 0xa4, 0x91, 0xc5, 0x21, |
|
0x52, 0x51, 0x10, 0xa1, 0xe2, 0xd4, 0x03, 0x69, 0x89, 0x54, 0xa0, 0xe6, 0x67, 0x13, 0x04, 0x42, |
|
0x48, 0xd6, 0xc6, 0x1e, 0x35, 0x16, 0xf5, 0x4f, 0x77, 0xd7, 0x52, 0xf3, 0x16, 0x3c, 0x13, 0xa7, |
|
0x9e, 0x10, 0x4f, 0x80, 0x50, 0x9e, 0x04, 0x79, 0x6d, 0x87, 0x2d, 0x5c, 0xb8, 0xad, 0xbf, 0x3f, |
|
0xcf, 0xcc, 0xce, 0x42, 0x53, 0x60, 0x18, 0x2b, 0x1c, 0x25, 0x22, 0x56, 0x31, 0x85, 0x44, 0xc4, |
|
0x21, 0xaa, 0x25, 0xa6, 0xb2, 0x67, 0xa9, 0x55, 0x82, 0x32, 0x27, 0x7a, 0x7b, 0x17, 0xf1, 0x45, |
|
0xac, 0x8f, 0x8f, 0xb2, 0x53, 0x8e, 0xda, 0x5f, 0x09, 0x34, 0x3f, 0x88, 0x40, 0x21, 0xc3, 0xab, |
|
0x14, 0xa5, 0xa2, 0xc7, 0x00, 0x2a, 0x08, 0x51, 0xa2, 0x08, 0x50, 0x76, 0xc9, 0xa0, 0x3a, 0xb4, |
|
0xc6, 0xf7, 0x46, 0x7f, 0x42, 0x47, 0xf3, 0x20, 0xc4, 0x99, 0x66, 0x4f, 0x6a, 0x37, 0x3f, 0x0f, |
|
0xb6, 0x98, 0xa1, 0xa7, 0xc7, 0xd0, 0x08, 0x51, 0x71, 0x9f, 0x2b, 0xde, 0xad, 0x6a, 0x6f, 0xcf, |
|
0xf4, 0x3a, 0xa8, 0x44, 0xe0, 0x39, 0x85, 0xa2, 0xf0, 0x6f, 0x1c, 0x2f, 0x6b, 0x8d, 0x4a, 0xbb, |
|
0x6a, 0x7f, 0x27, 0x60, 0x31, 0xe4, 0x7e, 0x59, 0xd1, 0x21, 0xd4, 0xaf, 0x52, 0xb3, 0x9c, 0xbb, |
|
0x66, 0xe4, 0xbb, 0x14, 0xc5, 0x8a, 0x95, 0x0a, 0xfa, 0x19, 0x3a, 0xdc, 0xf3, 0x30, 0x51, 0xe8, |
|
0xbb, 0x02, 0x65, 0x12, 0x47, 0x12, 0x5d, 0x3d, 0x86, 0x6e, 0x65, 0x50, 0x1d, 0xb6, 0xc6, 0x0f, |
|
0x4c, 0xb3, 0xf1, 0x9b, 0x11, 0x2b, 0xd4, 0xf3, 0x55, 0x82, 0x6c, 0xbf, 0x0c, 0x31, 0x51, 0x69, |
|
0x1f, 0x41, 0xd3, 0x04, 0xa8, 0x05, 0xf5, 0xd9, 0xc4, 0x79, 0x7b, 0x3e, 0x9d, 0xb5, 0xb7, 0x68, |
|
0x07, 0x76, 0x67, 0x73, 0x36, 0x9d, 0x38, 0xd3, 0xe7, 0xee, 0xc7, 0x37, 0xcc, 0x3d, 0x3d, 0x7b, |
|
0xff, 0xfa, 0xd5, 0xac, 0x4d, 0xec, 0x49, 0xe6, 0xe2, 0x9b, 0x28, 0xfa, 0x18, 0xea, 0x02, 0x65, |
|
0x7a, 0xa9, 0xca, 0x86, 0x3a, 0xff, 0x36, 0xa4, 0x79, 0x56, 0xea, 0xec, 0x6f, 0x04, 0xb6, 0x35, |
|
0x41, 0x1f, 0x02, 0x95, 0x8a, 0x0b, 0xe5, 0xea, 0xa9, 0x2b, 0x1e, 0x26, 0x6e, 0x98, 0xe5, 0x90, |
|
0x61, 0x95, 0xb5, 0x35, 0x33, 0x2f, 0x09, 0x47, 0xd2, 0x21, 0xb4, 0x31, 0xf2, 0x6f, 0x6b, 0x2b, |
|
0x5a, 0xdb, 0xc2, 0xc8, 0x37, 0x95, 0x47, 0xd0, 0x08, 0xb9, 0xf2, 0x96, 0x28, 0x64, 0x71, 0x73, |
|
0x5d, 0xb3, 0xaa, 0x73, 0xbe, 0xc0, 0x4b, 0x27, 0x17, 0xb0, 0x8d, 0x92, 0x1e, 0xc2, 0xf6, 0x32, |
|
0x88, 0x94, 0xec, 0xd6, 0x06, 0x64, 0x68, 0x8d, 0xf7, 0xff, 0x1e, 0xee, 0x59, 0x46, 0xb2, 0x5c, |
|
0x63, 0x4f, 0xc1, 0x32, 0x9a, 0xa3, 0x4f, 0xff, 0x7f, 0xd3, 0xcc, 0x1d, 0xb3, 0xaf, 0x61, 0xf7, |
|
0x74, 0x99, 0x46, 0x5f, 0xb2, 0xcb, 0x31, 0xa6, 0xfa, 0x0c, 0x5a, 0x5e, 0x0e, 0xbb, 0xb7, 0x22, |
|
0xef, 0x9b, 0x91, 0x85, 0xb1, 0x48, 0xbd, 0xe3, 0x99, 0x9f, 0xf4, 0x00, 0xac, 0x6c, 0x8d, 0x56, |
|
0x6e, 0x10, 0xf9, 0x78, 0x5d, 0xcc, 0x09, 0x34, 0xf4, 0x22, 0x43, 0x4e, 0xf6, 0x6e, 0xd6, 0x7d, |
|
0xf2, 0x63, 0xdd, 0x27, 0xbf, 0xd6, 0x7d, 0xf2, 0x69, 0x27, 0xcb, 0x4d, 0x16, 0x8b, 0x1d, 0xfd, |
|
0x92, 0x9e, 0xfc, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x13, 0x18, 0x12, 0x0a, 0x88, 0x03, 0x00, 0x00, |
|
} |
|
|
|
func (m *WriteRequest) 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 *WriteRequest) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *WriteRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if len(m.Metadata) > 0 { |
|
for iNdEx := len(m.Metadata) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Metadata[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0x1a |
|
} |
|
} |
|
if len(m.Timeseries) > 0 { |
|
for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0xa |
|
} |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func (m *ReadRequest) 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 *ReadRequest) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *ReadRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if len(m.AcceptedResponseTypes) > 0 { |
|
dAtA2 := make([]byte, len(m.AcceptedResponseTypes)*10) |
|
var j1 int |
|
for _, num := range m.AcceptedResponseTypes { |
|
for num >= 1<<7 { |
|
dAtA2[j1] = uint8(uint64(num)&0x7f | 0x80) |
|
num >>= 7 |
|
j1++ |
|
} |
|
dAtA2[j1] = uint8(num) |
|
j1++ |
|
} |
|
i -= j1 |
|
copy(dAtA[i:], dAtA2[:j1]) |
|
i = encodeVarintRemote(dAtA, i, uint64(j1)) |
|
i-- |
|
dAtA[i] = 0x12 |
|
} |
|
if len(m.Queries) > 0 { |
|
for iNdEx := len(m.Queries) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Queries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0xa |
|
} |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func (m *ReadResponse) 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 *ReadResponse) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *ReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if len(m.Results) > 0 { |
|
for iNdEx := len(m.Results) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Results[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0xa |
|
} |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func (m *Query) 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 *Query) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *Query) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if m.Hints != nil { |
|
{ |
|
size, err := m.Hints.MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0x22 |
|
} |
|
if len(m.Matchers) > 0 { |
|
for iNdEx := len(m.Matchers) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Matchers[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0x1a |
|
} |
|
} |
|
if m.EndTimestampMs != 0 { |
|
i = encodeVarintRemote(dAtA, i, uint64(m.EndTimestampMs)) |
|
i-- |
|
dAtA[i] = 0x10 |
|
} |
|
if m.StartTimestampMs != 0 { |
|
i = encodeVarintRemote(dAtA, i, uint64(m.StartTimestampMs)) |
|
i-- |
|
dAtA[i] = 0x8 |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func (m *QueryResult) 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 *QueryResult) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *QueryResult) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if len(m.Timeseries) > 0 { |
|
for iNdEx := len(m.Timeseries) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.Timeseries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0xa |
|
} |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func (m *ChunkedReadResponse) 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 *ChunkedReadResponse) MarshalTo(dAtA []byte) (int, error) { |
|
size := m.Size() |
|
return m.MarshalToSizedBuffer(dAtA[:size]) |
|
} |
|
|
|
func (m *ChunkedReadResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { |
|
i := len(dAtA) |
|
_ = i |
|
var l int |
|
_ = l |
|
if m.XXX_unrecognized != nil { |
|
i -= len(m.XXX_unrecognized) |
|
copy(dAtA[i:], m.XXX_unrecognized) |
|
} |
|
if m.QueryIndex != 0 { |
|
i = encodeVarintRemote(dAtA, i, uint64(m.QueryIndex)) |
|
i-- |
|
dAtA[i] = 0x10 |
|
} |
|
if len(m.ChunkedSeries) > 0 { |
|
for iNdEx := len(m.ChunkedSeries) - 1; iNdEx >= 0; iNdEx-- { |
|
{ |
|
size, err := m.ChunkedSeries[iNdEx].MarshalToSizedBuffer(dAtA[:i]) |
|
if err != nil { |
|
return 0, err |
|
} |
|
i -= size |
|
i = encodeVarintRemote(dAtA, i, uint64(size)) |
|
} |
|
i-- |
|
dAtA[i] = 0xa |
|
} |
|
} |
|
return len(dAtA) - i, nil |
|
} |
|
|
|
func encodeVarintRemote(dAtA []byte, offset int, v uint64) int { |
|
offset -= sovRemote(v) |
|
base := offset |
|
for v >= 1<<7 { |
|
dAtA[offset] = uint8(v&0x7f | 0x80) |
|
v >>= 7 |
|
offset++ |
|
} |
|
dAtA[offset] = uint8(v) |
|
return base |
|
} |
|
func (m *WriteRequest) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if len(m.Timeseries) > 0 { |
|
for _, e := range m.Timeseries { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if len(m.Metadata) > 0 { |
|
for _, e := range m.Metadata { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func (m *ReadRequest) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if len(m.Queries) > 0 { |
|
for _, e := range m.Queries { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if len(m.AcceptedResponseTypes) > 0 { |
|
l = 0 |
|
for _, e := range m.AcceptedResponseTypes { |
|
l += sovRemote(uint64(e)) |
|
} |
|
n += 1 + sovRemote(uint64(l)) + l |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func (m *ReadResponse) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if len(m.Results) > 0 { |
|
for _, e := range m.Results { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func (m *Query) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if m.StartTimestampMs != 0 { |
|
n += 1 + sovRemote(uint64(m.StartTimestampMs)) |
|
} |
|
if m.EndTimestampMs != 0 { |
|
n += 1 + sovRemote(uint64(m.EndTimestampMs)) |
|
} |
|
if len(m.Matchers) > 0 { |
|
for _, e := range m.Matchers { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if m.Hints != nil { |
|
l = m.Hints.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func (m *QueryResult) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if len(m.Timeseries) > 0 { |
|
for _, e := range m.Timeseries { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func (m *ChunkedReadResponse) Size() (n int) { |
|
if m == nil { |
|
return 0 |
|
} |
|
var l int |
|
_ = l |
|
if len(m.ChunkedSeries) > 0 { |
|
for _, e := range m.ChunkedSeries { |
|
l = e.Size() |
|
n += 1 + l + sovRemote(uint64(l)) |
|
} |
|
} |
|
if m.QueryIndex != 0 { |
|
n += 1 + sovRemote(uint64(m.QueryIndex)) |
|
} |
|
if m.XXX_unrecognized != nil { |
|
n += len(m.XXX_unrecognized) |
|
} |
|
return n |
|
} |
|
|
|
func sovRemote(x uint64) (n int) { |
|
return (math_bits.Len64(x|1) + 6) / 7 |
|
} |
|
func sozRemote(x uint64) (n int) { |
|
return sovRemote(uint64((x << 1) ^ uint64((int64(x) >> 63)))) |
|
} |
|
func (m *WriteRequest) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: WriteRequest: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: WriteRequest: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Timeseries = append(m.Timeseries, TimeSeries{}) |
|
if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
case 3: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Metadata", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Metadata = append(m.Metadata, MetricMetadata{}) |
|
if err := m.Metadata[len(m.Metadata)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func (m *ReadRequest) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: ReadRequest: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: ReadRequest: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Queries", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Queries = append(m.Queries, &Query{}) |
|
if err := m.Queries[len(m.Queries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
case 2: |
|
if wireType == 0 { |
|
var v ReadRequest_ResponseType |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
v |= ReadRequest_ResponseType(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) |
|
} else if wireType == 2 { |
|
var packedLen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
packedLen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if packedLen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + packedLen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
var elementCount int |
|
if elementCount != 0 && len(m.AcceptedResponseTypes) == 0 { |
|
m.AcceptedResponseTypes = make([]ReadRequest_ResponseType, 0, elementCount) |
|
} |
|
for iNdEx < postIndex { |
|
var v ReadRequest_ResponseType |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
v |= ReadRequest_ResponseType(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
m.AcceptedResponseTypes = append(m.AcceptedResponseTypes, v) |
|
} |
|
} else { |
|
return fmt.Errorf("proto: wrong wireType = %d for field AcceptedResponseTypes", wireType) |
|
} |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func (m *ReadResponse) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: ReadResponse: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: ReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Results", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Results = append(m.Results, &QueryResult{}) |
|
if err := m.Results[len(m.Results)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func (m *Query) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: Query: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: Query: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 0 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field StartTimestampMs", wireType) |
|
} |
|
m.StartTimestampMs = 0 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
m.StartTimestampMs |= int64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
case 2: |
|
if wireType != 0 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field EndTimestampMs", wireType) |
|
} |
|
m.EndTimestampMs = 0 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
m.EndTimestampMs |= int64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
case 3: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Matchers", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Matchers = append(m.Matchers, &LabelMatcher{}) |
|
if err := m.Matchers[len(m.Matchers)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
case 4: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Hints", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
if m.Hints == nil { |
|
m.Hints = &ReadHints{} |
|
} |
|
if err := m.Hints.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func (m *QueryResult) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: QueryResult: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: QueryResult: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field Timeseries", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.Timeseries = append(m.Timeseries, &TimeSeries{}) |
|
if err := m.Timeseries[len(m.Timeseries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func (m *ChunkedReadResponse) Unmarshal(dAtA []byte) error { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
for iNdEx < l { |
|
preIndex := iNdEx |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= uint64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
fieldNum := int32(wire >> 3) |
|
wireType := int(wire & 0x7) |
|
if wireType == 4 { |
|
return fmt.Errorf("proto: ChunkedReadResponse: wiretype end group for non-group") |
|
} |
|
if fieldNum <= 0 { |
|
return fmt.Errorf("proto: ChunkedReadResponse: illegal tag %d (wire type %d)", fieldNum, wire) |
|
} |
|
switch fieldNum { |
|
case 1: |
|
if wireType != 2 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field ChunkedSeries", wireType) |
|
} |
|
var msglen int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
msglen |= int(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if msglen < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
postIndex := iNdEx + msglen |
|
if postIndex < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if postIndex > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.ChunkedSeries = append(m.ChunkedSeries, &ChunkedSeries{}) |
|
if err := m.ChunkedSeries[len(m.ChunkedSeries)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil { |
|
return err |
|
} |
|
iNdEx = postIndex |
|
case 2: |
|
if wireType != 0 { |
|
return fmt.Errorf("proto: wrong wireType = %d for field QueryIndex", wireType) |
|
} |
|
m.QueryIndex = 0 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
m.QueryIndex |= int64(b&0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
default: |
|
iNdEx = preIndex |
|
skippy, err := skipRemote(dAtA[iNdEx:]) |
|
if err != nil { |
|
return err |
|
} |
|
if (skippy < 0) || (iNdEx+skippy) < 0 { |
|
return ErrInvalidLengthRemote |
|
} |
|
if (iNdEx + skippy) > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) |
|
iNdEx += skippy |
|
} |
|
} |
|
|
|
if iNdEx > l { |
|
return io.ErrUnexpectedEOF |
|
} |
|
return nil |
|
} |
|
func skipRemote(dAtA []byte) (n int, err error) { |
|
l := len(dAtA) |
|
iNdEx := 0 |
|
depth := 0 |
|
for iNdEx < l { |
|
var wire uint64 |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return 0, ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return 0, io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
wire |= (uint64(b) & 0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
wireType := int(wire & 0x7) |
|
switch wireType { |
|
case 0: |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return 0, ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return 0, io.ErrUnexpectedEOF |
|
} |
|
iNdEx++ |
|
if dAtA[iNdEx-1] < 0x80 { |
|
break |
|
} |
|
} |
|
case 1: |
|
iNdEx += 8 |
|
case 2: |
|
var length int |
|
for shift := uint(0); ; shift += 7 { |
|
if shift >= 64 { |
|
return 0, ErrIntOverflowRemote |
|
} |
|
if iNdEx >= l { |
|
return 0, io.ErrUnexpectedEOF |
|
} |
|
b := dAtA[iNdEx] |
|
iNdEx++ |
|
length |= (int(b) & 0x7F) << shift |
|
if b < 0x80 { |
|
break |
|
} |
|
} |
|
if length < 0 { |
|
return 0, ErrInvalidLengthRemote |
|
} |
|
iNdEx += length |
|
case 3: |
|
depth++ |
|
case 4: |
|
if depth == 0 { |
|
return 0, ErrUnexpectedEndOfGroupRemote |
|
} |
|
depth-- |
|
case 5: |
|
iNdEx += 4 |
|
default: |
|
return 0, fmt.Errorf("proto: illegal wireType %d", wireType) |
|
} |
|
if iNdEx < 0 { |
|
return 0, ErrInvalidLengthRemote |
|
} |
|
if depth == 0 { |
|
return iNdEx, nil |
|
} |
|
} |
|
return 0, io.ErrUnexpectedEOF |
|
} |
|
|
|
var ( |
|
ErrInvalidLengthRemote = fmt.Errorf("proto: negative length found during unmarshaling") |
|
ErrIntOverflowRemote = fmt.Errorf("proto: integer overflow") |
|
ErrUnexpectedEndOfGroupRemote = fmt.Errorf("proto: unexpected end of group") |
|
)
|
|
|