2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-04-24 02:51:40 -07:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2013-06-13 07:10:05 -07:00
|
|
|
"html/template"
|
|
|
|
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2013-06-25 05:02:27 -07:00
|
|
|
|
2015-03-30 10:43:19 -07:00
|
|
|
"github.com/prometheus/prometheus/promql"
|
2015-05-29 04:30:30 -07:00
|
|
|
"github.com/prometheus/prometheus/util/strutil"
|
2013-04-24 02:51:40 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// A RecordingRule records its vector expression into new timeseries.
|
|
|
|
type RecordingRule struct {
|
2015-03-30 10:43:19 -07:00
|
|
|
name string
|
|
|
|
vector promql.Expr
|
2015-08-20 08:18:46 -07:00
|
|
|
labels model.LabelSet
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
|
2015-05-25 12:16:32 -07:00
|
|
|
// NewRecordingRule returns a new recording rule.
|
2015-08-20 08:18:46 -07:00
|
|
|
func NewRecordingRule(name string, vector promql.Expr, labels model.LabelSet) *RecordingRule {
|
2015-05-25 12:16:32 -07:00
|
|
|
return &RecordingRule{
|
|
|
|
name: name,
|
|
|
|
vector: vector,
|
|
|
|
labels: labels,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// Name returns the rule name.
|
2013-04-24 02:51:40 -07:00
|
|
|
func (rule RecordingRule) Name() string { return rule.name }
|
|
|
|
|
2015-05-25 12:16:32 -07:00
|
|
|
// eval evaluates the rule and then overrides the metric names and labels accordingly.
|
2015-08-24 09:04:41 -07:00
|
|
|
func (rule RecordingRule) eval(timestamp model.Time, engine *promql.Engine) (model.Vector, error) {
|
2015-03-30 10:43:19 -07:00
|
|
|
query, err := engine.NewInstantQuery(rule.vector.String(), timestamp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-19 13:09:00 -07:00
|
|
|
|
2015-08-24 09:04:41 -07:00
|
|
|
var (
|
|
|
|
result = query.Exec()
|
|
|
|
vector model.Vector
|
|
|
|
)
|
2015-08-19 13:09:00 -07:00
|
|
|
switch result.Value.(type) {
|
2015-08-24 09:04:41 -07:00
|
|
|
case model.Vector:
|
2015-08-19 13:09:00 -07:00
|
|
|
vector, err = result.Vector()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
case *model.Scalar:
|
2015-08-19 13:09:00 -07:00
|
|
|
scalar, err := result.Scalar()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-24 09:04:41 -07:00
|
|
|
vector = model.Vector{&model.Sample{
|
|
|
|
Value: scalar.Value,
|
|
|
|
Timestamp: scalar.Timestamp,
|
2015-08-26 03:19:44 -07:00
|
|
|
Metric: model.Metric{},
|
2015-08-24 09:04:41 -07:00
|
|
|
}}
|
2015-08-19 13:09:00 -07:00
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("rule result is not a vector or scalar")
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Override the metric name and labels.
|
|
|
|
for _, sample := range vector {
|
2015-08-24 09:04:41 -07:00
|
|
|
sample.Metric[model.MetricNameLabel] = model.LabelValue(rule.name)
|
|
|
|
|
2013-04-24 02:51:40 -07:00
|
|
|
for label, value := range rule.labels {
|
|
|
|
if value == "" {
|
2015-08-24 09:04:41 -07:00
|
|
|
delete(sample.Metric, label)
|
2013-04-24 02:51:40 -07:00
|
|
|
} else {
|
2015-08-24 09:04:41 -07:00
|
|
|
sample.Metric[label] = value
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-05-15 22:38:31 -07:00
|
|
|
|
|
|
|
return vector, nil
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
|
2013-06-06 06:12:37 -07:00
|
|
|
func (rule RecordingRule) String() string {
|
|
|
|
return fmt.Sprintf("%s%s = %s\n", rule.name, rule.labels, rule.vector)
|
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// HTMLSnippet returns an HTML snippet representing this rule.
|
2015-05-18 10:44:40 -07:00
|
|
|
func (rule RecordingRule) HTMLSnippet(pathPrefix string) template.HTML {
|
2013-06-13 07:10:05 -07:00
|
|
|
ruleExpr := rule.vector.String()
|
|
|
|
return template.HTML(fmt.Sprintf(
|
|
|
|
`<a href="%s">%s</a>%s = <a href="%s">%s</a>`,
|
2015-05-28 12:33:48 -07:00
|
|
|
pathPrefix+strutil.GraphLinkForExpression(rule.name),
|
2013-06-13 07:10:05 -07:00
|
|
|
rule.name,
|
|
|
|
rule.labels,
|
2015-05-28 12:33:48 -07:00
|
|
|
pathPrefix+strutil.GraphLinkForExpression(ruleExpr),
|
2013-06-13 07:10:05 -07:00
|
|
|
ruleExpr))
|
|
|
|
}
|