Skip to content

Commit

Permalink
Disable alerts migration (#20)
Browse files Browse the repository at this point in the history
* Disable alerts migration

* Update README.md
  • Loading branch information
bonclay7 committed Jul 25, 2023
1 parent e333b95 commit 0fbfcc2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
[![Build](https://github.com/aws-observability/amazon-managed-grafana-migrator/actions/workflows/go.yml/badge.svg)](https://github.com/aws-observability/amazon-managed-grafana-migrator/actions/workflows/go.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/aws-observability/amazon-managed-grafana-migrator)](https://goreportcard.com/report/github.com/aws-observability/amazon-managed-grafana-migrator)

🚨 Jul-25: Alerts migration are currently disabled with v0.1.9. See [#19](https://github.com/aws-observability/amazon-managed-grafana-migrator/issues/19)

🎉 Jul-19: [Amazon Grafana supports now in-place update from v8.4 to v9.4](https://aws.amazon.com/about-aws/whats-new/2023/07/amazon-managed-grafana-in-place-update-version-9-4/)

Expand Down
3 changes: 3 additions & 0 deletions internal/pkg/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,13 @@ func (a *App) Run(srcCustomGrafanaClient CustomGrafanaClient) error {
// log.Debug("Skipping alert migration for version", a.Dst.GrafanaVersion)
// }

log.Info("Skipping alert rules migration")
/*
alertsMigrated, err := a.migrateAlertRules(fx, srcCustomGrafanaClient)
if err != nil {
return err
}
log.Success("Migrated ", alertsMigrated, " alerts")
*/
return nil
}
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

const (
shortDescription = "Amazon Managed Grafana migration utility"
version = "0.1.8"
version = "0.1.9"
)

var region string
Expand Down

0 comments on commit 0fbfcc2

Please sign in to comment.