You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If an error occurs keep evaluating a rule as if it is owned
339
+
// If an error occurs evaluate a rule as if it is owned
341
340
// better to have extra datapoints for a rule than none at all
341
+
// TODO: add a temporary cache of owned rule values or something to fall back on
342
342
iferr!=nil {
343
+
level.Warn(util.Logger).Log("msg", "error reading ring to verify rule group ownership", "err", err)
343
344
ringCheckErrors.Inc()
344
345
returntrue
345
346
}
346
347
ifrlrs.Ingesters[0].Addr==r.lifecycler.Addr {
347
348
returntrue
348
349
}
349
-
level.Debug(util.Logger).Log("msg", "rule not owned, address does not match", "owner", rlrs.Ingesters[0].Addr, "current", r.cfg.LifecyclerConfig.Addr)
350
+
level.Debug(util.Logger).Log("msg", "rule group not owned, address does not match", "owner", rlrs.Ingesters[0].Addr, "current", r.cfg.LifecyclerConfig.Addr)
0 commit comments