mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
Add comment about samples order. (#3642)
This commit is contained in:
parent
f2c5399e39
commit
85bef0d583
|
@ -128,6 +128,7 @@ func (m *Query) GetMatchers() []*LabelMatcher {
|
|||
}
|
||||
|
||||
type QueryResult struct {
|
||||
// Samples within a time series must be ordered by time.
|
||||
Timeseries []*TimeSeries `protobuf:"bytes,1,rep,name=timeseries" json:"timeseries,omitempty"`
|
||||
}
|
||||
|
||||
|
|
|
@ -38,5 +38,6 @@ message Query {
|
|||
}
|
||||
|
||||
message QueryResult {
|
||||
// Samples within a time series must be ordered by time.
|
||||
repeated prometheus.TimeSeries timeseries = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue