Skip to content
This repository has been archived by the owner on Aug 31, 2019. It is now read-only.

Latest commit

 

History

History
33 lines (22 loc) · 1.4 KB

aks-107-container-insights.md

File metadata and controls

33 lines (22 loc) · 1.4 KB

AKS107: Azure Monitor for Containers

Enable monitoring using Azure CLI

CLUSTER_NAME="myazconlabs"
RESOURCE_GROUP="rg_azconlab"
az aks enable-addons -a monitoring -n $CLUSTER_NAME -g $RESOURCE_GROUP

(output)
provisioningState       : Succeeded

You can also enable the monitoring from either Azure Portal, Azure Resource Manager Template, or Azure Monitor dashboard.

For more detail, please see the following page:

Monitor AKS with Azure Monitor for Container


Top | Back | Next