pull/1087/head
Fabian Reinartz 10 years ago
parent 9e5b317c0d
commit eca41f5319
  1. 10
      promql/functions.go

@ -654,7 +654,7 @@ func funcLabelReplace(ev *evaluator, args Expressions) model.Value {
func funcVector(ev *evaluator, args Expressions) model.Value {
return vector{
&sample{
Metric: metric.Metric{},
Metric: metric.Metric{},
Value: model.SampleValue(ev.evalFloat(args[0])),
Timestamp: ev.Timestamp,
},
@ -857,10 +857,10 @@ var functions = map[string]*Function{
Call: funcTopk,
},
"vector": {
Name: "vector",
ArgTypes: []model.ValueType{model.ValScalar},
ReturnType: model.ValVector,
Call: funcVector,
Name: "vector",
ArgTypes: []model.ValueType{model.ValScalar},
ReturnType: model.ValVector,
Call: funcVector,
},
}

Loading…
Cancel
Save