Versions in this module Expand all Collapse all v0 v0.0.1 Jul 24, 2018 Changes in this version + type Series interface + Iterator func() SeriesIterator + Labels func() utils.Labels + func NewSeries(set *V3ioSeriesSet) Series + type SeriesIterator interface + At func() (t int64, v float64) + Err func() error + Next func() bool + Seek func(t int64) bool + type SeriesSet interface + At func() Series + Err func() error + Next func() bool + type V3ioQuerier struct + func NewV3ioQuerier(container *v3io.Container, logger logger.Logger, mint, maxt int64, ...) *V3ioQuerier + func (q *V3ioQuerier) Close() error + func (q *V3ioQuerier) LabelValues(name string) ([]string, error) + func (q *V3ioQuerier) Select(name, functions string, step int64, filter string) (SeriesSet, error) + func (q *V3ioQuerier) SelectOverlap(name, functions string, step int64, win []int, filter string) (SeriesSet, error) + type V3ioSeries struct + func NewAggrSeries(set *V3ioSeriesSet, aggr aggregate.AggrType) *V3ioSeries + func (s *V3ioSeries) Iterator() SeriesIterator + func (s *V3ioSeries) Labels() utils.Labels + type V3ioSeriesSet struct + func (s *V3ioSeriesSet) At() Series + func (s *V3ioSeriesSet) Err() error + func (s *V3ioSeriesSet) Next() bool