Using MachineLearningNotebooks with azure.com

Jupyter Notebook integration

✓ Official SDK
Install
# See https://github.com/Azure/MachineLearningNotebooks
Retrieve alert rule definitions in a subscription.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/providers/Microsoft.Insights/metricAlerts
Retrieve alert rule definitions in a resource group.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts
Retrieve an alert rule definition.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/metricAlerts/{ruleName}
SDK on GitHub 📄 API Docs
SDK
MachineLearningNotebooks
Jupyter Notebook
API
azure.com
azure.com:monitor-metricAlert_API
At a glance
Language Jupyter Notebook
Endpoints8
✓ Official