Skip to content

Commit

Permalink
Change skipping rule group log level to warning
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitar Dimitrov <dimitar.dimitrov@grafana.com>
  • Loading branch information
dimitarvdimitrov committed Mar 22, 2023
1 parent 8d102dc commit bea61fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ruler/tenant_federation.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func removeFederatedRuleGroups(groups map[string]rulespb.RuleGroupList, logger l
amended := make(rulespb.RuleGroupList, 0, len(groupList))
for _, group := range groupList {
if len(group.GetSourceTenants()) > 0 {
level.Info(logger).Log("msg", "skipping federated rule group because rule federation is disabled", "namespace", group.Namespace, "group_name", group.Name, "user", userID)
level.Warn(logger).Log("msg", "skipping federated rule group because rule federation is disabled", "namespace", group.Namespace, "group_name", group.Name, "user", userID)
continue
}
amended = append(amended, group)
Expand Down

0 comments on commit bea61fa

Please sign in to comment.