Add additional tag/log to rules Manager Eval trace span. (#7708)
Signed-off-by: Callum Styan <callumstyan@gmail.com>
This commit is contained in:
parent
989260f7ed
commit
c7a17f6491
|
@ -576,6 +576,8 @@ func (g *Group) Eval(ctx context.Context, ts time.Time) {
|
|||
if _, ok := err.(promql.ErrQueryCanceled); !ok {
|
||||
level.Warn(g.logger).Log("msg", "Evaluating rule failed", "rule", rule, "err", err)
|
||||
}
|
||||
sp.SetTag("error", true)
|
||||
sp.LogKV("error", err)
|
||||
g.metrics.evalFailures.WithLabelValues(groupKey(g.File(), g.Name())).Inc()
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue