Documentation ¶
Index ¶
- Constants
- func SortInt64(ints []int64)
- type Aggregator
- func NewCompositeAggregator(left, right Aggregator) (Aggregator, error)
- func NewCountAggregator(q *parser.Query, v *parser.Value) (Aggregator, error)
- func NewCumulativeArithmeticAggregator(name string, value *parser.Value, initialValue float64, operation Operation) (Aggregator, error)
- func NewDerivativeAggregator(q *parser.Query, v *parser.Value) (Aggregator, error)
- func NewDistinctAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewMaxAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewMeanAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewMedianAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewMinAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewModeAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewPercentileAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewStandardDeviationAggregator(q *parser.Query, v *parser.Value) (Aggregator, error)
- func NewSumAggregator(_ *parser.Query, value *parser.Value) (Aggregator, error)
- func NewTimestampAggregator(query *parser.Query, _ *parser.Value) (Aggregator, error)
- type AggregatorInitializer
- type CompositeAggregator
- func (self *CompositeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *CompositeAggregator) ColumnName() string
- func (self *CompositeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *CompositeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type CountAggregator
- func (self *CountAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *CountAggregator) ColumnName() string
- func (self *CountAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *CountAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type CumulativeArithmeticAggregator
- func (self *CumulativeArithmeticAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *CumulativeArithmeticAggregator) ColumnName() string
- func (self *CumulativeArithmeticAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *CumulativeArithmeticAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type DerivativeAggregator
- func (self *DerivativeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *DerivativeAggregator) ColumnName() string
- func (self *DerivativeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *DerivativeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type DistinctAggregator
- func (self *DistinctAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *DistinctAggregator) ColumnName() string
- func (self *DistinctAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *DistinctAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type EngineI
- type Int64Slice
- type InverseMapper
- type Mapper
- type MeanAggregator
- func (self *MeanAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *MeanAggregator) ColumnName() string
- func (self *MeanAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *MeanAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type ModeAggregator
- func (self *ModeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *ModeAggregator) ColumnName() string
- func (self *ModeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *ModeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type Operation
- type PercentileAggregator
- func (self *PercentileAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *PercentileAggregator) ColumnName() string
- func (self *PercentileAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *PercentileAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type PointSlice
- type QueryEngine
- type SortableGroups
- type StandardDeviationAggregator
- func (self *StandardDeviationAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *StandardDeviationAggregator) ColumnName() string
- func (self *StandardDeviationAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *StandardDeviationAggregator) InitializeFieldsMetadata(series *protocol.Series) error
- type StandardDeviationRunning
- type TimestampAggregator
- func (self *TimestampAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
- func (self *TimestampAggregator) ColumnName() string
- func (self *TimestampAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
- func (self *TimestampAggregator) InitializeFieldsMetadata(series *protocol.Series) error
Constants ¶
View Source
const ALL_GROUP_IDENTIFIER = 1
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Aggregator ¶
type Aggregator interface { AggregatePoint(series string, group interface{}, p *protocol.Point) error InitializeFieldsMetadata(series *protocol.Series) error GetValue(series string, group interface{}) []*protocol.FieldValue ColumnName() string }
func NewCompositeAggregator ¶ added in v0.0.6
func NewCompositeAggregator(left, right Aggregator) (Aggregator, error)
func NewCountAggregator ¶
func NewDerivativeAggregator ¶ added in v0.0.8
func NewDistinctAggregator ¶
func NewMaxAggregator ¶
func NewMeanAggregator ¶
func NewMedianAggregator ¶
func NewMinAggregator ¶
func NewModeAggregator ¶
func NewPercentileAggregator ¶
func NewStandardDeviationAggregator ¶ added in v0.0.9
func NewSumAggregator ¶
func NewTimestampAggregator ¶
type AggregatorInitializer ¶
type CompositeAggregator ¶ added in v0.0.6
type CompositeAggregator struct {
// contains filtered or unexported fields
}
func (*CompositeAggregator) AggregatePoint ¶ added in v0.0.6
func (self *CompositeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*CompositeAggregator) ColumnName ¶ added in v0.0.6
func (self *CompositeAggregator) ColumnName() string
func (*CompositeAggregator) GetValue ¶ added in v0.0.6
func (self *CompositeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*CompositeAggregator) InitializeFieldsMetadata ¶ added in v0.0.6
func (self *CompositeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type CountAggregator ¶
type CountAggregator struct {
// contains filtered or unexported fields
}
func (*CountAggregator) AggregatePoint ¶
func (self *CountAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*CountAggregator) ColumnName ¶
func (self *CountAggregator) ColumnName() string
func (*CountAggregator) GetValue ¶
func (self *CountAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*CountAggregator) InitializeFieldsMetadata ¶
func (self *CountAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type CumulativeArithmeticAggregator ¶
type CumulativeArithmeticAggregator struct {
// contains filtered or unexported fields
}
func (*CumulativeArithmeticAggregator) AggregatePoint ¶
func (self *CumulativeArithmeticAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*CumulativeArithmeticAggregator) ColumnName ¶
func (self *CumulativeArithmeticAggregator) ColumnName() string
func (*CumulativeArithmeticAggregator) GetValue ¶
func (self *CumulativeArithmeticAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*CumulativeArithmeticAggregator) InitializeFieldsMetadata ¶
func (self *CumulativeArithmeticAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type DerivativeAggregator ¶ added in v0.0.8
type DerivativeAggregator struct {
// contains filtered or unexported fields
}
func (*DerivativeAggregator) AggregatePoint ¶ added in v0.0.8
func (self *DerivativeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*DerivativeAggregator) ColumnName ¶ added in v0.0.8
func (self *DerivativeAggregator) ColumnName() string
func (*DerivativeAggregator) GetValue ¶ added in v0.0.8
func (self *DerivativeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*DerivativeAggregator) InitializeFieldsMetadata ¶ added in v0.0.8
func (self *DerivativeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type DistinctAggregator ¶
type DistinctAggregator struct {
// contains filtered or unexported fields
}
func (*DistinctAggregator) AggregatePoint ¶
func (self *DistinctAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*DistinctAggregator) ColumnName ¶
func (self *DistinctAggregator) ColumnName() string
func (*DistinctAggregator) GetValue ¶
func (self *DistinctAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*DistinctAggregator) InitializeFieldsMetadata ¶
func (self *DistinctAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type EngineI ¶
type EngineI interface {
RunQuery(user common.User, database string, query string, yield func(*protocol.Series) error) error
}
func NewQueryEngine ¶
func NewQueryEngine(c coordinator.Coordinator) (EngineI, error)
type Int64Slice ¶
type Int64Slice []int64
Int64Slice attaches the methods of sort.Interface to []int64, sorting in increasing order.
func (Int64Slice) Len ¶
func (p Int64Slice) Len() int
func (Int64Slice) Less ¶
func (p Int64Slice) Less(i, j int) bool
func (Int64Slice) Swap ¶
func (p Int64Slice) Swap(i, j int)
type InverseMapper ¶
type InverseMapper func(interface{}, int) interface{}
type MeanAggregator ¶
type MeanAggregator struct {
// contains filtered or unexported fields
}
func (*MeanAggregator) AggregatePoint ¶
func (self *MeanAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*MeanAggregator) ColumnName ¶
func (self *MeanAggregator) ColumnName() string
func (*MeanAggregator) GetValue ¶
func (self *MeanAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*MeanAggregator) InitializeFieldsMetadata ¶
func (self *MeanAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type ModeAggregator ¶
type ModeAggregator struct {
// contains filtered or unexported fields
}
func (*ModeAggregator) AggregatePoint ¶
func (self *ModeAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*ModeAggregator) ColumnName ¶
func (self *ModeAggregator) ColumnName() string
func (*ModeAggregator) GetValue ¶
func (self *ModeAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*ModeAggregator) InitializeFieldsMetadata ¶
func (self *ModeAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type PercentileAggregator ¶
type PercentileAggregator struct {
// contains filtered or unexported fields
}
func (*PercentileAggregator) AggregatePoint ¶
func (self *PercentileAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*PercentileAggregator) ColumnName ¶
func (self *PercentileAggregator) ColumnName() string
func (*PercentileAggregator) GetValue ¶
func (self *PercentileAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*PercentileAggregator) InitializeFieldsMetadata ¶
func (self *PercentileAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type PointSlice ¶
type QueryEngine ¶
type QueryEngine struct {
// contains filtered or unexported fields
}
type SortableGroups ¶ added in v0.2.0
type SortableGroups struct {
// contains filtered or unexported fields
}
func (SortableGroups) Len ¶ added in v0.2.0
func (self SortableGroups) Len() int
func (SortableGroups) Less ¶ added in v0.2.0
func (self SortableGroups) Less(i, j int) bool
func (SortableGroups) Swap ¶ added in v0.2.0
func (self SortableGroups) Swap(i, j int)
type StandardDeviationAggregator ¶ added in v0.0.9
type StandardDeviationAggregator struct {
// contains filtered or unexported fields
}
func (*StandardDeviationAggregator) AggregatePoint ¶ added in v0.0.9
func (self *StandardDeviationAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*StandardDeviationAggregator) ColumnName ¶ added in v0.0.9
func (self *StandardDeviationAggregator) ColumnName() string
func (*StandardDeviationAggregator) GetValue ¶ added in v0.0.9
func (self *StandardDeviationAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*StandardDeviationAggregator) InitializeFieldsMetadata ¶ added in v0.0.9
func (self *StandardDeviationAggregator) InitializeFieldsMetadata(series *protocol.Series) error
type StandardDeviationRunning ¶ added in v0.0.9
type StandardDeviationRunning struct {
// contains filtered or unexported fields
}
type TimestampAggregator ¶
type TimestampAggregator struct {
// contains filtered or unexported fields
}
func (*TimestampAggregator) AggregatePoint ¶
func (self *TimestampAggregator) AggregatePoint(series string, group interface{}, p *protocol.Point) error
func (*TimestampAggregator) ColumnName ¶
func (self *TimestampAggregator) ColumnName() string
func (*TimestampAggregator) GetValue ¶
func (self *TimestampAggregator) GetValue(series string, group interface{}) []*protocol.FieldValue
func (*TimestampAggregator) InitializeFieldsMetadata ¶
func (self *TimestampAggregator) InitializeFieldsMetadata(series *protocol.Series) error
Click to show internal directories.
Click to hide internal directories.