-
Notifications
You must be signed in to change notification settings - Fork 569
/
Copy pathcompat.go
360 lines (312 loc) · 12.7 KB
/
compat.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
// SPDX-License-Identifier: AGPL-3.0-only
// Provenance-includes-location: https://github.com/cortexproject/cortex/blob/master/pkg/ruler/compat.go
// Provenance-includes-license: Apache-2.0
// Provenance-includes-copyright: The Cortex Authors.
package ruler
import (
"context"
"errors"
"time"
"github.com/go-kit/log"
"github.com/go-kit/log/level"
"github.com/grafana/dskit/grpcutil"
"github.com/grafana/dskit/user"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promauto"
"github.com/prometheus/prometheus/model/exemplar"
"github.com/prometheus/prometheus/model/histogram"
"github.com/prometheus/prometheus/model/labels"
"github.com/prometheus/prometheus/model/metadata"
"github.com/prometheus/prometheus/notifier"
"github.com/prometheus/prometheus/promql"
"github.com/prometheus/prometheus/promql/parser"
"github.com/prometheus/prometheus/rules"
"github.com/prometheus/prometheus/storage"
"github.com/grafana/mimir/pkg/mimirpb"
"github.com/grafana/mimir/pkg/querier"
querier_stats "github.com/grafana/mimir/pkg/querier/stats"
util_log "github.com/grafana/mimir/pkg/util/log"
)
// Pusher is an ingester server that accepts pushes.
type Pusher interface {
Push(context.Context, *mimirpb.WriteRequest) (*mimirpb.WriteResponse, error)
}
type PusherAppender struct {
failedWrites prometheus.Counter
totalWrites prometheus.Counter
ctx context.Context
pusher Pusher
labels [][]mimirpb.LabelAdapter
samples []mimirpb.Sample
histogramLabels [][]mimirpb.LabelAdapter
histograms []mimirpb.Histogram
userID string
}
func (a *PusherAppender) Append(_ storage.SeriesRef, l labels.Labels, t int64, v float64) (storage.SeriesRef, error) {
a.labels = append(a.labels, mimirpb.FromLabelsToLabelAdapters(l))
a.samples = append(a.samples, mimirpb.Sample{
TimestampMs: t,
Value: v,
})
return 0, nil
}
func (a *PusherAppender) AppendExemplar(_ storage.SeriesRef, _ labels.Labels, _ exemplar.Exemplar) (storage.SeriesRef, error) {
return 0, errors.New("exemplars are unsupported")
}
func (a *PusherAppender) UpdateMetadata(_ storage.SeriesRef, _ labels.Labels, _ metadata.Metadata) (storage.SeriesRef, error) {
return 0, errors.New("metadata updates are unsupported")
}
func (a *PusherAppender) AppendHistogram(_ storage.SeriesRef, l labels.Labels, t int64, h *histogram.Histogram, fh *histogram.FloatHistogram) (storage.SeriesRef, error) {
a.histogramLabels = append(a.histogramLabels, mimirpb.FromLabelsToLabelAdapters(l))
var hp mimirpb.Histogram
if h != nil {
hp = mimirpb.FromHistogramToHistogramProto(t, h)
} else {
hp = mimirpb.FromFloatHistogramToHistogramProto(t, fh)
}
a.histograms = append(a.histograms, hp)
return 0, nil
}
func (a *PusherAppender) AppendCTZeroSample(_ storage.SeriesRef, _ labels.Labels, _, _ int64) (storage.SeriesRef, error) {
return 0, errors.New("CT zero samples are unsupported")
}
func (a *PusherAppender) Commit() error {
a.totalWrites.Inc()
// Since a.pusher is distributor, client.ReuseSlice will be called in a.pusher.Push.
// We shouldn't call client.ReuseSlice here.
req := mimirpb.ToWriteRequest(a.labels, a.samples, nil, nil, mimirpb.RULE)
req.AddHistogramSeries(a.histogramLabels, a.histograms, nil)
_, err := a.pusher.Push(user.InjectOrgID(a.ctx, a.userID), req)
if err != nil {
// Don't report client errors, which are the same ones that would be reported with 4xx HTTP status code
// (e.g. series limits, duplicate samples, out of order, etc.)
if !mimirpb.IsClientError(err) {
a.failedWrites.Inc()
}
}
a.labels = nil
a.samples = nil
return err
}
func (a *PusherAppender) Rollback() error {
a.labels = nil
a.samples = nil
return nil
}
// PusherAppendable fulfills the storage.Appendable interface for prometheus manager
type PusherAppendable struct {
pusher Pusher
userID string
totalWrites prometheus.Counter
failedWrites prometheus.Counter
}
func NewPusherAppendable(pusher Pusher, userID string, totalWrites, failedWrites prometheus.Counter) *PusherAppendable {
return &PusherAppendable{
pusher: pusher,
userID: userID,
totalWrites: totalWrites,
failedWrites: failedWrites,
}
}
// Appender returns a storage.Appender
func (t *PusherAppendable) Appender(ctx context.Context) storage.Appender {
return &PusherAppender{
failedWrites: t.failedWrites,
totalWrites: t.totalWrites,
ctx: ctx,
pusher: t.pusher,
userID: t.userID,
}
}
// RulesLimits defines limits used by Ruler.
type RulesLimits interface {
EvaluationDelay(userID string) time.Duration
RulerTenantShardSize(userID string) int
RulerMaxRuleGroupsPerTenant(userID string) int
RulerMaxRulesPerRuleGroup(userID string) int
RulerRecordingRulesEvaluationEnabled(userID string) bool
RulerAlertingRulesEvaluationEnabled(userID string) bool
RulerSyncRulesOnChangesEnabled(userID string) bool
}
func MetricsQueryFunc(qf rules.QueryFunc, queries, failedQueries prometheus.Counter, remoteQuerier bool) rules.QueryFunc {
return func(ctx context.Context, qs string, t time.Time) (promql.Vector, error) {
queries.Inc()
result, err := qf(ctx, qs, t)
if err == nil {
return result, nil
}
// We only care about errors returned by underlying Queryable. Errors returned by PromQL engine are "user-errors",
// and not interesting here.
qerr := QueryableError{}
if errors.As(err, &qerr) {
origErr := qerr.Unwrap()
// Not all errors returned by Queryable are interesting, only those that would result in 500 status code.
//
// We rely on TranslateToPromqlApiError to do its job here... it returns nil, if err is nil.
// It returns promql.ErrStorage, if error should be reported back as 500.
// Other errors it returns are either for canceled or timed-out queriers (we're not reporting those as failures),
// or various user-errors (limits, duplicate samples, etc. ... also not failures).
//
// All errors will still be counted towards "evaluation failures" metrics and logged by Prometheus Ruler,
// but we only want internal errors here.
if _, ok := querier.TranslateToPromqlAPIError(origErr).(promql.ErrStorage); ok {
failedQueries.Inc()
}
// Return unwrapped error.
return result, origErr
} else if remoteQuerier {
// When remote querier enabled, consider anything an error except those with 4xx status code.
st, ok := grpcutil.ErrorToStatus(err)
if !(ok && st.Code()/100 == 4) {
failedQueries.Inc()
}
}
return result, err
}
}
func RecordAndReportRuleQueryMetrics(qf rules.QueryFunc, queryTime, zeroFetchedSeriesCount prometheus.Counter, logger log.Logger) rules.QueryFunc {
if queryTime == nil || zeroFetchedSeriesCount == nil {
return qf
}
return func(ctx context.Context, qs string, t time.Time) (promql.Vector, error) {
// Inject a new stats object in the context to be updated by various queryables used to execute
// the query (blocks store queryable, distributor queryable, etc.). When used by the query-frontend
// this is normally handled by middleware: instrumenting a QueryFunc is the ruler equivalent.
stats, ctx := querier_stats.ContextWithEmptyStats(ctx)
// If we've been passed a counter we want to record the wall time spent executing this request.
timer := prometheus.NewTimer(nil)
var err error
defer func() {
// Update stats wall time based on the timer created above.
stats.AddWallTime(timer.ObserveDuration())
wallTime := stats.LoadWallTime()
numSeries := stats.LoadFetchedSeries()
numBytes := stats.LoadFetchedChunkBytes()
numChunks := stats.LoadFetchedChunks()
shardedQueries := stats.LoadShardedQueries()
queryTime.Add(wallTime.Seconds())
// Do not count queries with errors for zero fetched series, or queries
// with no selectors that are not meant to fetch any series.
if err == nil && numSeries == 0 {
if expr, err := parser.ParseExpr(qs); err == nil {
if len(parser.ExtractSelectors(expr)) > 0 {
zeroFetchedSeriesCount.Add(1)
}
}
}
// Log ruler query stats.
logMessage := []interface{}{
"msg", "query stats",
"component", "ruler",
"query_wall_time_seconds", wallTime.Seconds(),
"fetched_series_count", numSeries,
"fetched_chunk_bytes", numBytes,
"fetched_chunks_count", numChunks,
"sharded_queries", shardedQueries,
"query", qs,
}
level.Info(util_log.WithContext(ctx, logger)).Log(logMessage...)
}()
result, err := qf(ctx, qs, t)
return result, err
}
}
// RulesManager mimics rules.Manager API. Interface is used to simplify tests.
type RulesManager interface {
// Run starts the rules manager. Blocks until Stop is called.
Run()
// Stop rules manager. (Unblocks Run.)
Stop()
// Update rules manager state.
Update(interval time.Duration, files []string, externalLabels labels.Labels, externalURL string, groupEvalIterationFunc rules.GroupEvalIterationFunc) error
// RuleGroups returns current rules groups.
RuleGroups() []*rules.Group
}
// ManagerFactory is a function that creates new RulesManager for given user and notifier.Manager.
type ManagerFactory func(ctx context.Context, userID string, notifier *notifier.Manager, logger log.Logger, reg prometheus.Registerer) RulesManager
func DefaultTenantManagerFactory(
cfg Config,
p Pusher,
queryable storage.Queryable,
queryFunc rules.QueryFunc,
overrides RulesLimits,
reg prometheus.Registerer,
) ManagerFactory {
totalWrites := promauto.With(reg).NewCounter(prometheus.CounterOpts{
Name: "cortex_ruler_write_requests_total",
Help: "Number of write requests to ingesters.",
})
failedWrites := promauto.With(reg).NewCounter(prometheus.CounterOpts{
Name: "cortex_ruler_write_requests_failed_total",
Help: "Number of failed write requests to ingesters.",
})
totalQueries := promauto.With(reg).NewCounter(prometheus.CounterOpts{
Name: "cortex_ruler_queries_total",
Help: "Number of queries executed by ruler.",
})
failedQueries := promauto.With(reg).NewCounter(prometheus.CounterOpts{
Name: "cortex_ruler_queries_failed_total",
Help: "Number of failed queries by ruler.",
})
var rulerQuerySeconds *prometheus.CounterVec
var zeroFetchedSeriesQueries *prometheus.CounterVec
if cfg.EnableQueryStats {
rulerQuerySeconds = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{
Name: "cortex_ruler_query_seconds_total",
Help: "Total amount of wall clock time spent processing queries by the ruler.",
}, []string{"user"})
zeroFetchedSeriesQueries = promauto.With(reg).NewCounterVec(prometheus.CounterOpts{
Name: "cortex_ruler_queries_zero_fetched_series_total",
Help: "Number of queries that did not fetch any series by ruler.",
}, []string{"user"})
}
return func(ctx context.Context, userID string, notifier *notifier.Manager, logger log.Logger, reg prometheus.Registerer) RulesManager {
var queryTime prometheus.Counter
var zeroFetchedSeriesCount prometheus.Counter
if rulerQuerySeconds != nil {
queryTime = rulerQuerySeconds.WithLabelValues(userID)
zeroFetchedSeriesCount = zeroFetchedSeriesQueries.WithLabelValues(userID)
}
// Wrap the query function with our custom logic.
wrappedQueryFunc := WrapQueryFuncWithReadConsistency(queryFunc, logger)
wrappedQueryFunc = MetricsQueryFunc(wrappedQueryFunc, totalQueries, failedQueries, cfg.QueryFrontend.Address != "")
wrappedQueryFunc = RecordAndReportRuleQueryMetrics(wrappedQueryFunc, queryTime, zeroFetchedSeriesCount, logger)
// Wrap the queryable with our custom logic.
wrappedQueryable := WrapQueryableWithReadConsistency(queryable, logger)
return rules.NewManager(&rules.ManagerOptions{
Appendable: NewPusherAppendable(p, userID, totalWrites, failedWrites),
Queryable: wrappedQueryable,
QueryFunc: wrappedQueryFunc,
Context: user.InjectOrgID(ctx, userID),
GroupEvaluationContextFunc: FederatedGroupContextFunc,
ExternalURL: cfg.ExternalURL.URL,
NotifyFunc: rules.SendAlerts(notifier, cfg.ExternalURL.String()),
Logger: log.With(logger, "component", "ruler", "insight", true, "user", userID),
Registerer: reg,
OutageTolerance: cfg.OutageTolerance,
ForGracePeriod: cfg.ForGracePeriod,
ResendDelay: cfg.ResendDelay,
AlwaysRestoreAlertState: true,
DefaultEvaluationDelay: func() time.Duration {
// Delay the evaluation of all rules by a set interval to give a buffer
// to metric that haven't been forwarded to Mimir yet.
return overrides.EvaluationDelay(userID)
},
})
}
}
type QueryableError struct {
err error
}
func (q QueryableError) Unwrap() error {
return q.err
}
func (q QueryableError) Error() string {
return q.err.Error()
}
func WrapQueryableErrors(err error) error {
if err == nil {
return err
}
return QueryableError{err: err}
}