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"
|
2017-05-13 06:47:04 -07:00
|
|
|
"net/url"
|
2016-12-29 08:31:14 -08:00
|
|
|
"time"
|
2013-06-13 07:10:05 -07:00
|
|
|
|
2022-07-19 03:58:37 -07:00
|
|
|
"go.uber.org/atomic"
|
2022-08-31 06:50:38 -07:00
|
|
|
"gopkg.in/yaml.v2"
|
2017-07-08 02:38:02 -07:00
|
|
|
|
2021-11-08 06:23:17 -08:00
|
|
|
"github.com/prometheus/prometheus/model/labels"
|
|
|
|
"github.com/prometheus/prometheus/model/rulefmt"
|
2015-03-30 10:43:19 -07:00
|
|
|
"github.com/prometheus/prometheus/promql"
|
2020-02-03 10:06:39 -08:00
|
|
|
"github.com/prometheus/prometheus/promql/parser"
|
2013-04-24 02:51:40 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
// A RecordingRule records its vector expression into new timeseries.
|
|
|
|
type RecordingRule struct {
|
2018-08-06 15:33:45 -07:00
|
|
|
name string
|
2020-02-03 10:06:39 -08:00
|
|
|
vector parser.Expr
|
2018-08-06 15:33:45 -07:00
|
|
|
labels labels.Labels
|
|
|
|
// The health of the recording rule.
|
2022-07-19 03:58:37 -07:00
|
|
|
health *atomic.String
|
2018-10-12 09:26:59 -07:00
|
|
|
// Timestamp of last evaluation of the recording rule.
|
2022-07-19 03:58:37 -07:00
|
|
|
evaluationTimestamp *atomic.Time
|
2018-08-06 15:33:45 -07:00
|
|
|
// The last error seen by the recording rule.
|
2022-07-19 03:58:37 -07:00
|
|
|
lastError *atomic.Error
|
2018-10-12 09:26:59 -07:00
|
|
|
// Duration of how long it took to evaluate the recording rule.
|
2022-07-19 03:58:37 -07:00
|
|
|
evaluationDuration *atomic.Duration
|
2024-02-02 01:06:37 -08:00
|
|
|
|
|
|
|
noDependentRules *atomic.Bool
|
|
|
|
noDependencyRules *atomic.Bool
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
|
|
|
|
2015-05-25 12:16:32 -07:00
|
|
|
// NewRecordingRule returns a new recording rule.
|
2020-02-03 10:06:39 -08:00
|
|
|
func NewRecordingRule(name string, vector parser.Expr, lset labels.Labels) *RecordingRule {
|
2015-05-25 12:16:32 -07:00
|
|
|
return &RecordingRule{
|
2022-07-19 03:58:37 -07:00
|
|
|
name: name,
|
|
|
|
vector: vector,
|
|
|
|
labels: lset,
|
|
|
|
health: atomic.NewString(string(HealthUnknown)),
|
|
|
|
evaluationTimestamp: atomic.NewTime(time.Time{}),
|
|
|
|
evaluationDuration: atomic.NewDuration(0),
|
|
|
|
lastError: atomic.NewError(nil),
|
2024-02-02 01:06:37 -08:00
|
|
|
noDependentRules: atomic.NewBool(false),
|
|
|
|
noDependencyRules: atomic.NewBool(false),
|
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
|
|
|
|
2018-06-27 00:15:17 -07:00
|
|
|
// Query returns the rule query expression.
|
2020-02-03 10:06:39 -08:00
|
|
|
func (rule *RecordingRule) Query() parser.Expr {
|
2018-06-27 00:15:17 -07:00
|
|
|
return rule.vector
|
|
|
|
}
|
|
|
|
|
|
|
|
// Labels returns the rule labels.
|
|
|
|
func (rule *RecordingRule) Labels() labels.Labels {
|
|
|
|
return rule.labels
|
|
|
|
}
|
|
|
|
|
2016-11-18 08:12:50 -08:00
|
|
|
// Eval evaluates the rule and then overrides the metric names and labels accordingly.
|
2021-09-15 00:48:26 -07:00
|
|
|
func (rule *RecordingRule) Eval(ctx context.Context, ts time.Time, query QueryFunc, _ *url.URL, limit int) (promql.Vector, error) {
|
2023-01-09 00:53:49 -08:00
|
|
|
ctx = NewOriginContext(ctx, NewRuleDetail(rule))
|
2023-01-09 00:14:37 -08:00
|
|
|
|
2017-11-23 04:04:54 -08:00
|
|
|
vector, err := query(ctx, rule.vector.String(), ts)
|
2015-03-30 10:43:19 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-03-08 04:57:19 -08:00
|
|
|
|
2013-04-24 02:51:40 -07:00
|
|
|
// Override the metric name and labels.
|
2023-03-08 04:57:19 -08:00
|
|
|
lb := labels.NewBuilder(labels.EmptyLabels())
|
|
|
|
|
2016-12-29 08:31:14 -08:00
|
|
|
for i := range vector {
|
|
|
|
sample := &vector[i]
|
|
|
|
|
2023-03-08 04:57:19 -08:00
|
|
|
lb.Reset(sample.Metric)
|
2016-12-24 15:37:46 -08:00
|
|
|
lb.Set(labels.MetricName, rule.name)
|
|
|
|
|
2022-02-27 06:12:38 -08:00
|
|
|
rule.labels.Range(func(l labels.Label) {
|
2019-08-13 03:19:17 -07:00
|
|
|
lb.Set(l.Name, l.Value)
|
2022-02-27 06:12:38 -08:00
|
|
|
})
|
2016-12-24 15:37:46 -08:00
|
|
|
|
2023-03-22 08:46:02 -07:00
|
|
|
sample.Metric = lb.Labels()
|
2013-04-24 02:51:40 -07:00
|
|
|
}
|
2019-12-18 04:29:35 -08:00
|
|
|
|
|
|
|
// Check that the rule does not produce identical metrics after applying
|
|
|
|
// labels.
|
|
|
|
if vector.ContainsSameLabelset() {
|
2021-08-20 13:42:31 -07:00
|
|
|
return nil, fmt.Errorf("vector contains metrics with the same labelset after applying rule labels")
|
2019-12-18 04:29:35 -08:00
|
|
|
}
|
|
|
|
|
2021-10-21 14:14:17 -07:00
|
|
|
numSeries := len(vector)
|
|
|
|
if limit > 0 && numSeries > limit {
|
|
|
|
return nil, fmt.Errorf("exceeded limit of %d with %d series", limit, numSeries)
|
2021-09-15 00:48:26 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
rule.SetHealth(HealthGood)
|
|
|
|
rule.SetLastError(err)
|
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 {
|
2018-11-27 08:44:29 -08:00
|
|
|
return fmt.Sprintf("error marshaling recording rule: %q", err.Error())
|
2017-07-08 02:38:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return string(byt)
|
2013-06-06 06:12:37 -07:00
|
|
|
}
|
|
|
|
|
2018-07-17 20:54:33 -07:00
|
|
|
// SetEvaluationDuration updates evaluationDuration to the time in seconds it took to evaluate the rule on its last evaluation.
|
|
|
|
func (rule *RecordingRule) SetEvaluationDuration(dur time.Duration) {
|
2022-07-19 03:58:37 -07:00
|
|
|
rule.evaluationDuration.Store(dur)
|
2017-11-17 07:18:34 -08:00
|
|
|
}
|
|
|
|
|
2018-08-06 15:33:45 -07:00
|
|
|
// SetLastError sets the current error seen by the recording rule.
|
|
|
|
func (rule *RecordingRule) SetLastError(err error) {
|
2022-07-19 03:58:37 -07:00
|
|
|
rule.lastError.Store(err)
|
2018-08-06 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// LastError returns the last error seen by the recording rule.
|
|
|
|
func (rule *RecordingRule) LastError() error {
|
2022-07-19 03:58:37 -07:00
|
|
|
return rule.lastError.Load()
|
2018-08-06 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetHealth sets the current health of the recording rule.
|
|
|
|
func (rule *RecordingRule) SetHealth(health RuleHealth) {
|
2022-07-19 03:58:37 -07:00
|
|
|
rule.health.Store(string(health))
|
2018-08-06 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Health returns the current health of the recording rule.
|
|
|
|
func (rule *RecordingRule) Health() RuleHealth {
|
2022-07-19 03:58:37 -07:00
|
|
|
return RuleHealth(rule.health.Load())
|
2018-08-06 15:33:45 -07:00
|
|
|
}
|
|
|
|
|
2018-07-17 20:54:33 -07:00
|
|
|
// GetEvaluationDuration returns the time in seconds it took to evaluate the recording rule.
|
|
|
|
func (rule *RecordingRule) GetEvaluationDuration() time.Duration {
|
2022-07-19 03:58:37 -07:00
|
|
|
return rule.evaluationDuration.Load()
|
2017-11-17 07:18:34 -08:00
|
|
|
}
|
|
|
|
|
2018-10-12 09:26:59 -07:00
|
|
|
// SetEvaluationTimestamp updates evaluationTimestamp to the timestamp of when the rule was last evaluated.
|
|
|
|
func (rule *RecordingRule) SetEvaluationTimestamp(ts time.Time) {
|
2022-07-19 03:58:37 -07:00
|
|
|
rule.evaluationTimestamp.Store(ts)
|
2018-10-12 09:26:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetEvaluationTimestamp returns the time the evaluation took place.
|
|
|
|
func (rule *RecordingRule) GetEvaluationTimestamp() time.Time {
|
2022-07-19 03:58:37 -07:00
|
|
|
return rule.evaluationTimestamp.Load()
|
2018-10-12 09:26:59 -07:00
|
|
|
}
|
2024-02-02 01:06:37 -08:00
|
|
|
|
|
|
|
func (rule *RecordingRule) SetNoDependentRules(noDependentRules bool) {
|
|
|
|
rule.noDependentRules.Store(noDependentRules)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rule *RecordingRule) NoDependentRules() bool {
|
|
|
|
return rule.noDependentRules.Load()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rule *RecordingRule) SetNoDependencyRules(noDependencyRules bool) {
|
|
|
|
rule.noDependencyRules.Store(noDependencyRules)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (rule *RecordingRule) NoDependencyRules() bool {
|
|
|
|
return rule.noDependencyRules.Load()
|
|
|
|
}
|