mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-11 05:47:27 -08:00
promql: fix missing metric in range results.
This commit is contained in:
parent
ae2bff45ea
commit
c32ae22119
|
@ -453,14 +453,16 @@ func (ng *Engine) execEvalStmt(ctx context.Context, query *query, s *EvalStmt) (
|
|||
fp := sample.Metric.Metric.Fingerprint()
|
||||
ss := sampleStreams[fp]
|
||||
if ss == nil {
|
||||
ss = &SampleStream{Values: make(metric.Values, 0, numSteps)}
|
||||
ss = &SampleStream{
|
||||
Metric: sample.Metric,
|
||||
Values: make(metric.Values, 0, numSteps),
|
||||
}
|
||||
sampleStreams[fp] = ss
|
||||
}
|
||||
ss.Values = append(ss.Values, metric.SamplePair{
|
||||
Value: sample.Value,
|
||||
Timestamp: sample.Timestamp,
|
||||
})
|
||||
|
||||
}
|
||||
default:
|
||||
panic(fmt.Errorf("promql.Engine.exec: invalid expression type %q", val.Type()))
|
||||
|
|
Loading…
Reference in a new issue