mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
This commit extends Prometheus with the option to run aggregation rules during scrape time, before relabeling takes place. All rules are executed independently for each target in the context of individual scrapes. Newly calculated samples are committed to TSDB atomically with all samples from that scrape. Metric relabeling can also be applied on series recorded from scrape rules. Signed-off-by: Filip Petkovski <filip.petkovsky@gmail.com>
232 lines
5.9 KiB
Go
232 lines
5.9 KiB
Go
// Copyright 2022 The Prometheus Authors
|
|
// 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 scrape
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/prometheus/prometheus/config"
|
|
"github.com/prometheus/prometheus/model/histogram"
|
|
"github.com/prometheus/prometheus/model/labels"
|
|
"github.com/prometheus/prometheus/promql"
|
|
"github.com/prometheus/prometheus/storage"
|
|
"github.com/prometheus/prometheus/util/annotations"
|
|
)
|
|
|
|
type RuleEngine interface {
|
|
NewScrapeBatch() Batch
|
|
EvaluateRules(b Batch, ts time.Time, sampleMutator labelsMutator) ([]Sample, error)
|
|
}
|
|
|
|
// ruleEngine evaluates rules from individual targets at scrape time.
|
|
type ruleEngine struct {
|
|
rules []*config.ScrapeRuleConfig
|
|
engine *promql.Engine
|
|
}
|
|
|
|
// newRuleEngine creates a new RuleEngine.
|
|
func newRuleEngine(
|
|
rules []*config.ScrapeRuleConfig,
|
|
queryEngine *promql.Engine,
|
|
) RuleEngine {
|
|
if len(rules) == 0 {
|
|
return &nopRuleEngine{}
|
|
}
|
|
|
|
return &ruleEngine{
|
|
rules: rules,
|
|
engine: queryEngine,
|
|
}
|
|
}
|
|
|
|
// NewScrapeBatch creates a new Batch which can be used to add samples from a single scrape.
|
|
// Rules are always evaluated on a single Batch.
|
|
func (r *ruleEngine) NewScrapeBatch() Batch {
|
|
return &batch{
|
|
samples: make([]Sample, 0),
|
|
}
|
|
}
|
|
|
|
// EvaluateRules executes rules on the given Batch and returns new Samples.
|
|
func (r *ruleEngine) EvaluateRules(b Batch, ts time.Time, sampleMutator labelsMutator) ([]Sample, error) {
|
|
var (
|
|
result []Sample
|
|
builder labels.ScratchBuilder
|
|
)
|
|
for _, rule := range r.rules {
|
|
queryable := storage.QueryableFunc(func(_, _ int64) (storage.Querier, error) {
|
|
return b, nil
|
|
})
|
|
|
|
query, err := r.engine.NewInstantQuery(context.Background(), queryable, nil, rule.Expr, ts)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
samples, err := query.Exec(context.Background()).Vector()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, s := range samples {
|
|
builder.Reset()
|
|
metricNameSet := false
|
|
s.Metric.Range(func(lbl labels.Label) {
|
|
if lbl.Name == labels.MetricName {
|
|
metricNameSet = true
|
|
builder.Add(labels.MetricName, rule.Record)
|
|
} else {
|
|
builder.Add(lbl.Name, lbl.Value)
|
|
}
|
|
})
|
|
if !metricNameSet {
|
|
builder.Add(labels.MetricName, rule.Record)
|
|
}
|
|
builder.Sort()
|
|
result = append(result, Sample{
|
|
metric: sampleMutator(builder.Labels()),
|
|
t: s.T,
|
|
f: s.F,
|
|
fh: s.H,
|
|
})
|
|
}
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// Batch is used to collect floats from a single scrape.
|
|
type Batch interface {
|
|
storage.Querier
|
|
AddFloatSample(labels.Labels, int64, float64)
|
|
AddHistogramSample(labels.Labels, int64, *histogram.FloatHistogram)
|
|
}
|
|
|
|
type batch struct {
|
|
samples []Sample
|
|
}
|
|
|
|
type Sample struct {
|
|
metric labels.Labels
|
|
t int64
|
|
f float64
|
|
fh *histogram.FloatHistogram
|
|
}
|
|
|
|
func (b *batch) AddFloatSample(lbls labels.Labels, t int64, f float64) {
|
|
b.samples = append(b.samples, Sample{
|
|
metric: lbls,
|
|
t: t,
|
|
f: f,
|
|
})
|
|
}
|
|
|
|
func (b *batch) AddHistogramSample(lbls labels.Labels, t int64, fh *histogram.FloatHistogram) {
|
|
b.samples = append(b.samples, Sample{
|
|
metric: lbls,
|
|
t: t,
|
|
fh: fh,
|
|
})
|
|
}
|
|
|
|
func (b *batch) Select(_ context.Context, _ bool, _ *storage.SelectHints, matchers ...*labels.Matcher) storage.SeriesSet {
|
|
var samples []Sample
|
|
for _, s := range b.samples {
|
|
match := true
|
|
for _, matcher := range matchers {
|
|
if !matcher.Matches(s.metric.Get(matcher.Name)) {
|
|
match = false
|
|
break
|
|
}
|
|
}
|
|
if match {
|
|
samples = append(samples, s)
|
|
}
|
|
}
|
|
|
|
return &seriesSet{
|
|
i: -1,
|
|
samples: samples,
|
|
}
|
|
}
|
|
|
|
func (b *batch) LabelValues(context.Context, string, *storage.LabelHints, ...*labels.Matcher) ([]string, annotations.Annotations, error) {
|
|
return nil, nil, nil
|
|
}
|
|
|
|
func (b *batch) LabelNames(context.Context, *storage.LabelHints, ...*labels.Matcher) ([]string, annotations.Annotations, error) {
|
|
return nil, nil, nil
|
|
}
|
|
|
|
func (b *batch) Close() error { return nil }
|
|
|
|
type seriesSet struct {
|
|
i int
|
|
samples []Sample
|
|
}
|
|
|
|
func (s *seriesSet) Next() bool {
|
|
s.i++
|
|
return s.i != len(s.samples)
|
|
}
|
|
|
|
func (s *seriesSet) At() storage.Series {
|
|
sample := s.samples[s.i]
|
|
if sample.fh != nil {
|
|
return promql.NewStorageSeries(promql.Series{
|
|
Metric: sample.metric,
|
|
Histograms: []promql.HPoint{{T: sample.t, H: sample.fh}},
|
|
})
|
|
} else {
|
|
return promql.NewStorageSeries(promql.Series{
|
|
Metric: sample.metric,
|
|
Floats: []promql.FPoint{{T: sample.t, F: sample.f}},
|
|
})
|
|
}
|
|
}
|
|
|
|
func (s *seriesSet) Err() error { return nil }
|
|
func (s *seriesSet) Warnings() annotations.Annotations { return nil }
|
|
|
|
// nopRuleEngine does not produce any new floats when evaluating rules.
|
|
type nopRuleEngine struct{}
|
|
|
|
func (n nopRuleEngine) NewScrapeBatch() Batch { return &nopBatch{} }
|
|
|
|
func (n nopRuleEngine) EvaluateRules(Batch, time.Time, labelsMutator) ([]Sample, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
type nopBatch struct{}
|
|
|
|
func (b *nopBatch) AddFloatSample(labels.Labels, int64, float64) {}
|
|
|
|
func (b *nopBatch) AddHistogramSample(labels.Labels, int64, *histogram.FloatHistogram) {
|
|
}
|
|
|
|
func (b *nopBatch) LabelValues(context.Context, string, *storage.LabelHints, ...*labels.Matcher) ([]string, annotations.Annotations, error) {
|
|
return nil, nil, nil
|
|
}
|
|
|
|
func (b *nopBatch) LabelNames(context.Context, *storage.LabelHints, ...*labels.Matcher) ([]string, annotations.Annotations, error) {
|
|
return nil, nil, nil
|
|
}
|
|
|
|
func (b *nopBatch) Select(context.Context, bool, *storage.SelectHints, ...*labels.Matcher) storage.SeriesSet {
|
|
return nil
|
|
}
|
|
|
|
func (b *nopBatch) Close() error { return nil }
|