Register Microsoft Insights Provider

Access Azure Cloud Shell to run CLI commands from your web browser using az.


  1. Check if Microsoft.Insights is not yet registered.
az provider show --namespace Microsoft.Insights --query "registrationState" --output table

Result ------------ Unregistered

  1. Register Microsoft.Insights
az provider register --namespace Microsoft.Insights

  1. Verify Microsoft.Insights has been registered successfully.
az provider show --namespace Microsoft.Insights --query "registrationState" --output table

Result ---------- Registered

Did this page help you?