Alerting: Fix migration to not add label "alertname" (#56509)

* do not add label alertname because it is overridden in state manager anyway
* update state manager to not consider labels with same value as dupe
This commit is contained in:
Yuriy Tseretyan
2022-10-07 15:06:53 -04:00
committed by GitHub
parent 4b2a940659
commit e2f1201382
2 changed files with 5 additions and 4 deletions
@@ -100,7 +100,6 @@ func addMigrationInfo(da *dashAlert) (map[string]string, map[string]string) {
func (m *migration) makeAlertRule(cond condition, da dashAlert, folderUID string) (*alertRule, error) {
lbls, annotations := addMigrationInfo(&da)
name := normalizeRuleName(da.Name)
lbls["alertname"] = name
annotations["message"] = da.Message
var err error