Browse Source

Specify that returned samples must be ordered by timestamp. (#6877)

Signed-off-by: Peter Štibraný <peter.stibrany@grafana.com>
pull/5882/head
Peter Štibraný 5 years ago committed by GitHub
parent
commit
1d396b96dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tsdb/chunkenc/chunk.go

2
tsdb/chunkenc/chunk.go

@ -73,7 +73,7 @@ type Appender interface {
}
// Iterator is a simple iterator that can only get the next value.
// Iterator iterates over the samples of a time series.
// Iterator iterates over the samples of a time series, in timestamp-increasing order.
type Iterator interface {
// Next advances the iterator by one.
Next() bool

Loading…
Cancel
Save