|
@@ -1,17 +1,17 @@
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
-// source: tsdb_plugin.proto
|
|
|
|
|
|
|
+// source: datasource.proto
|
|
|
|
|
|
|
|
/*
|
|
/*
|
|
|
-Package proto is a generated protocol buffer package.
|
|
|
|
|
|
|
+Package datasource is a generated protocol buffer package.
|
|
|
|
|
|
|
|
It is generated from these files:
|
|
It is generated from these files:
|
|
|
- tsdb_plugin.proto
|
|
|
|
|
|
|
+ datasource.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
It has these top-level messages:
|
|
|
- TsdbQuery
|
|
|
|
|
|
|
+ DatasourceRequest
|
|
|
Query
|
|
Query
|
|
|
TimeRange
|
|
TimeRange
|
|
|
- Response
|
|
|
|
|
|
|
+ DatasourceResponse
|
|
|
QueryResult
|
|
QueryResult
|
|
|
Table
|
|
Table
|
|
|
TableColumn
|
|
TableColumn
|
|
@@ -21,9 +21,9 @@ It has these top-level messages:
|
|
|
TimeSeries
|
|
TimeSeries
|
|
|
Point
|
|
Point
|
|
|
*/
|
|
*/
|
|
|
-package proto
|
|
|
|
|
|
|
+package datasource
|
|
|
|
|
|
|
|
-import proto1 "github.com/golang/protobuf/proto"
|
|
|
|
|
|
|
+import proto "github.com/golang/protobuf/proto"
|
|
|
import fmt "fmt"
|
|
import fmt "fmt"
|
|
|
import math "math"
|
|
import math "math"
|
|
|
|
|
|
|
@@ -33,7 +33,7 @@ import (
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
|
-var _ = proto1.Marshal
|
|
|
|
|
|
|
+var _ = proto.Marshal
|
|
|
var _ = fmt.Errorf
|
|
var _ = fmt.Errorf
|
|
|
var _ = math.Inf
|
|
var _ = math.Inf
|
|
|
|
|
|
|
@@ -41,7 +41,7 @@ var _ = math.Inf
|
|
|
// is compatible with the proto package it is being compiled against.
|
|
// is compatible with the proto package it is being compiled against.
|
|
|
// A compilation error at this line likely means your copy of the
|
|
// A compilation error at this line likely means your copy of the
|
|
|
// proto package needs to be updated.
|
|
// proto package needs to be updated.
|
|
|
-const _ = proto1.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
+const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
|
|
|
type RowValue_Kind int32
|
|
type RowValue_Kind int32
|
|
|
|
|
|
|
@@ -78,36 +78,36 @@ var RowValue_Kind_value = map[string]int32{
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x RowValue_Kind) String() string {
|
|
func (x RowValue_Kind) String() string {
|
|
|
- return proto1.EnumName(RowValue_Kind_name, int32(x))
|
|
|
|
|
|
|
+ return proto.EnumName(RowValue_Kind_name, int32(x))
|
|
|
}
|
|
}
|
|
|
func (RowValue_Kind) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{8, 0} }
|
|
func (RowValue_Kind) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{8, 0} }
|
|
|
|
|
|
|
|
-type TsdbQuery struct {
|
|
|
|
|
|
|
+type DatasourceRequest struct {
|
|
|
TimeRange *TimeRange `protobuf:"bytes,1,opt,name=timeRange" json:"timeRange,omitempty"`
|
|
TimeRange *TimeRange `protobuf:"bytes,1,opt,name=timeRange" json:"timeRange,omitempty"`
|
|
|
Datasource *DatasourceInfo `protobuf:"bytes,2,opt,name=datasource" json:"datasource,omitempty"`
|
|
Datasource *DatasourceInfo `protobuf:"bytes,2,opt,name=datasource" json:"datasource,omitempty"`
|
|
|
Queries []*Query `protobuf:"bytes,3,rep,name=queries" json:"queries,omitempty"`
|
|
Queries []*Query `protobuf:"bytes,3,rep,name=queries" json:"queries,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (m *TsdbQuery) Reset() { *m = TsdbQuery{} }
|
|
|
|
|
-func (m *TsdbQuery) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
-func (*TsdbQuery) ProtoMessage() {}
|
|
|
|
|
-func (*TsdbQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
+func (m *DatasourceRequest) Reset() { *m = DatasourceRequest{} }
|
|
|
|
|
+func (m *DatasourceRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*DatasourceRequest) ProtoMessage() {}
|
|
|
|
|
+func (*DatasourceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
|
|
|
-func (m *TsdbQuery) GetTimeRange() *TimeRange {
|
|
|
|
|
|
|
+func (m *DatasourceRequest) GetTimeRange() *TimeRange {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
|
return m.TimeRange
|
|
return m.TimeRange
|
|
|
}
|
|
}
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (m *TsdbQuery) GetDatasource() *DatasourceInfo {
|
|
|
|
|
|
|
+func (m *DatasourceRequest) GetDatasource() *DatasourceInfo {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
|
return m.Datasource
|
|
return m.Datasource
|
|
|
}
|
|
}
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (m *TsdbQuery) GetQueries() []*Query {
|
|
|
|
|
|
|
+func (m *DatasourceRequest) GetQueries() []*Query {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
|
return m.Queries
|
|
return m.Queries
|
|
|
}
|
|
}
|
|
@@ -122,7 +122,7 @@ type Query struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Query) Reset() { *m = Query{} }
|
|
func (m *Query) Reset() { *m = Query{} }
|
|
|
-func (m *Query) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *Query) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Query) ProtoMessage() {}
|
|
func (*Query) ProtoMessage() {}
|
|
|
func (*Query) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
func (*Query) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
|
|
@@ -162,7 +162,7 @@ type TimeRange struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *TimeRange) Reset() { *m = TimeRange{} }
|
|
func (m *TimeRange) Reset() { *m = TimeRange{} }
|
|
|
-func (m *TimeRange) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *TimeRange) String() string { return proto.CompactTextString(m) }
|
|
|
func (*TimeRange) ProtoMessage() {}
|
|
func (*TimeRange) ProtoMessage() {}
|
|
|
func (*TimeRange) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
func (*TimeRange) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
@@ -194,16 +194,16 @@ func (m *TimeRange) GetToEpochMs() int64 {
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-type Response struct {
|
|
|
|
|
|
|
+type DatasourceResponse struct {
|
|
|
Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
|
|
Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (m *Response) Reset() { *m = Response{} }
|
|
|
|
|
-func (m *Response) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
-func (*Response) ProtoMessage() {}
|
|
|
|
|
-func (*Response) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
|
|
+func (m *DatasourceResponse) Reset() { *m = DatasourceResponse{} }
|
|
|
|
|
+func (m *DatasourceResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
|
+func (*DatasourceResponse) ProtoMessage() {}
|
|
|
|
|
+func (*DatasourceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
|
|
|
-func (m *Response) GetResults() []*QueryResult {
|
|
|
|
|
|
|
+func (m *DatasourceResponse) GetResults() []*QueryResult {
|
|
|
if m != nil {
|
|
if m != nil {
|
|
|
return m.Results
|
|
return m.Results
|
|
|
}
|
|
}
|
|
@@ -219,7 +219,7 @@ type QueryResult struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *QueryResult) Reset() { *m = QueryResult{} }
|
|
func (m *QueryResult) Reset() { *m = QueryResult{} }
|
|
|
-func (m *QueryResult) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *QueryResult) String() string { return proto.CompactTextString(m) }
|
|
|
func (*QueryResult) ProtoMessage() {}
|
|
func (*QueryResult) ProtoMessage() {}
|
|
|
func (*QueryResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
func (*QueryResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
|
|
|
@@ -264,7 +264,7 @@ type Table struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Table) Reset() { *m = Table{} }
|
|
func (m *Table) Reset() { *m = Table{} }
|
|
|
-func (m *Table) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *Table) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Table) ProtoMessage() {}
|
|
func (*Table) ProtoMessage() {}
|
|
|
func (*Table) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
func (*Table) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
|
|
|
@@ -287,7 +287,7 @@ type TableColumn struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *TableColumn) Reset() { *m = TableColumn{} }
|
|
func (m *TableColumn) Reset() { *m = TableColumn{} }
|
|
|
-func (m *TableColumn) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *TableColumn) String() string { return proto.CompactTextString(m) }
|
|
|
func (*TableColumn) ProtoMessage() {}
|
|
func (*TableColumn) ProtoMessage() {}
|
|
|
func (*TableColumn) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
func (*TableColumn) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
|
|
|
@@ -303,7 +303,7 @@ type TableRow struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *TableRow) Reset() { *m = TableRow{} }
|
|
func (m *TableRow) Reset() { *m = TableRow{} }
|
|
|
-func (m *TableRow) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *TableRow) String() string { return proto.CompactTextString(m) }
|
|
|
func (*TableRow) ProtoMessage() {}
|
|
func (*TableRow) ProtoMessage() {}
|
|
|
func (*TableRow) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
func (*TableRow) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
|
|
|
@@ -315,7 +315,7 @@ func (m *TableRow) GetValues() []*RowValue {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
type RowValue struct {
|
|
type RowValue struct {
|
|
|
- Kind RowValue_Kind `protobuf:"varint,1,opt,name=kind,enum=plugins.RowValue_Kind" json:"kind,omitempty"`
|
|
|
|
|
|
|
+ Kind RowValue_Kind `protobuf:"varint,1,opt,name=kind,enum=models.RowValue_Kind" json:"kind,omitempty"`
|
|
|
DoubleValue float64 `protobuf:"fixed64,2,opt,name=doubleValue" json:"doubleValue,omitempty"`
|
|
DoubleValue float64 `protobuf:"fixed64,2,opt,name=doubleValue" json:"doubleValue,omitempty"`
|
|
|
Int64Value int64 `protobuf:"varint,3,opt,name=int64Value" json:"int64Value,omitempty"`
|
|
Int64Value int64 `protobuf:"varint,3,opt,name=int64Value" json:"int64Value,omitempty"`
|
|
|
BoolValue bool `protobuf:"varint,4,opt,name=boolValue" json:"boolValue,omitempty"`
|
|
BoolValue bool `protobuf:"varint,4,opt,name=boolValue" json:"boolValue,omitempty"`
|
|
@@ -324,7 +324,7 @@ type RowValue struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *RowValue) Reset() { *m = RowValue{} }
|
|
func (m *RowValue) Reset() { *m = RowValue{} }
|
|
|
-func (m *RowValue) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *RowValue) String() string { return proto.CompactTextString(m) }
|
|
|
func (*RowValue) ProtoMessage() {}
|
|
func (*RowValue) ProtoMessage() {}
|
|
|
func (*RowValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
func (*RowValue) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
|
|
|
@@ -381,7 +381,7 @@ type DatasourceInfo struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *DatasourceInfo) Reset() { *m = DatasourceInfo{} }
|
|
func (m *DatasourceInfo) Reset() { *m = DatasourceInfo{} }
|
|
|
-func (m *DatasourceInfo) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *DatasourceInfo) String() string { return proto.CompactTextString(m) }
|
|
|
func (*DatasourceInfo) ProtoMessage() {}
|
|
func (*DatasourceInfo) ProtoMessage() {}
|
|
|
func (*DatasourceInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
func (*DatasourceInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
|
|
|
|
|
|
|
@@ -441,7 +441,7 @@ type TimeSeries struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *TimeSeries) Reset() { *m = TimeSeries{} }
|
|
func (m *TimeSeries) Reset() { *m = TimeSeries{} }
|
|
|
-func (m *TimeSeries) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *TimeSeries) String() string { return proto.CompactTextString(m) }
|
|
|
func (*TimeSeries) ProtoMessage() {}
|
|
func (*TimeSeries) ProtoMessage() {}
|
|
|
func (*TimeSeries) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
func (*TimeSeries) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
|
|
|
|
|
|
|
@@ -472,7 +472,7 @@ type Point struct {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (m *Point) Reset() { *m = Point{} }
|
|
func (m *Point) Reset() { *m = Point{} }
|
|
|
-func (m *Point) String() string { return proto1.CompactTextString(m) }
|
|
|
|
|
|
|
+func (m *Point) String() string { return proto.CompactTextString(m) }
|
|
|
func (*Point) ProtoMessage() {}
|
|
func (*Point) ProtoMessage() {}
|
|
|
func (*Point) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
func (*Point) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} }
|
|
|
|
|
|
|
@@ -491,19 +491,19 @@ func (m *Point) GetValue() float64 {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
func init() {
|
|
|
- proto1.RegisterType((*TsdbQuery)(nil), "plugins.TsdbQuery")
|
|
|
|
|
- proto1.RegisterType((*Query)(nil), "plugins.Query")
|
|
|
|
|
- proto1.RegisterType((*TimeRange)(nil), "plugins.TimeRange")
|
|
|
|
|
- proto1.RegisterType((*Response)(nil), "plugins.Response")
|
|
|
|
|
- proto1.RegisterType((*QueryResult)(nil), "plugins.QueryResult")
|
|
|
|
|
- proto1.RegisterType((*Table)(nil), "plugins.Table")
|
|
|
|
|
- proto1.RegisterType((*TableColumn)(nil), "plugins.TableColumn")
|
|
|
|
|
- proto1.RegisterType((*TableRow)(nil), "plugins.TableRow")
|
|
|
|
|
- proto1.RegisterType((*RowValue)(nil), "plugins.RowValue")
|
|
|
|
|
- proto1.RegisterType((*DatasourceInfo)(nil), "plugins.DatasourceInfo")
|
|
|
|
|
- proto1.RegisterType((*TimeSeries)(nil), "plugins.TimeSeries")
|
|
|
|
|
- proto1.RegisterType((*Point)(nil), "plugins.Point")
|
|
|
|
|
- proto1.RegisterEnum("plugins.RowValue_Kind", RowValue_Kind_name, RowValue_Kind_value)
|
|
|
|
|
|
|
+ proto.RegisterType((*DatasourceRequest)(nil), "models.DatasourceRequest")
|
|
|
|
|
+ proto.RegisterType((*Query)(nil), "models.Query")
|
|
|
|
|
+ proto.RegisterType((*TimeRange)(nil), "models.TimeRange")
|
|
|
|
|
+ proto.RegisterType((*DatasourceResponse)(nil), "models.DatasourceResponse")
|
|
|
|
|
+ proto.RegisterType((*QueryResult)(nil), "models.QueryResult")
|
|
|
|
|
+ proto.RegisterType((*Table)(nil), "models.Table")
|
|
|
|
|
+ proto.RegisterType((*TableColumn)(nil), "models.TableColumn")
|
|
|
|
|
+ proto.RegisterType((*TableRow)(nil), "models.TableRow")
|
|
|
|
|
+ proto.RegisterType((*RowValue)(nil), "models.RowValue")
|
|
|
|
|
+ proto.RegisterType((*DatasourceInfo)(nil), "models.DatasourceInfo")
|
|
|
|
|
+ proto.RegisterType((*TimeSeries)(nil), "models.TimeSeries")
|
|
|
|
|
+ proto.RegisterType((*Point)(nil), "models.Point")
|
|
|
|
|
+ proto.RegisterEnum("models.RowValue_Kind", RowValue_Kind_name, RowValue_Kind_value)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
@@ -514,123 +514,123 @@ var _ grpc.ClientConn
|
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// is compatible with the grpc package it is being compiled against.
|
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
|
|
|
|
-// Client API for TsdbPlugin service
|
|
|
|
|
|
|
+// Client API for DatasourcePlugin service
|
|
|
|
|
|
|
|
-type TsdbPluginClient interface {
|
|
|
|
|
- Query(ctx context.Context, in *TsdbQuery, opts ...grpc.CallOption) (*Response, error)
|
|
|
|
|
|
|
+type DatasourcePluginClient interface {
|
|
|
|
|
+ Query(ctx context.Context, in *DatasourceRequest, opts ...grpc.CallOption) (*DatasourceResponse, error)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-type tsdbPluginClient struct {
|
|
|
|
|
|
|
+type datasourcePluginClient struct {
|
|
|
cc *grpc.ClientConn
|
|
cc *grpc.ClientConn
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func NewTsdbPluginClient(cc *grpc.ClientConn) TsdbPluginClient {
|
|
|
|
|
- return &tsdbPluginClient{cc}
|
|
|
|
|
|
|
+func NewDatasourcePluginClient(cc *grpc.ClientConn) DatasourcePluginClient {
|
|
|
|
|
+ return &datasourcePluginClient{cc}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func (c *tsdbPluginClient) Query(ctx context.Context, in *TsdbQuery, opts ...grpc.CallOption) (*Response, error) {
|
|
|
|
|
- out := new(Response)
|
|
|
|
|
- err := grpc.Invoke(ctx, "/plugins.TsdbPlugin/Query", in, out, c.cc, opts...)
|
|
|
|
|
|
|
+func (c *datasourcePluginClient) Query(ctx context.Context, in *DatasourceRequest, opts ...grpc.CallOption) (*DatasourceResponse, error) {
|
|
|
|
|
+ out := new(DatasourceResponse)
|
|
|
|
|
+ err := grpc.Invoke(ctx, "/models.DatasourcePlugin/Query", in, out, c.cc, opts...)
|
|
|
if err != nil {
|
|
if err != nil {
|
|
|
return nil, err
|
|
return nil, err
|
|
|
}
|
|
}
|
|
|
return out, nil
|
|
return out, nil
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-// Server API for TsdbPlugin service
|
|
|
|
|
|
|
+// Server API for DatasourcePlugin service
|
|
|
|
|
|
|
|
-type TsdbPluginServer interface {
|
|
|
|
|
- Query(context.Context, *TsdbQuery) (*Response, error)
|
|
|
|
|
|
|
+type DatasourcePluginServer interface {
|
|
|
|
|
+ Query(context.Context, *DatasourceRequest) (*DatasourceResponse, error)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func RegisterTsdbPluginServer(s *grpc.Server, srv TsdbPluginServer) {
|
|
|
|
|
- s.RegisterService(&_TsdbPlugin_serviceDesc, srv)
|
|
|
|
|
|
|
+func RegisterDatasourcePluginServer(s *grpc.Server, srv DatasourcePluginServer) {
|
|
|
|
|
+ s.RegisterService(&_DatasourcePlugin_serviceDesc, srv)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func _TsdbPlugin_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
- in := new(TsdbQuery)
|
|
|
|
|
|
|
+func _DatasourcePlugin_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
|
|
|
+ in := new(DatasourceRequest)
|
|
|
if err := dec(in); err != nil {
|
|
if err := dec(in); err != nil {
|
|
|
return nil, err
|
|
return nil, err
|
|
|
}
|
|
}
|
|
|
if interceptor == nil {
|
|
if interceptor == nil {
|
|
|
- return srv.(TsdbPluginServer).Query(ctx, in)
|
|
|
|
|
|
|
+ return srv.(DatasourcePluginServer).Query(ctx, in)
|
|
|
}
|
|
}
|
|
|
info := &grpc.UnaryServerInfo{
|
|
info := &grpc.UnaryServerInfo{
|
|
|
Server: srv,
|
|
Server: srv,
|
|
|
- FullMethod: "/plugins.TsdbPlugin/Query",
|
|
|
|
|
|
|
+ FullMethod: "/models.DatasourcePlugin/Query",
|
|
|
}
|
|
}
|
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
|
- return srv.(TsdbPluginServer).Query(ctx, req.(*TsdbQuery))
|
|
|
|
|
|
|
+ return srv.(DatasourcePluginServer).Query(ctx, req.(*DatasourceRequest))
|
|
|
}
|
|
}
|
|
|
return interceptor(ctx, in, info, handler)
|
|
return interceptor(ctx, in, info, handler)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-var _TsdbPlugin_serviceDesc = grpc.ServiceDesc{
|
|
|
|
|
- ServiceName: "plugins.TsdbPlugin",
|
|
|
|
|
- HandlerType: (*TsdbPluginServer)(nil),
|
|
|
|
|
|
|
+var _DatasourcePlugin_serviceDesc = grpc.ServiceDesc{
|
|
|
|
|
+ ServiceName: "models.DatasourcePlugin",
|
|
|
|
|
+ HandlerType: (*DatasourcePluginServer)(nil),
|
|
|
Methods: []grpc.MethodDesc{
|
|
Methods: []grpc.MethodDesc{
|
|
|
{
|
|
{
|
|
|
MethodName: "Query",
|
|
MethodName: "Query",
|
|
|
- Handler: _TsdbPlugin_Query_Handler,
|
|
|
|
|
|
|
+ Handler: _DatasourcePlugin_Query_Handler,
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
Streams: []grpc.StreamDesc{},
|
|
Streams: []grpc.StreamDesc{},
|
|
|
- Metadata: "tsdb_plugin.proto",
|
|
|
|
|
|
|
+ Metadata: "datasource.proto",
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-func init() { proto1.RegisterFile("tsdb_plugin.proto", fileDescriptor0) }
|
|
|
|
|
|
|
+func init() { proto.RegisterFile("datasource.proto", fileDescriptor0) }
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
|
var fileDescriptor0 = []byte{
|
|
|
- // 811 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x55, 0x5d, 0x8f, 0x1b, 0x35,
|
|
|
|
|
- 0x14, 0x65, 0xbe, 0x92, 0xcc, 0x0d, 0x0d, 0xa9, 0xa9, 0x20, 0x5a, 0x01, 0x5a, 0x46, 0x50, 0x05,
|
|
|
|
|
- 0x90, 0x22, 0x08, 0xa5, 0x45, 0x85, 0xa7, 0xd0, 0x08, 0xa5, 0x84, 0xdd, 0xc5, 0x3b, 0x45, 0x2a,
|
|
|
|
|
- 0x0f, 0x54, 0x93, 0x8c, 0x13, 0x86, 0xce, 0x8c, 0x83, 0xed, 0xd9, 0x10, 0xf1, 0xc4, 0x3f, 0xe1,
|
|
|
|
|
- 0x99, 0x67, 0x7e, 0x00, 0x3f, 0xad, 0xf2, 0x1d, 0xcf, 0x47, 0xd2, 0x7d, 0x9a, 0xb9, 0xe7, 0x1c,
|
|
|
|
|
- 0x5f, 0x5f, 0x5f, 0x1f, 0xdb, 0x70, 0x57, 0xc9, 0x78, 0xf5, 0x62, 0x97, 0x16, 0xdb, 0x24, 0x9f,
|
|
|
|
|
- 0xec, 0x04, 0x57, 0x9c, 0x74, 0xcb, 0x48, 0x06, 0xff, 0x58, 0xe0, 0x87, 0x32, 0x5e, 0xfd, 0x54,
|
|
|
|
|
- 0x30, 0x71, 0x20, 0x9f, 0x83, 0xaf, 0x92, 0x8c, 0xd1, 0x28, 0xdf, 0xb2, 0x91, 0x75, 0x6e, 0x8d,
|
|
|
|
|
- 0xfb, 0x53, 0x32, 0x31, 0xd2, 0x49, 0x58, 0x31, 0xb4, 0x11, 0x91, 0x47, 0x00, 0x71, 0xa4, 0x22,
|
|
|
|
|
- 0xc9, 0x0b, 0xb1, 0x66, 0x23, 0x1b, 0x87, 0xbc, 0x5b, 0x0f, 0x79, 0x52, 0x53, 0x8b, 0x7c, 0xc3,
|
|
|
|
|
- 0x69, 0x4b, 0x4a, 0xc6, 0xd0, 0xfd, 0xa3, 0x60, 0x22, 0x61, 0x72, 0xe4, 0x9c, 0x3b, 0xe3, 0xfe,
|
|
|
|
|
- 0x74, 0x50, 0x8f, 0xc2, 0x5a, 0x68, 0x45, 0x07, 0x7f, 0x5b, 0xe0, 0x95, 0xe5, 0xdd, 0x03, 0x4f,
|
|
|
|
|
- 0xb0, 0xcd, 0x22, 0xc6, 0xd2, 0x7c, 0x5a, 0x06, 0xe4, 0x23, 0xb8, 0x93, 0x45, 0x7f, 0xea, 0xa9,
|
|
|
|
|
- 0xae, 0x78, 0x92, 0x2b, 0x89, 0x55, 0x38, 0xf4, 0x18, 0x24, 0x1f, 0x00, 0x24, 0xb9, 0x62, 0xe2,
|
|
|
|
|
- 0x26, 0x4a, 0x7f, 0xd4, 0x53, 0x6a, 0x49, 0x0b, 0x21, 0xef, 0x81, 0x9f, 0xf1, 0x98, 0xa5, 0x4f,
|
|
|
|
|
- 0x25, 0xcf, 0x47, 0x2e, 0xe6, 0x6f, 0x80, 0xe0, 0x2f, 0xf0, 0xeb, 0xe5, 0x93, 0x11, 0x74, 0x37,
|
|
|
|
|
- 0x82, 0x67, 0x34, 0xda, 0x9b, 0x42, 0xaa, 0x50, 0x17, 0xa8, 0xb8, 0xc6, 0xed, 0xb2, 0x40, 0x0c,
|
|
|
|
|
- 0xc8, 0x39, 0xf4, 0xb5, 0x60, 0xbe, 0xe3, 0xeb, 0xdf, 0xea, 0xb9, 0xdb, 0x90, 0x9e, 0x5c, 0xf1,
|
|
|
|
|
- 0x8a, 0x77, 0x91, 0x6f, 0x80, 0xe0, 0x31, 0xf4, 0x28, 0x93, 0x3b, 0x9e, 0x4b, 0x46, 0x26, 0xd0,
|
|
|
|
|
- 0x15, 0x4c, 0x16, 0xa9, 0x92, 0x23, 0x0b, 0xdb, 0x76, 0xef, 0xa4, 0x6d, 0x48, 0xd2, 0x4a, 0x14,
|
|
|
|
|
- 0xfc, 0x6b, 0x41, 0xbf, 0x45, 0xe8, 0x0a, 0x99, 0x10, 0x5c, 0x54, 0x2d, 0xc4, 0xa0, 0x69, 0xac,
|
|
|
|
|
- 0xdd, 0x6e, 0xec, 0x19, 0xf4, 0x32, 0xa6, 0x22, 0xec, 0x88, 0x83, 0x44, 0x1d, 0x93, 0xcf, 0xa0,
|
|
|
|
|
- 0x23, 0xcb, 0xdd, 0x73, 0xb1, 0x8c, 0xb7, 0x8f, 0x6c, 0x72, 0x8d, 0x14, 0x35, 0x12, 0x72, 0x1f,
|
|
|
|
|
- 0x3a, 0x2a, 0x5a, 0xa5, 0x4c, 0x8e, 0xbc, 0x93, 0xad, 0x0e, 0x35, 0x4c, 0x0d, 0x1b, 0xfc, 0x0a,
|
|
|
|
|
- 0x1e, 0x02, 0x7a, 0x95, 0x6b, 0x9e, 0x16, 0x59, 0xfe, 0xfa, 0x2a, 0x51, 0xf0, 0x1d, 0x92, 0xb4,
|
|
|
|
|
- 0x12, 0x91, 0x8f, 0xc1, 0x15, 0x7c, 0xaf, 0x77, 0x5e, 0x8b, 0xef, 0x9e, 0xa4, 0xe7, 0x7b, 0x8a,
|
|
|
|
|
- 0x74, 0xf0, 0x21, 0xf4, 0x5b, 0xc3, 0x09, 0x01, 0x37, 0x8f, 0x32, 0x66, 0x5a, 0x81, 0xff, 0xc1,
|
|
|
|
|
- 0x57, 0xd0, 0xab, 0x06, 0x91, 0x4f, 0xa0, 0x73, 0x13, 0xa5, 0x05, 0xab, 0x8a, 0x68, 0xf2, 0x52,
|
|
|
|
|
- 0xbe, 0xff, 0x59, 0x33, 0xd4, 0x08, 0x82, 0xff, 0x6d, 0xe8, 0x55, 0x20, 0xf9, 0x14, 0xdc, 0x97,
|
|
|
|
|
- 0x49, 0x5e, 0xba, 0x74, 0x30, 0x7d, 0xe7, 0xb5, 0x51, 0x93, 0x1f, 0x92, 0x3c, 0xa6, 0xa8, 0xd1,
|
|
|
|
|
- 0xde, 0x88, 0x79, 0xb1, 0x4a, 0x19, 0x32, 0xd8, 0x7f, 0x8b, 0xb6, 0x21, 0x63, 0xdc, 0x87, 0x0f,
|
|
|
|
|
- 0x4a, 0x41, 0x63, 0x5c, 0x83, 0x68, 0xef, 0xac, 0x38, 0x4f, 0x4b, 0x5a, 0x7b, 0xa7, 0x47, 0x1b,
|
|
|
|
|
- 0x40, 0xe7, 0x97, 0x4a, 0x24, 0xf9, 0xb6, 0xe4, 0x3d, 0x5c, 0x6a, 0x1b, 0xd2, 0xf9, 0x57, 0x07,
|
|
|
|
|
- 0xc5, 0x64, 0x29, 0xe8, 0x9c, 0x5b, 0xe3, 0x37, 0x69, 0x0b, 0x09, 0x36, 0xe0, 0xea, 0x7a, 0xc9,
|
|
|
|
|
- 0x1d, 0xf0, 0xc3, 0xe7, 0x57, 0xf3, 0x17, 0x17, 0xcf, 0x96, 0xcb, 0xe1, 0x1b, 0xe4, 0x2d, 0xe8,
|
|
|
|
|
- 0x63, 0xf8, 0xe4, 0xf2, 0xd9, 0x6c, 0x39, 0x1f, 0x5a, 0x64, 0x00, 0x80, 0xc0, 0xe2, 0x22, 0x7c,
|
|
|
|
|
- 0xf8, 0x60, 0x68, 0xd7, 0xfa, 0xd9, 0xe5, 0xe5, 0x72, 0xe8, 0xd4, 0xfa, 0xeb, 0x90, 0x2e, 0x2e,
|
|
|
|
|
- 0xbe, 0x1f, 0xba, 0xb5, 0x7e, 0xf6, 0x3c, 0x9c, 0x5f, 0x0f, 0xbd, 0xe0, 0x3f, 0x0b, 0x06, 0xc7,
|
|
|
|
|
- 0xf7, 0x05, 0x19, 0x80, 0x9d, 0x94, 0x6d, 0x74, 0xa8, 0x9d, 0xc4, 0xda, 0xa6, 0x5c, 0x6c, 0x8d,
|
|
|
|
|
- 0x4d, 0x1d, 0x5a, 0x06, 0xf5, 0x36, 0x3a, 0xcd, 0x36, 0x6a, 0x4c, 0x1d, 0x76, 0xcc, 0x1c, 0x64,
|
|
|
|
|
- 0xfc, 0x27, 0x43, 0x70, 0x0a, 0x91, 0x9a, 0x16, 0xe8, 0x5f, 0x6d, 0xf0, 0xdf, 0x25, 0xcf, 0xf5,
|
|
|
|
|
- 0xac, 0xb8, 0x70, 0x9f, 0xd6, 0x31, 0xb9, 0x0f, 0x03, 0xc9, 0xd6, 0x85, 0x60, 0x4f, 0x2b, 0x45,
|
|
|
|
|
- 0x17, 0x15, 0x27, 0xa8, 0x2e, 0x1b, 0x1a, 0xcb, 0xdf, 0xe6, 0x29, 0xf2, 0x05, 0xb8, 0x2a, 0xda,
|
|
|
|
|
- 0x56, 0xee, 0x7c, 0xff, 0x96, 0x93, 0x32, 0x09, 0xa3, 0xad, 0x9c, 0xe7, 0x4a, 0x1c, 0x28, 0x4a,
|
|
|
|
|
- 0xf5, 0x89, 0xd9, 0x95, 0x97, 0xd9, 0xe9, 0xe5, 0x88, 0xd7, 0x19, 0x35, 0xec, 0xd9, 0x23, 0xf0,
|
|
|
|
|
- 0xeb, 0xa1, 0x7a, 0x81, 0x2f, 0xd9, 0xc1, 0x4c, 0xad, 0x7f, 0x75, 0xc3, 0x6e, 0x6a, 0x5f, 0xf9,
|
|
|
|
|
- 0xb4, 0x0c, 0x1e, 0xdb, 0x5f, 0x5b, 0xc1, 0x37, 0xe0, 0x61, 0x26, 0xbc, 0x7a, 0x92, 0x8c, 0x49,
|
|
|
|
|
- 0x15, 0x65, 0x3b, 0xd3, 0xea, 0x06, 0x38, 0x4e, 0x60, 0x99, 0x04, 0xd3, 0x6f, 0x01, 0xf4, 0x9b,
|
|
|
|
|
- 0x71, 0x85, 0x25, 0x91, 0x49, 0x75, 0x3d, 0xb7, 0x9e, 0x8a, 0xea, 0x45, 0x39, 0x6b, 0x9d, 0x19,
|
|
|
|
|
- 0x73, 0x85, 0xcd, 0xba, 0xbf, 0x78, 0xf8, 0x08, 0xad, 0x3a, 0xf8, 0xf9, 0xf2, 0x55, 0x00, 0x00,
|
|
|
|
|
- 0x00, 0xff, 0xff, 0x58, 0xae, 0x00, 0xd6, 0xa0, 0x06, 0x00, 0x00,
|
|
|
|
|
|
|
+ // 808 bytes of a gzipped FileDescriptorProto
|
|
|
|
|
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x55, 0x5b, 0x6f, 0xf3, 0x44,
|
|
|
|
|
+ 0x10, 0xc5, 0x97, 0x5c, 0x3c, 0xf9, 0x1a, 0xdc, 0xe5, 0xa2, 0x10, 0x55, 0x28, 0x58, 0x05, 0x02,
|
|
|
|
|
+ 0x12, 0x01, 0x85, 0xaa, 0x20, 0x90, 0x78, 0x48, 0x1b, 0xa1, 0x94, 0xd0, 0x96, 0x6d, 0x8a, 0x54,
|
|
|
|
|
+ 0x84, 0x84, 0x9c, 0x64, 0x13, 0x4c, 0x6d, 0x6f, 0xba, 0xbb, 0x6e, 0x88, 0x78, 0xe2, 0xc7, 0x20,
|
|
|
|
|
+ 0xf1, 0x8c, 0x78, 0xe7, 0xaf, 0xa1, 0x1d, 0x5f, 0xd3, 0xf6, 0x6d, 0xe7, 0x9c, 0x33, 0x97, 0x9d,
|
|
|
|
|
+ 0x1d, 0x8f, 0xc1, 0x5d, 0xfa, 0xca, 0x97, 0x3c, 0x11, 0x0b, 0x36, 0xd8, 0x08, 0xae, 0x38, 0xa9,
|
|
|
|
|
+ 0x47, 0x7c, 0xc9, 0x42, 0xe9, 0xfd, 0x65, 0xc0, 0xe1, 0x79, 0x41, 0x52, 0xf6, 0x90, 0x30, 0xa9,
|
|
|
|
|
+ 0xc8, 0xa7, 0xe0, 0xa8, 0x20, 0x62, 0xd4, 0x8f, 0xd7, 0xac, 0x63, 0xf4, 0x8c, 0x7e, 0x6b, 0x78,
|
|
|
|
|
+ 0x38, 0x48, 0x3d, 0x06, 0xb3, 0x9c, 0xa0, 0xa5, 0x86, 0x9c, 0x02, 0x94, 0x29, 0x3a, 0x26, 0x7a,
|
|
|
|
|
+ 0xbc, 0x9d, 0x7b, 0x94, 0xf1, 0x27, 0xf1, 0x8a, 0xd3, 0x8a, 0x92, 0x7c, 0x08, 0x8d, 0x87, 0x84,
|
|
|
|
|
+ 0x89, 0x80, 0xc9, 0x8e, 0xd5, 0xb3, 0xfa, 0xad, 0xe1, 0x41, 0xee, 0xf4, 0x43, 0xc2, 0xc4, 0x8e,
|
|
|
|
|
+ 0xe6, 0xac, 0xf7, 0xa7, 0x01, 0x35, 0x84, 0xc8, 0x9b, 0x50, 0x13, 0x6c, 0x35, 0x59, 0x62, 0x5d,
|
|
|
|
|
+ 0x0e, 0x4d, 0x0d, 0x72, 0x0c, 0x07, 0x91, 0xff, 0xbb, 0xce, 0x74, 0xcd, 0x83, 0x58, 0x49, 0xac,
|
|
|
|
|
+ 0xc1, 0xa2, 0xfb, 0x20, 0x79, 0x17, 0x20, 0x88, 0x15, 0x13, 0x8f, 0x7e, 0xf8, 0xbd, 0xce, 0xa8,
|
|
|
|
|
+ 0x25, 0x15, 0x84, 0x1c, 0x81, 0x83, 0xe9, 0x2f, 0x24, 0x8f, 0x3b, 0x36, 0xc6, 0x2f, 0x01, 0xef,
|
|
|
|
|
+ 0x0f, 0x70, 0x8a, 0xcb, 0x93, 0x0e, 0x34, 0x56, 0x82, 0x47, 0xd4, 0xdf, 0x66, 0x85, 0xe4, 0xa6,
|
|
|
|
|
+ 0x2e, 0x50, 0x71, 0x8d, 0x9b, 0x69, 0x81, 0x68, 0x90, 0x1e, 0xb4, 0xb4, 0x60, 0xbc, 0xe1, 0x8b,
|
|
|
|
|
+ 0x5f, 0x8b, 0xdc, 0x55, 0x48, 0x27, 0x57, 0x3c, 0xe7, 0x6d, 0xe4, 0x4b, 0xc0, 0x3b, 0x03, 0x52,
|
|
|
|
|
+ 0x7d, 0x27, 0xb9, 0xe1, 0xb1, 0x64, 0xe4, 0x13, 0x68, 0x08, 0x26, 0x93, 0x50, 0xc9, 0x8e, 0x81,
|
|
|
|
|
+ 0xfd, 0x7b, 0x63, 0xbf, 0x7f, 0xc8, 0xd1, 0x5c, 0xe3, 0xfd, 0x6d, 0x40, 0xab, 0x42, 0xe8, 0x52,
|
|
|
|
|
+ 0x99, 0x10, 0x5c, 0xe4, 0xbd, 0x44, 0xa3, 0xec, 0xb0, 0x59, 0xed, 0x70, 0x17, 0x9a, 0x11, 0x53,
|
|
|
|
|
+ 0x3e, 0xb6, 0xc6, 0x42, 0xa2, 0xb0, 0xc9, 0xc7, 0x50, 0x97, 0xe9, 0x2b, 0xda, 0x58, 0x05, 0xa9,
|
|
|
|
|
+ 0x0e, 0xcb, 0x0d, 0x32, 0x34, 0x53, 0x90, 0xf7, 0xa1, 0xae, 0xfc, 0x79, 0xc8, 0x64, 0xa7, 0xb6,
|
|
|
|
|
+ 0xff, 0xe2, 0x33, 0x8d, 0xd2, 0x8c, 0xf4, 0x7e, 0x86, 0x1a, 0x02, 0xfa, 0x8a, 0x0b, 0x1e, 0x26,
|
|
|
|
|
+ 0x51, 0xfc, 0xec, 0x8a, 0xc8, 0x9f, 0x21, 0x47, 0x73, 0x0d, 0x39, 0x06, 0x5b, 0xf0, 0xad, 0x7e,
|
|
|
|
|
+ 0x7f, 0xad, 0x75, 0xf7, 0x83, 0xf3, 0x2d, 0x45, 0xd6, 0x7b, 0x0f, 0x5a, 0x15, 0x6f, 0x42, 0xc0,
|
|
|
|
|
+ 0x8e, 0xfd, 0x88, 0x65, 0x6d, 0xc0, 0xb3, 0x77, 0x02, 0xcd, 0xdc, 0x89, 0xf4, 0xa1, 0xfe, 0xe8,
|
|
|
|
|
+ 0x87, 0x09, 0xcb, 0x4b, 0x28, 0xc2, 0x52, 0xbe, 0xfd, 0x51, 0x13, 0x34, 0xe3, 0xbd, 0xff, 0x4c,
|
|
|
|
|
+ 0x68, 0xe6, 0x20, 0xf9, 0x08, 0xec, 0xfb, 0x20, 0x4e, 0x27, 0xb5, 0x3d, 0x7c, 0xeb, 0xa9, 0xd3,
|
|
|
|
|
+ 0xe0, 0xbb, 0x20, 0x5e, 0x52, 0x94, 0xe8, 0xf1, 0x58, 0xf2, 0x64, 0x1e, 0x32, 0x64, 0xb0, 0xf3,
|
|
|
|
|
+ 0x06, 0xad, 0x42, 0xd9, 0xec, 0x9e, 0x9e, 0xa4, 0x82, 0x72, 0x76, 0x33, 0x44, 0x8f, 0xcf, 0x9c,
|
|
|
|
|
+ 0xf3, 0x30, 0xa5, 0xf5, 0xf8, 0x34, 0x69, 0x09, 0xe8, 0xf8, 0x52, 0x89, 0x20, 0x5e, 0xa7, 0x7c,
|
|
|
|
|
+ 0x0d, 0x2f, 0x5a, 0x85, 0x74, 0xfc, 0xf9, 0x4e, 0x31, 0x99, 0x0a, 0xea, 0x3d, 0xa3, 0xff, 0x8a,
|
|
|
|
|
+ 0x56, 0x10, 0x6f, 0x05, 0xb6, 0xae, 0x97, 0x1c, 0x80, 0x33, 0xbb, 0xbb, 0x1e, 0xff, 0x72, 0x79,
|
|
|
|
|
+ 0x3b, 0x9d, 0xba, 0xaf, 0x91, 0xd7, 0xa1, 0x85, 0xe6, 0xf9, 0xd5, 0xed, 0x68, 0x3a, 0x76, 0x0d,
|
|
|
|
|
+ 0xd2, 0x06, 0x40, 0x60, 0x72, 0x39, 0x3b, 0x3d, 0x71, 0xcd, 0x42, 0x3f, 0xba, 0xba, 0x9a, 0xba,
|
|
|
|
|
+ 0x56, 0xa1, 0xbf, 0x99, 0xd1, 0xc9, 0xe5, 0xb7, 0xae, 0x5d, 0xe8, 0x47, 0x77, 0xb3, 0xf1, 0x8d,
|
|
|
|
|
+ 0x5b, 0xf3, 0xfe, 0x35, 0xa0, 0xbd, 0xbf, 0x31, 0x48, 0x1b, 0xcc, 0x20, 0xed, 0xa2, 0x45, 0xcd,
|
|
|
|
|
+ 0x60, 0xa9, 0x07, 0x94, 0x8b, 0x75, 0x36, 0xa0, 0x16, 0x4d, 0x8d, 0xe2, 0x11, 0xad, 0xf2, 0x11,
|
|
|
|
|
+ 0x35, 0xa6, 0x76, 0x1b, 0x96, 0x7d, 0xcb, 0x78, 0x26, 0x2e, 0x58, 0x89, 0x08, 0xb3, 0x16, 0xe8,
|
|
|
|
|
+ 0xa3, 0x1e, 0xed, 0xdf, 0x24, 0x8f, 0x75, 0x56, 0xbc, 0xb8, 0x43, 0x0b, 0x9b, 0x7c, 0x00, 0x6d,
|
|
|
|
|
+ 0xc9, 0x16, 0x89, 0x60, 0x17, 0xb9, 0xa2, 0x81, 0x8a, 0x27, 0xa8, 0xf7, 0x8f, 0x01, 0x50, 0x4e,
|
|
|
|
|
+ 0xfb, 0x4b, 0x13, 0x45, 0x3e, 0x03, 0x5b, 0xf9, 0xeb, 0x7c, 0x34, 0x8f, 0x9e, 0x7f, 0x23, 0x83,
|
|
|
|
|
+ 0x99, 0xbf, 0x96, 0xe3, 0x58, 0x89, 0x1d, 0x45, 0xa5, 0xfe, 0x56, 0x36, 0xe9, 0x3a, 0x7b, 0xb2,
|
|
|
|
|
+ 0x1d, 0x71, 0x9f, 0xd1, 0x8c, 0xec, 0x7e, 0x01, 0x4e, 0xe1, 0xa9, 0xaf, 0x77, 0xcf, 0x76, 0x59,
|
|
|
|
|
+ 0x62, 0x7d, 0xd4, 0xed, 0x7a, 0x2c, 0xa6, 0xca, 0xa1, 0xa9, 0xf1, 0x95, 0xf9, 0xa5, 0xe1, 0x7d,
|
|
|
|
|
+ 0x0d, 0x35, 0x8c, 0x84, 0xbb, 0x27, 0x88, 0x98, 0x54, 0x7e, 0xb4, 0xc9, 0x1a, 0x5d, 0x02, 0xfb,
|
|
|
|
|
+ 0x01, 0x8c, 0x2c, 0xc0, 0x90, 0x82, 0x5b, 0xbe, 0xd3, 0x75, 0x98, 0xac, 0x83, 0x98, 0x7c, 0x93,
|
|
|
|
|
+ 0x6f, 0xe9, 0x77, 0x9e, 0x2f, 0xff, 0xec, 0xe7, 0xd2, 0xed, 0xbe, 0x44, 0xa5, 0xfb, 0x6c, 0xf4,
|
|
|
|
|
+ 0xea, 0xa7, 0xca, 0xdf, 0x61, 0x5e, 0xc7, 0x7f, 0xd5, 0xe7, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff,
|
|
|
|
|
+ 0x66, 0x11, 0x2d, 0x5a, 0xbf, 0x06, 0x00, 0x00,
|
|
|
}
|
|
}
|