Register Microsoft Insights Provider
Access Azure Cloud Shell to run CLI commands from your web browser using az.
- Check if Microsoft.Insights is not yet registered.
az provider show --namespace Microsoft.Insights --query "registrationState" --output table
Result
------------
Unregistered
- Register Microsoft.Insights
az provider register --namespace Microsoft.Insights
- Verify Microsoft.Insights has been registered successfully.
az provider show --namespace Microsoft.Insights --query "registrationState" --output table
Result
----------
Registered
Updated 4 months ago