2016-08-29 09:48:20 -07:00
|
|
|
// Code generated by protoc-gen-go.
|
|
|
|
// source: remote.proto
|
|
|
|
// DO NOT EDIT!
|
|
|
|
|
|
|
|
/*
|
|
|
|
Package remote is a generated protocol buffer package.
|
|
|
|
|
|
|
|
It is generated from these files:
|
|
|
|
remote.proto
|
|
|
|
|
|
|
|
It has these top-level messages:
|
|
|
|
Sample
|
|
|
|
LabelPair
|
|
|
|
TimeSeries
|
|
|
|
WriteRequest
|
2017-03-10 03:53:27 -08:00
|
|
|
ReadRequest
|
|
|
|
ReadResponse
|
|
|
|
Query
|
|
|
|
LabelMatcher
|
2017-04-06 07:28:42 -07:00
|
|
|
QueryResult
|
2016-08-29 09:48:20 -07:00
|
|
|
*/
|
|
|
|
package remote
|
|
|
|
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
|
|
import fmt "fmt"
|
|
|
|
import math "math"
|
|
|
|
|
|
|
|
// 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.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
|
2017-03-10 03:53:27 -08:00
|
|
|
type MatchType int32
|
|
|
|
|
|
|
|
const (
|
|
|
|
MatchType_EQUAL MatchType = 0
|
|
|
|
MatchType_NOT_EQUAL MatchType = 1
|
|
|
|
MatchType_REGEX_MATCH MatchType = 2
|
|
|
|
MatchType_REGEX_NO_MATCH MatchType = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
var MatchType_name = map[int32]string{
|
|
|
|
0: "EQUAL",
|
|
|
|
1: "NOT_EQUAL",
|
|
|
|
2: "REGEX_MATCH",
|
|
|
|
3: "REGEX_NO_MATCH",
|
|
|
|
}
|
|
|
|
var MatchType_value = map[string]int32{
|
|
|
|
"EQUAL": 0,
|
|
|
|
"NOT_EQUAL": 1,
|
|
|
|
"REGEX_MATCH": 2,
|
|
|
|
"REGEX_NO_MATCH": 3,
|
|
|
|
}
|
|
|
|
|
|
|
|
func (x MatchType) String() string {
|
|
|
|
return proto.EnumName(MatchType_name, int32(x))
|
|
|
|
}
|
|
|
|
func (MatchType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
2016-08-29 09:48:20 -07:00
|
|
|
type Sample struct {
|
|
|
|
Value float64 `protobuf:"fixed64,1,opt,name=value" json:"value,omitempty"`
|
|
|
|
TimestampMs int64 `protobuf:"varint,2,opt,name=timestamp_ms,json=timestampMs" json:"timestamp_ms,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Sample) Reset() { *m = Sample{} }
|
|
|
|
func (m *Sample) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Sample) ProtoMessage() {}
|
|
|
|
func (*Sample) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
|
|
|
|
2017-04-06 07:28:42 -07:00
|
|
|
func (m *Sample) GetValue() float64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.Value
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Sample) GetTimestampMs() int64 {
|
|
|
|
if m != nil {
|
|
|
|
return m.TimestampMs
|
|
|
|
}
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2016-08-29 09:48:20 -07:00
|
|
|
type LabelPair struct {
|
|
|
|
Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
|
|
|
|
Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelPair) Reset() { *m = LabelPair{} }
|
|
|
|
func (m *LabelPair) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LabelPair) ProtoMessage() {}
|
|
|
|
func (*LabelPair) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
|
|
|
|
2017-04-06 07:28:42 -07:00
|
|
|
func (m *LabelPair) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelPair) GetValue() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Value
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2016-08-29 09:48:20 -07:00
|
|
|
type TimeSeries struct {
|
|
|
|
Labels []*LabelPair `protobuf:"bytes,1,rep,name=labels" json:"labels,omitempty"`
|
|
|
|
// Sorted by time, oldest sample first.
|
|
|
|
Samples []*Sample `protobuf:"bytes,2,rep,name=samples" json:"samples,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TimeSeries) Reset() { *m = TimeSeries{} }
|
|
|
|
func (m *TimeSeries) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*TimeSeries) ProtoMessage() {}
|
|
|
|
func (*TimeSeries) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
|
|
|
|
|
|
|
|
func (m *TimeSeries) GetLabels() []*LabelPair {
|
|
|
|
if m != nil {
|
|
|
|
return m.Labels
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *TimeSeries) GetSamples() []*Sample {
|
|
|
|
if m != nil {
|
|
|
|
return m.Samples
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type WriteRequest struct {
|
|
|
|
Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries" json:"timeseries,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *WriteRequest) Reset() { *m = WriteRequest{} }
|
|
|
|
func (m *WriteRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*WriteRequest) ProtoMessage() {}
|
|
|
|
func (*WriteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
|
|
|
|
|
|
|
|
func (m *WriteRequest) GetTimeseries() []*TimeSeries {
|
|
|
|
if m != nil {
|
|
|
|
return m.Timeseries
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-10 03:53:27 -08:00
|
|
|
type ReadRequest struct {
|
|
|
|
Queries []*Query `protobuf:"bytes,1,rep,name=queries" json:"queries,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
|
|
|
|
|
|
|
|
func (m *ReadRequest) GetQueries() []*Query {
|
|
|
|
if m != nil {
|
|
|
|
return m.Queries
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ReadResponse struct {
|
2017-04-06 07:28:42 -07:00
|
|
|
// In same order as the request's queries.
|
|
|
|
Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"`
|
2017-03-10 03:53:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} }
|
|
|
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*ReadResponse) ProtoMessage() {}
|
|
|
|
func (*ReadResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
|
|
|
|
|
2017-04-06 07:28:42 -07:00
|
|
|
func (m *ReadResponse) GetResults() []*QueryResult {
|
2017-03-10 03:53:27 -08:00
|
|
|
if m != nil {
|
2017-04-06 07:28:42 -07:00
|
|
|
return m.Results
|
2017-03-10 03:53:27 -08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type Query struct {
|
|
|
|
StartTimestampMs int64 `protobuf:"varint,1,opt,name=start_timestamp_ms,json=startTimestampMs" json:"start_timestamp_ms,omitempty"`
|
|
|
|
EndTimestampMs int64 `protobuf:"varint,2,opt,name=end_timestamp_ms,json=endTimestampMs" json:"end_timestamp_ms,omitempty"`
|
|
|
|
Matchers []*LabelMatcher `protobuf:"bytes,3,rep,name=matchers" json:"matchers,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Query) Reset() { *m = Query{} }
|
|
|
|
func (m *Query) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*Query) ProtoMessage() {}
|
|
|
|
func (*Query) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
|
|
|
|
|
2017-04-06 07:28:42 -07:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2017-03-10 03:53:27 -08:00
|
|
|
func (m *Query) GetMatchers() []*LabelMatcher {
|
|
|
|
if m != nil {
|
|
|
|
return m.Matchers
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type LabelMatcher struct {
|
|
|
|
Type MatchType `protobuf:"varint,1,opt,name=type,enum=remote.MatchType" json:"type,omitempty"`
|
|
|
|
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
|
|
|
|
Value string `protobuf:"bytes,3,opt,name=value" json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelMatcher) Reset() { *m = LabelMatcher{} }
|
|
|
|
func (m *LabelMatcher) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*LabelMatcher) ProtoMessage() {}
|
|
|
|
func (*LabelMatcher) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
|
|
|
|
|
2017-04-06 07:28:42 -07:00
|
|
|
func (m *LabelMatcher) GetType() MatchType {
|
|
|
|
if m != nil {
|
|
|
|
return m.Type
|
|
|
|
}
|
|
|
|
return MatchType_EQUAL
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelMatcher) GetName() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Name
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *LabelMatcher) GetValue() string {
|
|
|
|
if m != nil {
|
|
|
|
return m.Value
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryResult struct {
|
|
|
|
Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries" json:"timeseries,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *QueryResult) Reset() { *m = QueryResult{} }
|
|
|
|
func (m *QueryResult) String() string { return proto.CompactTextString(m) }
|
|
|
|
func (*QueryResult) ProtoMessage() {}
|
|
|
|
func (*QueryResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
|
|
|
|
|
|
|
|
func (m *QueryResult) GetTimeseries() []*TimeSeries {
|
|
|
|
if m != nil {
|
|
|
|
return m.Timeseries
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-29 09:48:20 -07:00
|
|
|
func init() {
|
|
|
|
proto.RegisterType((*Sample)(nil), "remote.Sample")
|
|
|
|
proto.RegisterType((*LabelPair)(nil), "remote.LabelPair")
|
|
|
|
proto.RegisterType((*TimeSeries)(nil), "remote.TimeSeries")
|
|
|
|
proto.RegisterType((*WriteRequest)(nil), "remote.WriteRequest")
|
2017-03-10 03:53:27 -08:00
|
|
|
proto.RegisterType((*ReadRequest)(nil), "remote.ReadRequest")
|
|
|
|
proto.RegisterType((*ReadResponse)(nil), "remote.ReadResponse")
|
|
|
|
proto.RegisterType((*Query)(nil), "remote.Query")
|
|
|
|
proto.RegisterType((*LabelMatcher)(nil), "remote.LabelMatcher")
|
2017-04-06 07:28:42 -07:00
|
|
|
proto.RegisterType((*QueryResult)(nil), "remote.QueryResult")
|
2017-03-10 03:53:27 -08:00
|
|
|
proto.RegisterEnum("remote.MatchType", MatchType_name, MatchType_value)
|
2016-08-29 09:48:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() { proto.RegisterFile("remote.proto", fileDescriptor0) }
|
|
|
|
|
|
|
|
var fileDescriptor0 = []byte{
|
2017-04-06 07:28:42 -07:00
|
|
|
// 424 bytes of a gzipped FileDescriptorProto
|
|
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xc1, 0x6e, 0xd3, 0x40,
|
|
|
|
0x10, 0x65, 0xe3, 0x26, 0xc1, 0x63, 0x37, 0x84, 0xa1, 0x87, 0x1c, 0xc3, 0x4a, 0x08, 0x83, 0xa0,
|
|
|
|
0x42, 0x45, 0x70, 0xe3, 0x10, 0x50, 0x04, 0x42, 0x4d, 0x4b, 0xb7, 0x46, 0x70, 0xb3, 0xb6, 0x64,
|
|
|
|
0x24, 0x2c, 0x79, 0x13, 0x77, 0x77, 0x8d, 0x94, 0xcf, 0xe0, 0x8f, 0x51, 0x76, 0xb3, 0x8e, 0x23,
|
|
|
|
0xe5, 0xc4, 0x2d, 0x33, 0xef, 0xbd, 0x99, 0x97, 0x7d, 0x63, 0x48, 0x35, 0xa9, 0xb5, 0xa5, 0xf3,
|
|
|
|
0x5a, 0xaf, 0xed, 0x1a, 0x07, 0xbe, 0xe2, 0x33, 0x18, 0xdc, 0x4a, 0x55, 0x57, 0x84, 0x67, 0xd0,
|
|
|
|
0xff, 0x23, 0xab, 0x86, 0x26, 0x6c, 0xca, 0x32, 0x26, 0x7c, 0x81, 0x4f, 0x21, 0xb5, 0xa5, 0x22,
|
|
|
|
0x63, 0xa5, 0xaa, 0x0b, 0x65, 0x26, 0xbd, 0x29, 0xcb, 0x22, 0x91, 0xb4, 0xbd, 0x85, 0xe1, 0xef,
|
|
|
|
0x20, 0xbe, 0x94, 0x77, 0x54, 0x7d, 0x93, 0xa5, 0x46, 0x84, 0x93, 0x95, 0x54, 0x7e, 0x48, 0x2c,
|
|
|
|
0xdc, 0xef, 0xfd, 0xe4, 0x9e, 0x6b, 0xfa, 0x82, 0x4b, 0x80, 0xbc, 0x54, 0x74, 0x4b, 0xba, 0x24,
|
|
|
|
0x83, 0x2f, 0x60, 0x50, 0x6d, 0x87, 0x98, 0x09, 0x9b, 0x46, 0x59, 0x72, 0xf1, 0xf8, 0x7c, 0x67,
|
|
|
|
0xb7, 0x1d, 0x2d, 0x76, 0x04, 0xcc, 0x60, 0x68, 0x9c, 0xe5, 0xad, 0x9b, 0x2d, 0x77, 0x14, 0xb8,
|
|
|
|
0xfe, 0x9f, 0x88, 0x00, 0xf3, 0x8f, 0x90, 0xfe, 0xd0, 0xa5, 0x25, 0x41, 0xf7, 0x0d, 0x19, 0x8b,
|
|
|
|
0x17, 0x00, 0xce, 0xb8, 0x5b, 0xb9, 0x5b, 0x84, 0x41, 0xbc, 0x37, 0x23, 0x3a, 0x2c, 0xfe, 0x1e,
|
|
|
|
0x12, 0x41, 0x72, 0x19, 0x46, 0x3c, 0x87, 0xe1, 0x7d, 0xd3, 0xd5, 0x9f, 0x06, 0xfd, 0x4d, 0x43,
|
|
|
|
0x7a, 0x23, 0x02, 0xca, 0x3f, 0x40, 0xea, 0x75, 0xa6, 0x5e, 0xaf, 0x0c, 0xe1, 0x6b, 0x18, 0x6a,
|
|
|
|
0x32, 0x4d, 0x65, 0x83, 0xf0, 0xc9, 0xa1, 0xd0, 0x61, 0x22, 0x70, 0xf8, 0x5f, 0x06, 0x7d, 0x07,
|
|
|
|
0xe0, 0x2b, 0x40, 0x63, 0xa5, 0xb6, 0xc5, 0x41, 0x0e, 0xcc, 0xe5, 0x30, 0x76, 0x48, 0xbe, 0x0f,
|
|
|
|
0x03, 0x33, 0x18, 0xd3, 0x6a, 0x59, 0x1c, 0xc9, 0x6c, 0x44, 0xab, 0x65, 0x97, 0xf9, 0x06, 0x1e,
|
|
|
|
0x2a, 0x69, 0x7f, 0xfd, 0x26, 0x6d, 0x26, 0x91, 0x73, 0x74, 0x76, 0xf0, 0xe6, 0x0b, 0x0f, 0x8a,
|
|
|
|
0x96, 0xc5, 0x0b, 0x48, 0xbb, 0x08, 0x3e, 0x83, 0x13, 0xbb, 0xa9, 0x7d, 0xd6, 0xa3, 0x7d, 0x62,
|
|
|
|
0x0e, 0xce, 0x37, 0x35, 0x09, 0x07, 0xb7, 0x27, 0xd1, 0x3b, 0x76, 0x12, 0x51, 0xf7, 0x24, 0x66,
|
|
|
|
0x90, 0x74, 0x1e, 0xe3, 0x7f, 0xe2, 0x7a, 0xf9, 0x15, 0xe2, 0x76, 0x3f, 0xc6, 0xd0, 0x9f, 0xdf,
|
|
|
|
0x7c, 0x9f, 0x5d, 0x8e, 0x1f, 0xe0, 0x29, 0xc4, 0x57, 0xd7, 0x79, 0xe1, 0x4b, 0x86, 0x8f, 0x20,
|
|
|
|
0x11, 0xf3, 0xcf, 0xf3, 0x9f, 0xc5, 0x62, 0x96, 0x7f, 0xfa, 0x32, 0xee, 0x21, 0xc2, 0xc8, 0x37,
|
|
|
|
0xae, 0xae, 0x77, 0xbd, 0xe8, 0x6e, 0xe0, 0x3e, 0x95, 0xb7, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff,
|
|
|
|
0x9b, 0x9e, 0x76, 0xb3, 0x3a, 0x03, 0x00, 0x00,
|
2016-08-29 09:48:20 -07:00
|
|
|
}
|