Documentation ¶
Index ¶
- Variables
- type Field
- func (*Field) Descriptor() ([]byte, []int)
- func (m *Field) GetName() []byte
- func (m *Field) GetType() int32
- func (m *Field) Marshal() (dAtA []byte, err error)
- func (m *Field) MarshalTo(dAtA []byte) (int, error)
- func (*Field) ProtoMessage()
- func (m *Field) Reset()
- func (m *Field) Size() (n int)
- func (m *Field) String() string
- func (m *Field) Unmarshal(dAtA []byte) error
- func (m *Field) XXX_DiscardUnknown()
- func (m *Field) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Field) XXX_Merge(src proto.Message)
- func (m *Field) XXX_Size() int
- func (m *Field) XXX_Unmarshal(b []byte) error
- type MeasurementFieldSet
- func (*MeasurementFieldSet) Descriptor() ([]byte, []int)
- func (m *MeasurementFieldSet) GetMeasurements() []*MeasurementFields
- func (m *MeasurementFieldSet) Marshal() (dAtA []byte, err error)
- func (m *MeasurementFieldSet) MarshalTo(dAtA []byte) (int, error)
- func (*MeasurementFieldSet) ProtoMessage()
- func (m *MeasurementFieldSet) Reset()
- func (m *MeasurementFieldSet) Size() (n int)
- func (m *MeasurementFieldSet) String() string
- func (m *MeasurementFieldSet) Unmarshal(dAtA []byte) error
- func (m *MeasurementFieldSet) XXX_DiscardUnknown()
- func (m *MeasurementFieldSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *MeasurementFieldSet) XXX_Merge(src proto.Message)
- func (m *MeasurementFieldSet) XXX_Size() int
- func (m *MeasurementFieldSet) XXX_Unmarshal(b []byte) error
- type MeasurementFields
- func (*MeasurementFields) Descriptor() ([]byte, []int)
- func (m *MeasurementFields) GetFields() []*Field
- func (m *MeasurementFields) GetName() []byte
- func (m *MeasurementFields) Marshal() (dAtA []byte, err error)
- func (m *MeasurementFields) MarshalTo(dAtA []byte) (int, error)
- func (*MeasurementFields) ProtoMessage()
- func (m *MeasurementFields) Reset()
- func (m *MeasurementFields) Size() (n int)
- func (m *MeasurementFields) String() string
- func (m *MeasurementFields) Unmarshal(dAtA []byte) error
- func (m *MeasurementFields) XXX_DiscardUnknown()
- func (m *MeasurementFields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *MeasurementFields) XXX_Merge(src proto.Message)
- func (m *MeasurementFields) XXX_Size() int
- func (m *MeasurementFields) XXX_Unmarshal(b []byte) error
- type Series
- func (*Series) Descriptor() ([]byte, []int)
- func (m *Series) GetKey() string
- func (m *Series) GetTags() []*Tag
- func (m *Series) Marshal() (dAtA []byte, err error)
- func (m *Series) MarshalTo(dAtA []byte) (int, error)
- func (*Series) ProtoMessage()
- func (m *Series) Reset()
- func (m *Series) Size() (n int)
- func (m *Series) String() string
- func (m *Series) Unmarshal(dAtA []byte) error
- func (m *Series) XXX_DiscardUnknown()
- func (m *Series) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Series) XXX_Merge(src proto.Message)
- func (m *Series) XXX_Size() int
- func (m *Series) XXX_Unmarshal(b []byte) error
- type Tag
- func (*Tag) Descriptor() ([]byte, []int)
- func (m *Tag) GetKey() string
- func (m *Tag) GetValue() string
- func (m *Tag) Marshal() (dAtA []byte, err error)
- func (m *Tag) MarshalTo(dAtA []byte) (int, error)
- func (*Tag) ProtoMessage()
- func (m *Tag) Reset()
- func (m *Tag) Size() (n int)
- func (m *Tag) String() string
- func (m *Tag) Unmarshal(dAtA []byte) error
- func (m *Tag) XXX_DiscardUnknown()
- func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
- func (dst *Tag) XXX_Merge(src proto.Message)
- func (m *Tag) XXX_Size() int
- func (m *Tag) XXX_Unmarshal(b []byte) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrInvalidLengthMeta = fmt.Errorf("proto: negative length found during unmarshaling") ErrIntOverflowMeta = fmt.Errorf("proto: integer overflow") )
Functions ¶
This section is empty.
Types ¶
type Field ¶
type Field struct { Name []byte `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` Type int32 `protobuf:"varint,2,opt,name=Type,proto3" json:"Type,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Field) Descriptor ¶ added in v1.0.0
func (*Field) ProtoMessage ¶
func (*Field) ProtoMessage()
func (*Field) XXX_DiscardUnknown ¶ added in v1.7.3
func (m *Field) XXX_DiscardUnknown()
func (*Field) XXX_Marshal ¶ added in v1.7.3
func (*Field) XXX_Unmarshal ¶ added in v1.7.3
type MeasurementFieldSet ¶ added in v1.5.0
type MeasurementFieldSet struct { Measurements []*MeasurementFields `protobuf:"bytes,1,rep,name=Measurements" json:"Measurements,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*MeasurementFieldSet) Descriptor ¶ added in v1.5.0
func (*MeasurementFieldSet) Descriptor() ([]byte, []int)
func (*MeasurementFieldSet) GetMeasurements ¶ added in v1.5.0
func (m *MeasurementFieldSet) GetMeasurements() []*MeasurementFields
func (*MeasurementFieldSet) Marshal ¶ added in v1.7.3
func (m *MeasurementFieldSet) Marshal() (dAtA []byte, err error)
func (*MeasurementFieldSet) MarshalTo ¶ added in v1.7.3
func (m *MeasurementFieldSet) MarshalTo(dAtA []byte) (int, error)
func (*MeasurementFieldSet) ProtoMessage ¶ added in v1.5.0
func (*MeasurementFieldSet) ProtoMessage()
func (*MeasurementFieldSet) Reset ¶ added in v1.5.0
func (m *MeasurementFieldSet) Reset()
func (*MeasurementFieldSet) Size ¶ added in v1.7.3
func (m *MeasurementFieldSet) Size() (n int)
func (*MeasurementFieldSet) String ¶ added in v1.5.0
func (m *MeasurementFieldSet) String() string
func (*MeasurementFieldSet) Unmarshal ¶ added in v1.7.3
func (m *MeasurementFieldSet) Unmarshal(dAtA []byte) error
func (*MeasurementFieldSet) XXX_DiscardUnknown ¶ added in v1.7.3
func (m *MeasurementFieldSet) XXX_DiscardUnknown()
func (*MeasurementFieldSet) XXX_Marshal ¶ added in v1.7.3
func (m *MeasurementFieldSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*MeasurementFieldSet) XXX_Merge ¶ added in v1.7.3
func (dst *MeasurementFieldSet) XXX_Merge(src proto.Message)
func (*MeasurementFieldSet) XXX_Size ¶ added in v1.7.3
func (m *MeasurementFieldSet) XXX_Size() int
func (*MeasurementFieldSet) XXX_Unmarshal ¶ added in v1.7.3
func (m *MeasurementFieldSet) XXX_Unmarshal(b []byte) error
type MeasurementFields ¶
type MeasurementFields struct { Name []byte `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"` Fields []*Field `protobuf:"bytes,2,rep,name=Fields" json:"Fields,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*MeasurementFields) Descriptor ¶ added in v1.0.0
func (*MeasurementFields) Descriptor() ([]byte, []int)
func (*MeasurementFields) GetFields ¶
func (m *MeasurementFields) GetFields() []*Field
func (*MeasurementFields) GetName ¶ added in v1.5.0
func (m *MeasurementFields) GetName() []byte
func (*MeasurementFields) Marshal ¶ added in v1.7.3
func (m *MeasurementFields) Marshal() (dAtA []byte, err error)
func (*MeasurementFields) MarshalTo ¶ added in v1.7.3
func (m *MeasurementFields) MarshalTo(dAtA []byte) (int, error)
func (*MeasurementFields) ProtoMessage ¶
func (*MeasurementFields) ProtoMessage()
func (*MeasurementFields) Reset ¶
func (m *MeasurementFields) Reset()
func (*MeasurementFields) Size ¶ added in v1.7.3
func (m *MeasurementFields) Size() (n int)
func (*MeasurementFields) String ¶
func (m *MeasurementFields) String() string
func (*MeasurementFields) Unmarshal ¶ added in v1.7.3
func (m *MeasurementFields) Unmarshal(dAtA []byte) error
func (*MeasurementFields) XXX_DiscardUnknown ¶ added in v1.7.3
func (m *MeasurementFields) XXX_DiscardUnknown()
func (*MeasurementFields) XXX_Marshal ¶ added in v1.7.3
func (m *MeasurementFields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)
func (*MeasurementFields) XXX_Merge ¶ added in v1.7.3
func (dst *MeasurementFields) XXX_Merge(src proto.Message)
func (*MeasurementFields) XXX_Size ¶ added in v1.7.3
func (m *MeasurementFields) XXX_Size() int
func (*MeasurementFields) XXX_Unmarshal ¶ added in v1.7.3
func (m *MeasurementFields) XXX_Unmarshal(b []byte) error
type Series ¶
type Series struct { Key string `protobuf:"bytes,1,opt,name=Key,proto3" json:"Key,omitempty"` Tags []*Tag `protobuf:"bytes,2,rep,name=Tags" json:"Tags,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Series) Descriptor ¶ added in v1.0.0
func (*Series) ProtoMessage ¶
func (*Series) ProtoMessage()
func (*Series) XXX_DiscardUnknown ¶ added in v1.7.3
func (m *Series) XXX_DiscardUnknown()
func (*Series) XXX_Marshal ¶ added in v1.7.3
func (*Series) XXX_Unmarshal ¶ added in v1.7.3
type Tag ¶
type Tag struct { Key string `protobuf:"bytes,1,opt,name=Key,proto3" json:"Key,omitempty"` Value string `protobuf:"bytes,2,opt,name=Value,proto3" json:"Value,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` }
func (*Tag) Descriptor ¶ added in v1.0.0
func (*Tag) ProtoMessage ¶
func (*Tag) ProtoMessage()
func (*Tag) XXX_DiscardUnknown ¶ added in v1.7.3
func (m *Tag) XXX_DiscardUnknown()
func (*Tag) XXX_Marshal ¶ added in v1.7.3
func (*Tag) XXX_Unmarshal ¶ added in v1.7.3
Click to show internal directories.
Click to hide internal directories.