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"
|
promql: Allow per-query contexts.
For Weaveworks' Frankenstein, we need to support multitenancy. In
Frankenstein, we initially solved this without modifying the promql
package at all: we constructed a new promql.Engine for every
query and injected a storage implementation into that engine which would
be primed to only collect data for a given user.
This is problematic to upstream, however. Prometheus assumes that there
is only one engine: the query concurrency gate is part of the engine,
and the engine contains one central cancellable context to shut down all
queries. Also, creating a new engine for every query seems like overkill.
Thus, we want to be able to pass per-query contexts into a single engine.
This change gets rid of the promql.Engine's built-in base context and
allows passing in a per-query context instead. Central cancellation of
all queries is still possible by deriving all passed-in contexts from
one central one, but this is now the responsibility of the caller. The
central query context is now created in main() and passed into the
relevant components (web handler / API, rule manager).
In a next step, the per-query context would have to be passed to the
storage implementation, so that the storage can implement multi-tenancy
or other features based on the contextual information.
2016-09-15 04:52:50 -07:00
|
|
|
"golang.org/x/net/context"
|
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.
|
2015-12-14 08:40:40 -08:00
|
|
|
func (rule RecordingRule) Name() string {
|
|
|
|
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.
|
|
|
|
func (rule RecordingRule) Eval(ctx context.Context, timestamp model.Time, engine *promql.Engine, _ string) (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 (
|
2016-09-15 15:58:06 -07:00
|
|
|
result = query.Exec(ctx)
|
2015-08-24 09:04:41 -07:00
|
|
|
vector model.Vector
|
|
|
|
)
|
2016-01-12 01:26:06 -08:00
|
|
|
if result.Err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
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,
|
2016-08-11 17:52:59 -07:00
|
|
|
template.HTMLEscapeString(rule.labels.String()),
|
2015-05-28 12:33:48 -07:00
|
|
|
pathPrefix+strutil.GraphLinkForExpression(ruleExpr),
|
2016-08-11 17:52:59 -07:00
|
|
|
template.HTMLEscapeString(ruleExpr)))
|
2013-06-13 07:10:05 -07:00
|
|
|
}
|