This is an extension to manage Azure Manaaged Grafana instances
Install this extension using the below CLI command
az extension add --name amg
Examples:
az grafana create \
-g MyResourceGroup \
-n MyGrafanaInstance \
--tags department=financial
Examples:
az grafana delete \
-n MyGrafanaInstance
Examples:
az grafana folder create \
-n MyGrafanaInstance \
--title "Health KPI"
Examples:
az grafana data-source create \
-n MyGrafanaInstance \
--definition ~/data-source-sql.json
Examples:
az grafana notification-channel create \
-n MyGrafanaInstance \
--definition ~/notification-channel-teams.json
Examples:
az grafana dashboard create \
-n MyGrafanaInstance \
--folder "Health KPI" \
--title "SQL status" \
--definition ~/dashboard-sql.json