add expected data type to series frame
parent
728f5cc6ac
commit
cf2227def1
|
@ -240,7 +240,7 @@ func (cmd *Command) query(c storage.StorageClient) error {
|
|||
|
||||
func (cmd *Command) processFramesSilent(frames []storage.ReadResponse_Frame) {
|
||||
for _, frame := range frames {
|
||||
switch f := frame.GetData().(type) {
|
||||
switch f := frame.Data.(type) {
|
||||
case *storage.ReadResponse_Frame_IntegerPoints:
|
||||
for _, v := range f.IntegerPoints.Values {
|
||||
cmd.integerSum += v
|
||||
|
@ -273,7 +273,7 @@ func (cmd *Command) processFrames(wr *bufio.Writer, frames []storage.ReadRespons
|
|||
var line []byte
|
||||
|
||||
for _, frame := range frames {
|
||||
switch f := frame.GetData().(type) {
|
||||
switch f := frame.Data.(type) {
|
||||
case *storage.ReadResponse_Frame_Series:
|
||||
s := f.Series
|
||||
wr.WriteString("\033[36m")
|
||||
|
|
|
@ -99,6 +99,8 @@ func (r *rpcService) Read(req *ReadRequest, stream Storage_ReadServer) error {
|
|||
|
||||
switch cur := cur.(type) {
|
||||
case tsdb.IntegerBatchCursor:
|
||||
sf.DataType = DataTypeInteger
|
||||
|
||||
frame := &ReadResponse_IntegerPointsFrame{Timestamps: make([]int64, 0, batchSize), Values: make([]int64, 0, batchSize)}
|
||||
res.Frames = append(res.Frames, ReadResponse_Frame{&ReadResponse_Frame_IntegerPoints{frame}})
|
||||
|
||||
|
@ -121,6 +123,8 @@ func (r *rpcService) Read(req *ReadRequest, stream Storage_ReadServer) error {
|
|||
}
|
||||
|
||||
case tsdb.FloatBatchCursor:
|
||||
sf.DataType = DataTypeFloat
|
||||
|
||||
frame := &ReadResponse_FloatPointsFrame{Timestamps: make([]int64, 0, batchSize), Values: make([]float64, 0, batchSize)}
|
||||
res.Frames = append(res.Frames, ReadResponse_Frame{&ReadResponse_Frame_FloatPoints{frame}})
|
||||
|
||||
|
@ -143,6 +147,8 @@ func (r *rpcService) Read(req *ReadRequest, stream Storage_ReadServer) error {
|
|||
}
|
||||
|
||||
case tsdb.UnsignedBatchCursor:
|
||||
sf.DataType = DataTypeUnsigned
|
||||
|
||||
frame := &ReadResponse_UnsignedPointsFrame{Timestamps: make([]int64, 0, batchSize), Values: make([]uint64, 0, batchSize)}
|
||||
res.Frames = append(res.Frames, ReadResponse_Frame{&ReadResponse_Frame_UnsignedPoints{frame}})
|
||||
|
||||
|
@ -165,6 +171,8 @@ func (r *rpcService) Read(req *ReadRequest, stream Storage_ReadServer) error {
|
|||
}
|
||||
|
||||
case tsdb.BooleanBatchCursor:
|
||||
sf.DataType = DataTypeBoolean
|
||||
|
||||
frame := &ReadResponse_BooleanPointsFrame{Timestamps: make([]int64, 0, batchSize), Values: make([]bool, 0, batchSize)}
|
||||
res.Frames = append(res.Frames, ReadResponse_Frame{&ReadResponse_Frame_BooleanPoints{frame}})
|
||||
|
||||
|
@ -187,6 +195,8 @@ func (r *rpcService) Read(req *ReadRequest, stream Storage_ReadServer) error {
|
|||
}
|
||||
|
||||
case tsdb.StringBatchCursor:
|
||||
sf.DataType = DataTypeString
|
||||
|
||||
frame := &ReadResponse_StringPointsFrame{Timestamps: make([]int64, 0, batchSize), Values: make([]string, 0, batchSize)}
|
||||
res.Frames = append(res.Frames, ReadResponse_Frame{&ReadResponse_Frame_StringPoints{frame}})
|
||||
|
||||
|
|
|
@ -90,6 +90,38 @@ func (ReadResponse_FrameType) EnumDescriptor() ([]byte, []int) {
|
|||
return fileDescriptorStorage, []int{3, 0}
|
||||
}
|
||||
|
||||
type ReadResponse_DataType int32
|
||||
|
||||
const (
|
||||
DataTypeFloat ReadResponse_DataType = 0
|
||||
DataTypeInteger ReadResponse_DataType = 1
|
||||
DataTypeUnsigned ReadResponse_DataType = 2
|
||||
DataTypeBoolean ReadResponse_DataType = 3
|
||||
DataTypeString ReadResponse_DataType = 4
|
||||
)
|
||||
|
||||
var ReadResponse_DataType_name = map[int32]string{
|
||||
0: "FLOAT",
|
||||
1: "INTEGER",
|
||||
2: "UNSIGNED",
|
||||
3: "BOOLEAN",
|
||||
4: "STRING",
|
||||
}
|
||||
var ReadResponse_DataType_value = map[string]int32{
|
||||
"FLOAT": 0,
|
||||
"INTEGER": 1,
|
||||
"UNSIGNED": 2,
|
||||
"BOOLEAN": 3,
|
||||
"STRING": 4,
|
||||
}
|
||||
|
||||
func (x ReadResponse_DataType) String() string {
|
||||
return proto.EnumName(ReadResponse_DataType_name, int32(x))
|
||||
}
|
||||
func (ReadResponse_DataType) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptorStorage, []int{3, 1}
|
||||
}
|
||||
|
||||
// Request message for Storage.Read.
|
||||
type ReadRequest struct {
|
||||
// Database specifies the name of the database to issue the read request.
|
||||
|
@ -395,6 +427,7 @@ func _ReadResponse_Frame_OneofSizer(msg proto.Message) (n int) {
|
|||
|
||||
type ReadResponse_SeriesFrame struct {
|
||||
Tags []Tag `protobuf:"bytes,1,rep,name=tags" json:"tags"`
|
||||
DataType ReadResponse_DataType `protobuf:"varint,2,opt,name=data_type,json=dataType,proto3,enum=storage.ReadResponse_DataType" json:"data_type,omitempty"`
|
||||
}
|
||||
|
||||
func (m *ReadResponse_SeriesFrame) Reset() { *m = ReadResponse_SeriesFrame{} }
|
||||
|
@ -511,6 +544,7 @@ func init() {
|
|||
proto.RegisterType((*TimestampRange)(nil), "storage.TimestampRange")
|
||||
proto.RegisterEnum("storage.Aggregate_AggregateType", Aggregate_AggregateType_name, Aggregate_AggregateType_value)
|
||||
proto.RegisterEnum("storage.ReadResponse_FrameType", ReadResponse_FrameType_name, ReadResponse_FrameType_value)
|
||||
proto.RegisterEnum("storage.ReadResponse_DataType", ReadResponse_DataType_name, ReadResponse_DataType_value)
|
||||
}
|
||||
func (m *ReadRequest) Marshal() (dAtA []byte, err error) {
|
||||
size := m.Size()
|
||||
|
@ -823,6 +857,11 @@ func (m *ReadResponse_SeriesFrame) MarshalTo(dAtA []byte) (int, error) {
|
|||
i += n
|
||||
}
|
||||
}
|
||||
if m.DataType != 0 {
|
||||
dAtA[i] = 0x10
|
||||
i++
|
||||
i = encodeVarintStorage(dAtA, i, uint64(m.DataType))
|
||||
}
|
||||
return i, nil
|
||||
}
|
||||
|
||||
|
@ -1371,6 +1410,9 @@ func (m *ReadResponse_SeriesFrame) Size() (n int) {
|
|||
n += 1 + l + sovStorage(uint64(l))
|
||||
}
|
||||
}
|
||||
if m.DataType != 0 {
|
||||
n += 1 + sovStorage(uint64(m.DataType))
|
||||
}
|
||||
return n
|
||||
}
|
||||
|
||||
|
@ -2335,6 +2377,25 @@ func (m *ReadResponse_SeriesFrame) Unmarshal(dAtA []byte) error {
|
|||
return err
|
||||
}
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 0 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field DataType", wireType)
|
||||
}
|
||||
m.DataType = 0
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return ErrIntOverflowStorage
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
m.DataType |= (ReadResponse_DataType(b) & 0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
default:
|
||||
iNdEx = preIndex
|
||||
skippy, err := skipStorage(dAtA[iNdEx:])
|
||||
|
@ -3585,71 +3646,78 @@ var (
|
|||
func init() { proto.RegisterFile("storage.proto", fileDescriptorStorage) }
|
||||
|
||||
var fileDescriptorStorage = []byte{
|
||||
// 1050 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xcd, 0x6e, 0xdb, 0x46,
|
||||
0x10, 0x26, 0x4d, 0x4a, 0xb6, 0x46, 0x92, 0x25, 0x6f, 0x1c, 0x57, 0x60, 0x10, 0x89, 0xd1, 0x21,
|
||||
0x55, 0x0f, 0x91, 0x03, 0xb5, 0x41, 0xd3, 0x06, 0x3d, 0x54, 0x86, 0x0b, 0xb9, 0x49, 0x6c, 0x63,
|
||||
0x65, 0x03, 0x3d, 0x14, 0x70, 0x57, 0xd6, 0x8a, 0x21, 0x2a, 0x91, 0x2c, 0xb9, 0x2c, 0xa2, 0x5b,
|
||||
0x8f, 0x85, 0xd1, 0x43, 0x5f, 0xc0, 0xbd, 0xf4, 0x19, 0x7a, 0xea, 0x2d, 0x27, 0x1f, 0x7b, 0xec,
|
||||
0xc9, 0x68, 0xd5, 0x17, 0x29, 0x76, 0x97, 0xbf, 0x96, 0x1c, 0xc0, 0x17, 0x61, 0xe7, 0x9b, 0x99,
|
||||
0x6f, 0x66, 0x38, 0xb3, 0xa3, 0x85, 0x6a, 0xc0, 0x5c, 0x9f, 0x58, 0xb4, 0xeb, 0xf9, 0x2e, 0x73,
|
||||
0xd1, 0x7a, 0x24, 0x1a, 0x4f, 0x2c, 0x9b, 0xbd, 0x09, 0x47, 0xdd, 0x73, 0x77, 0xb6, 0x6b, 0xb9,
|
||||
0x96, 0xbb, 0x2b, 0xf4, 0xa3, 0x70, 0x22, 0x24, 0x21, 0x88, 0x93, 0xf4, 0x33, 0x1e, 0x58, 0xae,
|
||||
0x6b, 0x4d, 0x69, 0x6a, 0x45, 0x67, 0x1e, 0x9b, 0x47, 0xca, 0x5e, 0x86, 0xcb, 0x76, 0x26, 0xd3,
|
||||
0xf0, 0xed, 0x98, 0x30, 0xb2, 0x3b, 0x27, 0xbe, 0x77, 0x2e, 0x7f, 0x25, 0x9f, 0x38, 0x46, 0x3e,
|
||||
0x35, 0xcf, 0xa7, 0x63, 0xfb, 0x9c, 0xb0, 0x28, 0xb3, 0xf6, 0x3b, 0x0d, 0xca, 0x98, 0x92, 0x31,
|
||||
0xa6, 0x3f, 0x84, 0x34, 0x60, 0xc8, 0x80, 0x0d, 0xce, 0x32, 0x22, 0x01, 0x6d, 0xa8, 0xa6, 0xda,
|
||||
0x29, 0xe1, 0x44, 0x46, 0xdf, 0x40, 0x8d, 0xd9, 0x33, 0x1a, 0x30, 0x32, 0xf3, 0xce, 0x7c, 0xe2,
|
||||
0x58, 0xb4, 0xb1, 0x66, 0xaa, 0x9d, 0x72, 0xef, 0x83, 0x6e, 0x5c, 0xee, 0x49, 0xac, 0xc7, 0x5c,
|
||||
0xdd, 0xdf, 0xb9, 0xba, 0x6e, 0x29, 0x8b, 0xeb, 0xd6, 0x66, 0x1e, 0xc7, 0x9b, 0x2c, 0x27, 0xa3,
|
||||
0x26, 0xc0, 0x98, 0x06, 0xe7, 0xd4, 0x19, 0xdb, 0x8e, 0xd5, 0xd0, 0x4c, 0xb5, 0xb3, 0x81, 0x33,
|
||||
0x08, 0xcf, 0xca, 0xf2, 0xdd, 0xd0, 0xe3, 0x5a, 0xdd, 0xd4, 0x78, 0x56, 0xb1, 0x8c, 0x9e, 0x42,
|
||||
0x29, 0x29, 0xaa, 0x51, 0x10, 0xf9, 0xa0, 0x24, 0x9f, 0xe3, 0x58, 0x83, 0x53, 0x23, 0xd4, 0x83,
|
||||
0x4a, 0x40, 0x7d, 0x9b, 0x06, 0x67, 0x53, 0x7b, 0x66, 0xb3, 0x46, 0xd1, 0x54, 0x3b, 0x7a, 0xbf,
|
||||
0xb6, 0xb8, 0x6e, 0x95, 0x87, 0x02, 0x7f, 0xc5, 0x61, 0x5c, 0x0e, 0x52, 0x01, 0x3d, 0x83, 0x6a,
|
||||
0xe4, 0xe3, 0x4e, 0x26, 0x01, 0x65, 0x8d, 0x75, 0xe1, 0x54, 0x5f, 0x5c, 0xb7, 0x2a, 0xd2, 0xe9,
|
||||
0x48, 0xe0, 0x38, 0xa2, 0x96, 0x12, 0x0f, 0xe5, 0xb9, 0xb6, 0xc3, 0xe2, 0x50, 0x1b, 0x69, 0xa8,
|
||||
0x63, 0x81, 0x47, 0xa1, 0xbc, 0x54, 0xe0, 0x05, 0x11, 0xcb, 0xf2, 0xa9, 0xc5, 0x0b, 0x2a, 0xdd,
|
||||
0x28, 0xe8, 0xcb, 0x58, 0x83, 0x53, 0xa3, 0xf6, 0x9f, 0x2a, 0x94, 0x12, 0x05, 0xfa, 0x04, 0x74,
|
||||
0x36, 0xf7, 0x64, 0xfb, 0x36, 0x7b, 0xe6, 0xb2, 0x6b, 0x7a, 0x3a, 0x99, 0x7b, 0x14, 0x0b, 0xeb,
|
||||
0xf6, 0x5b, 0xa8, 0xe6, 0x60, 0xd4, 0x02, 0xfd, 0xf0, 0xe8, 0x70, 0xbf, 0xae, 0x18, 0xf7, 0x2f,
|
||||
0x2e, 0xcd, 0xad, 0x9c, 0xf2, 0xd0, 0x75, 0x28, 0x7a, 0x08, 0xda, 0xf0, 0xf4, 0x75, 0x5d, 0x35,
|
||||
0xb6, 0x2f, 0x2e, 0xcd, 0x7a, 0x4e, 0x3f, 0x0c, 0x67, 0xe8, 0x11, 0x14, 0xf6, 0x8e, 0x4e, 0x0f,
|
||||
0x4f, 0xea, 0x6b, 0xc6, 0xce, 0xc5, 0xa5, 0x89, 0x72, 0x06, 0x7b, 0x6e, 0xe8, 0x30, 0x43, 0xff,
|
||||
0xf9, 0xf7, 0xa6, 0xd2, 0x7e, 0x02, 0xda, 0x09, 0xb1, 0x50, 0x1d, 0xb4, 0xef, 0xe9, 0x5c, 0x64,
|
||||
0x5d, 0xc1, 0xfc, 0x88, 0xb6, 0xa1, 0xf0, 0x23, 0x99, 0x86, 0x72, 0xca, 0x2a, 0x58, 0x0a, 0xed,
|
||||
0xdf, 0x4a, 0x50, 0x91, 0x13, 0x1b, 0x78, 0xae, 0x13, 0x50, 0xf4, 0x19, 0x14, 0x27, 0x3e, 0x99,
|
||||
0xd1, 0xa0, 0xa1, 0x9a, 0x5a, 0xa7, 0xdc, 0x7b, 0x90, 0x54, 0x9c, 0x35, 0xeb, 0x7e, 0xc5, 0x6d,
|
||||
0xfa, 0x3a, 0x9f, 0x48, 0x1c, 0x39, 0x18, 0xef, 0x74, 0x28, 0x08, 0x1c, 0xbd, 0x80, 0xa2, 0x6c,
|
||||
0x9c, 0x48, 0xa0, 0xdc, 0x7b, 0xb4, 0x9a, 0x44, 0xb6, 0x5a, 0xb8, 0x0c, 0x14, 0x1c, 0xb9, 0xa0,
|
||||
0x6f, 0xa1, 0x32, 0x99, 0xba, 0x84, 0x9d, 0xc9, 0x36, 0x46, 0xb7, 0xe2, 0xf1, 0x2d, 0x79, 0x70,
|
||||
0x4b, 0xd9, 0x7c, 0x99, 0x92, 0x98, 0x86, 0x0c, 0x3a, 0x50, 0x70, 0x79, 0x92, 0x8a, 0x68, 0x0c,
|
||||
0x9b, 0xb6, 0xc3, 0xa8, 0x45, 0xfd, 0x98, 0x5f, 0x13, 0xfc, 0x9d, 0xd5, 0xfc, 0x07, 0xd2, 0x36,
|
||||
0x1b, 0x61, 0x6b, 0x71, 0xdd, 0xaa, 0xe6, 0xf0, 0x81, 0x82, 0xab, 0x76, 0x16, 0x40, 0x6f, 0xa0,
|
||||
0x16, 0x3a, 0x81, 0x6d, 0x39, 0x74, 0x1c, 0x87, 0xd1, 0x45, 0x98, 0x8f, 0x56, 0x87, 0x39, 0x8d,
|
||||
0x8c, 0xb3, 0x71, 0x10, 0xbf, 0xea, 0x79, 0xc5, 0x40, 0xc1, 0x9b, 0x61, 0x0e, 0xe1, 0xf5, 0x8c,
|
||||
0x5c, 0x77, 0x4a, 0x89, 0x13, 0x07, 0x2a, 0xbc, 0xaf, 0x9e, 0xbe, 0xb4, 0x5d, 0xaa, 0x27, 0x87,
|
||||
0xf3, 0x7a, 0x46, 0x59, 0x00, 0x7d, 0xc7, 0x77, 0xb0, 0x6f, 0x3b, 0x56, 0x1c, 0xa4, 0x28, 0x82,
|
||||
0x7c, 0x78, 0x4b, 0x5f, 0x85, 0x69, 0x36, 0x86, 0xbc, 0xd9, 0x19, 0x78, 0xa0, 0xe0, 0x4a, 0x90,
|
||||
0x91, 0xfb, 0x45, 0xd0, 0xf9, 0x6a, 0x34, 0x9e, 0x41, 0x39, 0x33, 0x16, 0xe8, 0x31, 0xe8, 0x8c,
|
||||
0x58, 0xf1, 0x30, 0x56, 0xd2, 0xd5, 0x48, 0xac, 0x68, 0xfa, 0x84, 0xde, 0xf8, 0x1a, 0xea, 0x37,
|
||||
0x47, 0x81, 0xef, 0xc1, 0x64, 0x33, 0x4a, 0x86, 0x3a, 0xce, 0x20, 0x68, 0x07, 0x8a, 0xe2, 0x12,
|
||||
0xf0, 0x11, 0xd3, 0x3a, 0x2a, 0x8e, 0x24, 0xe3, 0x15, 0xa0, 0xe5, 0xb6, 0xdf, 0x91, 0x4d, 0x4b,
|
||||
0xd8, 0x5e, 0xc3, 0xbd, 0x15, 0xdd, 0xbd, 0x23, 0x9d, 0x9e, 0x4d, 0x6e, 0xb9, 0x87, 0x77, 0x64,
|
||||
0xdb, 0x48, 0xd8, 0x5e, 0xc2, 0xd6, 0x52, 0xb3, 0xee, 0x48, 0x56, 0x8a, 0xc9, 0xda, 0x43, 0x28,
|
||||
0x09, 0x82, 0x68, 0xe1, 0x15, 0x87, 0xfb, 0xf8, 0x60, 0x7f, 0x58, 0x57, 0x8c, 0x7b, 0x17, 0x97,
|
||||
0x66, 0x2d, 0x51, 0xc9, 0xf6, 0x72, 0x83, 0xe3, 0xa3, 0x83, 0xc3, 0x93, 0x61, 0x5d, 0xbd, 0x61,
|
||||
0x20, 0x73, 0x89, 0xf6, 0xd9, 0x2f, 0x2a, 0x6c, 0xef, 0x11, 0x8f, 0x8c, 0xec, 0xa9, 0xcd, 0x6c,
|
||||
0x1a, 0x24, 0x8b, 0xea, 0x05, 0xe8, 0xe7, 0xc4, 0x8b, 0x27, 0x23, 0x9d, 0xc4, 0x55, 0xc6, 0x1c,
|
||||
0x0c, 0xf6, 0x1d, 0xe6, 0xcf, 0xb1, 0x70, 0x32, 0x3e, 0x85, 0x52, 0x02, 0x65, 0x77, 0x65, 0x69,
|
||||
0xc5, 0xae, 0x2c, 0x45, 0xbb, 0xf2, 0xf3, 0xb5, 0xe7, 0x6a, 0xbb, 0x06, 0xd5, 0x01, 0xcf, 0x2e,
|
||||
0x66, 0x6e, 0x3f, 0x87, 0x1b, 0x7f, 0xc7, 0xdc, 0x39, 0x60, 0xc4, 0x67, 0x82, 0x50, 0xc3, 0x52,
|
||||
0xe0, 0x41, 0xa8, 0x33, 0x16, 0x84, 0x1a, 0xe6, 0xc7, 0xde, 0xdf, 0x2a, 0xac, 0x0f, 0x65, 0xd2,
|
||||
0xbc, 0x18, 0x7e, 0x83, 0xd0, 0xf6, 0x8d, 0x0b, 0x25, 0x9e, 0x11, 0xc6, 0xfd, 0x95, 0xd7, 0xac,
|
||||
0xad, 0xff, 0xf4, 0x47, 0x43, 0x79, 0xaa, 0xa2, 0x97, 0x50, 0xc9, 0x16, 0x8d, 0x76, 0xba, 0xf2,
|
||||
0xa1, 0xd3, 0x8d, 0x1f, 0x3a, 0xdd, 0x7d, 0xfe, 0xd0, 0x31, 0x1e, 0xbe, 0xf7, 0x1b, 0x09, 0x3a,
|
||||
0x15, 0x7d, 0x01, 0x05, 0x51, 0xe0, 0xad, 0x2c, 0x3b, 0x09, 0x4b, 0xfe, 0x43, 0x70, 0xf7, 0x35,
|
||||
0x43, 0xe4, 0xd4, 0xdf, 0xbe, 0xfa, 0xb7, 0xa9, 0x5c, 0x2d, 0x9a, 0xea, 0x5f, 0x8b, 0xa6, 0xfa,
|
||||
0xcf, 0xa2, 0xa9, 0xfe, 0xfa, 0x5f, 0x53, 0x19, 0x15, 0x05, 0xd3, 0xc7, 0xff, 0x07, 0x00, 0x00,
|
||||
0xff, 0xff, 0xc2, 0x61, 0xdd, 0x48, 0xcf, 0x09, 0x00, 0x00,
|
||||
// 1168 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xcf, 0x8f, 0xda, 0xc6,
|
||||
0x17, 0xb7, 0xb1, 0x61, 0xe1, 0xf1, 0xcb, 0x3b, 0xd9, 0xec, 0x17, 0x39, 0xdf, 0x80, 0xc3, 0x21,
|
||||
0xa5, 0x87, 0x90, 0x88, 0xb6, 0x6a, 0xda, 0xa8, 0x87, 0x90, 0x90, 0x40, 0xb3, 0x81, 0xd5, 0xc0,
|
||||
0x4a, 0x3d, 0x54, 0xda, 0x9a, 0x65, 0x70, 0xac, 0x82, 0xed, 0xda, 0xa6, 0x0a, 0xb7, 0x1e, 0x2b,
|
||||
0xd4, 0x43, 0x0f, 0xbd, 0x72, 0xea, 0xdf, 0xd0, 0x5e, 0x7a, 0xcb, 0x69, 0x8f, 0x3d, 0xf6, 0xb4,
|
||||
0x6a, 0xe9, 0x3f, 0x52, 0xcd, 0x8c, 0x6d, 0xec, 0x5d, 0x36, 0xd2, 0x5e, 0xac, 0x79, 0xbf, 0x3e,
|
||||
0xef, 0xbd, 0x79, 0x3f, 0x3c, 0x50, 0xf4, 0x7c, 0xdb, 0xd5, 0x0d, 0xd2, 0x74, 0x5c, 0xdb, 0xb7,
|
||||
0xd1, 0x5e, 0x40, 0xaa, 0x0f, 0x0c, 0xd3, 0x7f, 0xb3, 0x18, 0x37, 0xcf, 0xec, 0xf9, 0x43, 0xc3,
|
||||
0x36, 0xec, 0x87, 0x4c, 0x3e, 0x5e, 0x4c, 0x19, 0xc5, 0x08, 0x76, 0xe2, 0x76, 0xea, 0x1d, 0xc3,
|
||||
0xb6, 0x8d, 0x19, 0xd9, 0x6a, 0x91, 0xb9, 0xe3, 0x2f, 0x03, 0x61, 0x2b, 0x86, 0x65, 0x5a, 0xd3,
|
||||
0xd9, 0xe2, 0xed, 0x44, 0xf7, 0xf5, 0x87, 0x4b, 0xdd, 0x75, 0xce, 0xf8, 0x97, 0xe3, 0xb1, 0x63,
|
||||
0x60, 0x53, 0x76, 0x5c, 0x32, 0x31, 0xcf, 0x74, 0x3f, 0x88, 0xac, 0xfe, 0x4e, 0x82, 0x3c, 0x26,
|
||||
0xfa, 0x04, 0x93, 0xef, 0x16, 0xc4, 0xf3, 0x91, 0x0a, 0x59, 0x8a, 0x32, 0xd6, 0x3d, 0x52, 0x11,
|
||||
0x35, 0xb1, 0x91, 0xc3, 0x11, 0x8d, 0xbe, 0x82, 0xb2, 0x6f, 0xce, 0x89, 0xe7, 0xeb, 0x73, 0xe7,
|
||||
0xd4, 0xd5, 0x2d, 0x83, 0x54, 0x52, 0x9a, 0xd8, 0xc8, 0xb7, 0xfe, 0xd7, 0x0c, 0xd3, 0x1d, 0x85,
|
||||
0x72, 0x4c, 0xc5, 0xed, 0xc3, 0xf3, 0x8b, 0x9a, 0xb0, 0xb9, 0xa8, 0x95, 0x92, 0x7c, 0x5c, 0xf2,
|
||||
0x13, 0x34, 0xaa, 0x02, 0x4c, 0x88, 0x77, 0x46, 0xac, 0x89, 0x69, 0x19, 0x15, 0x49, 0x13, 0x1b,
|
||||
0x59, 0x1c, 0xe3, 0xd0, 0xa8, 0x0c, 0xd7, 0x5e, 0x38, 0x54, 0x2a, 0x6b, 0x12, 0x8d, 0x2a, 0xa4,
|
||||
0xd1, 0x23, 0xc8, 0x45, 0x49, 0x55, 0xd2, 0x2c, 0x1e, 0x14, 0xc5, 0x73, 0x1c, 0x4a, 0xf0, 0x56,
|
||||
0x09, 0xb5, 0xa0, 0xe0, 0x11, 0xd7, 0x24, 0xde, 0xe9, 0xcc, 0x9c, 0x9b, 0x7e, 0x25, 0xa3, 0x89,
|
||||
0x0d, 0xb9, 0x5d, 0xde, 0x5c, 0xd4, 0xf2, 0x43, 0xc6, 0x3f, 0xa2, 0x6c, 0x9c, 0xf7, 0xb6, 0x04,
|
||||
0xfa, 0x04, 0x8a, 0x81, 0x8d, 0x3d, 0x9d, 0x7a, 0xc4, 0xaf, 0xec, 0x31, 0x23, 0x65, 0x73, 0x51,
|
||||
0x2b, 0x70, 0xa3, 0x01, 0xe3, 0xe3, 0x00, 0x9a, 0x53, 0xd4, 0x95, 0x63, 0x9b, 0x96, 0x1f, 0xba,
|
||||
0xca, 0x6e, 0x5d, 0x1d, 0x33, 0x7e, 0xe0, 0xca, 0xd9, 0x12, 0x34, 0x21, 0xdd, 0x30, 0x5c, 0x62,
|
||||
0xd0, 0x84, 0x72, 0x97, 0x12, 0x7a, 0x1a, 0x4a, 0xf0, 0x56, 0xa9, 0xfe, 0x87, 0x08, 0xb9, 0x48,
|
||||
0x80, 0x3e, 0x06, 0xd9, 0x5f, 0x3a, 0xbc, 0x7c, 0xa5, 0x96, 0x76, 0xd5, 0x74, 0x7b, 0x1a, 0x2d,
|
||||
0x1d, 0x82, 0x99, 0x76, 0xfd, 0x2d, 0x14, 0x13, 0x6c, 0x54, 0x03, 0xb9, 0x3f, 0xe8, 0x77, 0x14,
|
||||
0x41, 0xbd, 0xbd, 0x5a, 0x6b, 0xfb, 0x09, 0x61, 0xdf, 0xb6, 0x08, 0xba, 0x0b, 0xd2, 0xf0, 0xe4,
|
||||
0xb5, 0x22, 0xaa, 0x07, 0xab, 0xb5, 0xa6, 0x24, 0xe4, 0xc3, 0xc5, 0x1c, 0xdd, 0x83, 0xf4, 0xb3,
|
||||
0xc1, 0x49, 0x7f, 0xa4, 0xa4, 0xd4, 0xc3, 0xd5, 0x5a, 0x43, 0x09, 0x85, 0x67, 0xf6, 0xc2, 0xf2,
|
||||
0x55, 0xf9, 0xc7, 0x5f, 0xab, 0x42, 0xfd, 0x01, 0x48, 0x23, 0xdd, 0x40, 0x0a, 0x48, 0xdf, 0x92,
|
||||
0x25, 0x8b, 0xba, 0x80, 0xe9, 0x11, 0x1d, 0x40, 0xfa, 0x7b, 0x7d, 0xb6, 0xe0, 0x5d, 0x56, 0xc0,
|
||||
0x9c, 0xa8, 0xff, 0x92, 0x87, 0x02, 0xef, 0x58, 0xcf, 0xb1, 0x2d, 0x8f, 0xa0, 0xcf, 0x20, 0x33,
|
||||
0x75, 0xf5, 0x39, 0xf1, 0x2a, 0xa2, 0x26, 0x35, 0xf2, 0xad, 0x3b, 0x51, 0xc6, 0x71, 0xb5, 0xe6,
|
||||
0x0b, 0xaa, 0xd3, 0x96, 0x69, 0x47, 0xe2, 0xc0, 0x40, 0x7d, 0x27, 0x43, 0x9a, 0xf1, 0xd1, 0x13,
|
||||
0xc8, 0xf0, 0xc2, 0xb1, 0x00, 0xf2, 0xad, 0x7b, 0xbb, 0x41, 0x78, 0xa9, 0x99, 0x49, 0x57, 0xc0,
|
||||
0x81, 0x09, 0xfa, 0x1a, 0x0a, 0xd3, 0x99, 0xad, 0xfb, 0xa7, 0xbc, 0x8c, 0xc1, 0x54, 0xdc, 0xbf,
|
||||
0x26, 0x0e, 0xaa, 0xc9, 0x8b, 0xcf, 0x43, 0x62, 0xdd, 0x10, 0xe3, 0x76, 0x05, 0x9c, 0x9f, 0x6e,
|
||||
0x49, 0x34, 0x81, 0x92, 0x69, 0xf9, 0xc4, 0x20, 0x6e, 0x88, 0x2f, 0x31, 0xfc, 0xc6, 0x6e, 0xfc,
|
||||
0x1e, 0xd7, 0x8d, 0x7b, 0xd8, 0xdf, 0x5c, 0xd4, 0x8a, 0x09, 0x7e, 0x57, 0xc0, 0x45, 0x33, 0xce,
|
||||
0x40, 0x6f, 0xa0, 0xbc, 0xb0, 0x3c, 0xd3, 0xb0, 0xc8, 0x24, 0x74, 0x23, 0x33, 0x37, 0x1f, 0xee,
|
||||
0x76, 0x73, 0x12, 0x28, 0xc7, 0xfd, 0x20, 0x3a, 0xea, 0x49, 0x41, 0x57, 0xc0, 0xa5, 0x45, 0x82,
|
||||
0x43, 0xf3, 0x19, 0xdb, 0xf6, 0x8c, 0xe8, 0x56, 0xe8, 0x28, 0xfd, 0xbe, 0x7c, 0xda, 0x5c, 0xf7,
|
||||
0x4a, 0x3e, 0x09, 0x3e, 0xcd, 0x67, 0x1c, 0x67, 0xa0, 0x6f, 0xe8, 0x0e, 0x76, 0x4d, 0xcb, 0x08,
|
||||
0x9d, 0x64, 0x98, 0x93, 0x0f, 0xae, 0xa9, 0x2b, 0x53, 0x8d, 0xfb, 0xe0, 0x93, 0x1d, 0x63, 0x77,
|
||||
0x05, 0x5c, 0xf0, 0x62, 0x74, 0x3b, 0x03, 0x32, 0x5d, 0x8d, 0xaa, 0x0b, 0xf9, 0x58, 0x5b, 0xa0,
|
||||
0xfb, 0x20, 0xfb, 0xba, 0x11, 0x36, 0x63, 0x61, 0xbb, 0x1a, 0x75, 0x23, 0xe8, 0x3e, 0x26, 0x47,
|
||||
0x4f, 0x20, 0x47, 0xcd, 0x4f, 0xd9, 0xac, 0xa6, 0xd8, 0xac, 0x56, 0x77, 0x07, 0xf7, 0x5c, 0xf7,
|
||||
0x75, 0x36, 0xa9, 0x6c, 0x15, 0xd3, 0x93, 0xfa, 0x25, 0x28, 0x97, 0xfb, 0x88, 0x2e, 0xd1, 0x68,
|
||||
0xad, 0x72, 0xf7, 0x0a, 0x8e, 0x71, 0xd0, 0x21, 0x64, 0xd8, 0x04, 0xd1, 0xfe, 0x94, 0x1a, 0x22,
|
||||
0x0e, 0x28, 0xf5, 0x08, 0xd0, 0xd5, 0x9e, 0xb9, 0x21, 0x9a, 0x14, 0xa1, 0xbd, 0x86, 0x5b, 0x3b,
|
||||
0x5a, 0xe3, 0x86, 0x70, 0x72, 0x3c, 0xb8, 0xab, 0x0d, 0x70, 0x43, 0xb4, 0x6c, 0x84, 0xf6, 0x0a,
|
||||
0xf6, 0xaf, 0x54, 0xfa, 0x86, 0x60, 0xb9, 0x10, 0xac, 0x3e, 0x84, 0x1c, 0x03, 0x08, 0xb6, 0x65,
|
||||
0x66, 0xd8, 0xc1, 0xbd, 0xce, 0x50, 0x11, 0xd4, 0x5b, 0xab, 0xb5, 0x56, 0x8e, 0x44, 0xbc, 0x37,
|
||||
0xa8, 0xc2, 0xf1, 0xa0, 0xd7, 0x1f, 0x0d, 0x15, 0xf1, 0x92, 0x02, 0x8f, 0x25, 0x58, 0x86, 0xbf,
|
||||
0x8b, 0x90, 0x0d, 0xeb, 0x8d, 0xfe, 0x0f, 0xe9, 0x17, 0x47, 0x83, 0xa7, 0x23, 0x45, 0x50, 0xf7,
|
||||
0x57, 0x6b, 0xad, 0x18, 0x0a, 0x58, 0xe9, 0x91, 0x06, 0x7b, 0xbd, 0xfe, 0xa8, 0xf3, 0xb2, 0x83,
|
||||
0x43, 0xc8, 0x50, 0x1e, 0x94, 0x13, 0xd5, 0x21, 0x7b, 0xd2, 0x1f, 0xf6, 0x5e, 0xf6, 0x3b, 0xcf,
|
||||
0x95, 0x14, 0x5f, 0xd3, 0xa1, 0x4a, 0x58, 0x23, 0x8a, 0xd2, 0x1e, 0x0c, 0x8e, 0x3a, 0x4f, 0xfb,
|
||||
0x8a, 0x94, 0x44, 0x09, 0xee, 0x1d, 0x55, 0x21, 0x33, 0x1c, 0xe1, 0x5e, 0xff, 0xa5, 0x22, 0xab,
|
||||
0x68, 0xb5, 0xd6, 0x4a, 0xa1, 0x02, 0xbf, 0xca, 0x20, 0xf0, 0x9f, 0x44, 0x38, 0x78, 0xa6, 0x3b,
|
||||
0xfa, 0xd8, 0x9c, 0x99, 0xbe, 0x49, 0xbc, 0x68, 0x3d, 0x3f, 0x01, 0xf9, 0x4c, 0x77, 0xc2, 0x79,
|
||||
0xd8, 0xce, 0xdf, 0x2e, 0x65, 0xca, 0xf4, 0x3a, 0x96, 0xef, 0x2e, 0x31, 0x33, 0x52, 0x3f, 0x85,
|
||||
0x5c, 0xc4, 0x8a, 0xff, 0x21, 0x72, 0x3b, 0xfe, 0x10, 0xb9, 0xe0, 0x0f, 0xf1, 0x79, 0xea, 0xb1,
|
||||
0x58, 0x2f, 0x43, 0xb1, 0x4b, 0xaf, 0x35, 0x44, 0xae, 0x3f, 0x86, 0x4b, 0x8f, 0x10, 0x6a, 0xec,
|
||||
0xf9, 0xba, 0xeb, 0x33, 0x40, 0x09, 0x73, 0x82, 0x3a, 0x21, 0xd6, 0x84, 0x01, 0x4a, 0x98, 0x1e,
|
||||
0x5b, 0x7f, 0x89, 0xb0, 0x37, 0xe4, 0x41, 0xd3, 0x64, 0xe8, 0x68, 0xa2, 0x83, 0x4b, 0x93, 0xca,
|
||||
0x1e, 0x4f, 0xea, 0xed, 0x9d, 0xf3, 0x5b, 0x97, 0x7f, 0xf8, 0xad, 0x22, 0x3c, 0x12, 0xd1, 0x2b,
|
||||
0x28, 0xc4, 0x93, 0x46, 0x87, 0x4d, 0xfe, 0xbc, 0x6b, 0x86, 0xcf, 0xbb, 0x66, 0x87, 0x3e, 0xef,
|
||||
0xd4, 0xbb, 0xef, 0xbd, 0x23, 0x06, 0x27, 0xa2, 0x2f, 0x20, 0xcd, 0x12, 0xbc, 0x16, 0xe5, 0x30,
|
||||
0x42, 0x49, 0x5e, 0x04, 0x35, 0x4f, 0xa9, 0x2c, 0xa6, 0xf6, 0xc1, 0xf9, 0x3f, 0x55, 0xe1, 0x7c,
|
||||
0x53, 0x15, 0xff, 0xdc, 0x54, 0xc5, 0xbf, 0x37, 0x55, 0xf1, 0xe7, 0x7f, 0xab, 0xc2, 0x38, 0xc3,
|
||||
0x90, 0x3e, 0xfa, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xf8, 0x50, 0xa4, 0x8e, 0xc5, 0x0a, 0x00, 0x00,
|
||||
}
|
||||
|
|
|
@ -91,6 +91,16 @@ message ReadResponse {
|
|||
POINTS = 1 [(gogoproto.enumvalue_customname) = "FrameTypePoints"];
|
||||
}
|
||||
|
||||
enum DataType {
|
||||
option (gogoproto.goproto_enum_prefix) = false;
|
||||
|
||||
FLOAT = 0 [(gogoproto.enumvalue_customname) = "DataTypeFloat"];
|
||||
INTEGER = 1 [(gogoproto.enumvalue_customname) = "DataTypeInteger"];
|
||||
UNSIGNED = 2 [(gogoproto.enumvalue_customname) = "DataTypeUnsigned"];
|
||||
BOOLEAN = 3 [(gogoproto.enumvalue_customname) = "DataTypeBoolean"];
|
||||
STRING = 4 [(gogoproto.enumvalue_customname) = "DataTypeString"];
|
||||
}
|
||||
|
||||
message Frame {
|
||||
oneof data {
|
||||
SeriesFrame series = 1;
|
||||
|
@ -104,6 +114,7 @@ message ReadResponse {
|
|||
|
||||
message SeriesFrame {
|
||||
repeated Tag tags = 1 [(gogoproto.nullable) = false];
|
||||
DataType data_type = 2;
|
||||
}
|
||||
|
||||
message FloatPointsFrame {
|
||||
|
|
Loading…
Reference in New Issue