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 (
|
2017-10-24 21:21:42 -07:00
|
|
|
"context"
|
2013-04-24 02:51:40 -07:00
|
|
|
"fmt"
|
2013-06-13 07:10:05 -07:00
|
|
|
"html/template"
|
2017-05-13 06:47:04 -07:00
|
|
|
"net/url"
|
2017-11-17 07:18:34 -08:00
|
|
|
"sync"
|
2016-12-29 08:31:14 -08:00
|
|
|
"time"
|
2013-06-13 07:10:05 -07:00
|
|
|
|
2017-07-08 02:38:02 -07:00
|
|
|
yaml "gopkg.in/yaml.v2"
|
|
|
|
|
2016-12-24 15:37:46 -08:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
2017-07-08 02:38:02 -07:00
|
|
|
"github.com/prometheus/prometheus/pkg/rulefmt"
|
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 {
|
2017-11-17 07:18:34 -08:00
|
|
|
name string
|
|
|
|
vector promql.Expr
|
|
|
|
labels labels.Labels
|
|
|
|
mtx sync.Mutex
|
|
|
|
evaluationTimeSeconds float64
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
|
2015-05-25 12:16:32 -07:00
|
|
|
// NewRecordingRule returns a new recording rule.
|
2016-12-24 15:37:46 -08:00
|
|
|
func NewRecordingRule(name string, vector promql.Expr, lset labels.Labels) *RecordingRule {
|
2015-05-25 12:16:32 -07:00
|
|
|
return &RecordingRule{
|
|
|
|
name: name,
|
|
|
|
vector: vector,
|
2016-12-24 15:37:46 -08:00
|
|
|
labels: lset,
|
2015-05-25 12:16:32 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// Name returns the rule name.
|
2017-11-17 07:18:34 -08:00
|
|
|
func (rule *RecordingRule) Name() string {
|
2015-12-14 08:40:40 -08:00
|
|
|
return rule.name
|
|
|
|
}
|
2013-04-24 02:51:40 -07:00
|
|
|
|
2016-11-18 08:12:50 -08:00
|
|
|
// Eval evaluates the rule and then overrides the metric names and labels accordingly.
|
2017-11-17 07:18:34 -08:00
|
|
|
func (rule *RecordingRule) Eval(ctx context.Context, ts time.Time, engine *promql.Engine, _ *url.URL) (promql.Vector, error) {
|
2016-12-29 08:31:14 -08:00
|
|
|
query, err := engine.NewInstantQuery(rule.vector.String(), ts)
|
2015-03-30 10:43:19 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2015-08-19 13:09:00 -07:00
|
|
|
|
2015-08-24 09:04:41 -07:00
|
|
|
var (
|
2016-09-15 15:58:06 -07:00
|
|
|
result = query.Exec(ctx)
|
2016-12-24 15:37:46 -08:00
|
|
|
vector promql.Vector
|
2015-08-24 09:04:41 -07:00
|
|
|
)
|
2016-01-12 01:26:06 -08:00
|
|
|
if result.Err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-12-24 15:37:46 -08:00
|
|
|
switch v := result.Value.(type) {
|
|
|
|
case promql.Vector:
|
|
|
|
vector = v
|
|
|
|
case promql.Scalar:
|
|
|
|
vector = promql.Vector{promql.Sample{
|
|
|
|
Point: promql.Point(v),
|
|
|
|
Metric: labels.Labels{},
|
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.
|
2016-12-29 08:31:14 -08:00
|
|
|
for i := range vector {
|
|
|
|
sample := &vector[i]
|
|
|
|
|
2016-12-24 15:37:46 -08:00
|
|
|
lb := labels.NewBuilder(sample.Metric)
|
2015-08-24 09:04:41 -07:00
|
|
|
|
2016-12-24 15:37:46 -08:00
|
|
|
lb.Set(labels.MetricName, rule.name)
|
|
|
|
|
|
|
|
for _, l := range rule.labels {
|
|
|
|
if l.Value == "" {
|
|
|
|
lb.Del(l.Name)
|
2013-04-24 02:51:40 -07:00
|
|
|
} else {
|
2016-12-24 15:37:46 -08:00
|
|
|
lb.Set(l.Name, l.Value)
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
}
|
2016-12-24 15:37:46 -08:00
|
|
|
|
|
|
|
sample.Metric = lb.Labels()
|
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
|
|
|
}
|
|
|
|
|
2017-11-17 07:18:34 -08:00
|
|
|
func (rule *RecordingRule) String() string {
|
2017-07-08 02:38:02 -07:00
|
|
|
r := rulefmt.Rule{
|
|
|
|
Record: rule.name,
|
|
|
|
Expr: rule.vector.String(),
|
|
|
|
Labels: rule.labels.Map(),
|
|
|
|
}
|
|
|
|
|
|
|
|
byt, err := yaml.Marshal(r)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Sprintf("error marshalling recording rule: %q", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
return string(byt)
|
2013-06-06 06:12:37 -07:00
|
|
|
}
|
|
|
|
|
2017-11-17 07:18:34 -08:00
|
|
|
// setEvaluationTimeSeconds updates evaluationTimeSeconds to the time in seconds it took to evaluate the rule on its last evaluation.
|
|
|
|
func (rule *RecordingRule) setEvaluationTimeSeconds(seconds float64) {
|
|
|
|
rule.mtx.Lock()
|
|
|
|
defer rule.mtx.Unlock()
|
|
|
|
rule.evaluationTimeSeconds = seconds
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetEvaluationTimeSeconds returns the time in seconds it took to evaluate the recording rule.
|
|
|
|
func (rule *RecordingRule) GetEvaluationTimeSeconds() float64 {
|
|
|
|
rule.mtx.Lock()
|
|
|
|
defer rule.mtx.Unlock()
|
|
|
|
return rule.evaluationTimeSeconds
|
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// HTMLSnippet returns an HTML snippet representing this rule.
|
2017-11-17 07:18:34 -08:00
|
|
|
func (rule *RecordingRule) HTMLSnippet(pathPrefix string) template.HTML {
|
2013-06-13 07:10:05 -07:00
|
|
|
ruleExpr := rule.vector.String()
|
2017-07-08 02:38:02 -07:00
|
|
|
labels := make(map[string]string, len(rule.labels))
|
|
|
|
for _, l := range rule.labels {
|
|
|
|
labels[l.Name] = template.HTMLEscapeString(l.Value)
|
|
|
|
}
|
|
|
|
|
|
|
|
r := rulefmt.Rule{
|
2017-10-05 03:16:15 -07:00
|
|
|
Record: fmt.Sprintf(`<a href="%s">%s</a>`, pathPrefix+strutil.TableLinkForExpression(rule.name), rule.name),
|
|
|
|
Expr: fmt.Sprintf(`<a href="%s">%s</a>`, pathPrefix+strutil.TableLinkForExpression(ruleExpr), template.HTMLEscapeString(ruleExpr)),
|
2017-07-08 02:38:02 -07:00
|
|
|
Labels: labels,
|
|
|
|
}
|
|
|
|
|
|
|
|
byt, err := yaml.Marshal(r)
|
|
|
|
if err != nil {
|
|
|
|
return template.HTML(fmt.Sprintf("error marshalling recording rule: %q", err.Error()))
|
|
|
|
}
|
|
|
|
|
|
|
|
return template.HTML(byt)
|
2013-06-13 07:10:05 -07:00
|
|
|
}
|