Azure Portal Monitoring basics

Azure-Portal-Monitoring-basics_b

Within this post, I will focus on the basics of Availability and Performance monitoring within the Azure preview portal. This includes the creation of custom dashboards, adding and altering charts, enabling diagnostics and creating alerts.

Azure Portal Monitoring basics – Before we start

I think we all agree that service monitoring is crucial to prevent potential issues from happening and assure that all failures are promptly detected, minimizing the impact on the business. However, the question is, how can this be achieved within Azure? Well, like many things in life, it depends. If you don’t have a large amount of services hosted within Azure, the Azure preview portal is an excellent option. (Please see the section Azure monitoring: The next level where advanced tooling is covered)

Monitoring goals

To start building dashboards and spamming all IT operation guys with email alerts, we first need to define what we would like to know about our services. Let’s start with the following list, which will most likely cover all of our requirements.

  • Are the services running?
  • Can they cope with the load?
  • How do we know when something crucial happens?

Fortunately, there is some excellent tooling available within the Azure Portal, allowing us to make all of this noticeable.

1 – Dashboard / Startboard 101

At this point, open the Azure preview portal located at http://portal.azure.com. By default, the Portal Startboard is populated with some generic items. To remove items from the Startboard, right-click and select » Unpin from Startboard. Now, if you would like to change the size or location of an item, right-click and select » Customize which will enable the Edit mode. While in edit mode, it’s possible to drag the items around. To change the size, right-click on an item and select the desired size as provided within the context menu. Click on the button called Done or right-click » Done customizing

Azure-Portal-Monitoring-basics-1

2 – Add Azure Service Health resources

Within the Right menu pane, select Browse, scroll down, and select » Service Health. At this point, a new blade will appear listing all the services within Azure. Just choose the service you are interested in, another blade will pop up on the right. Here you can select the region you’re resources are located.

NOTE: For the demo I will be adding websites (North Europe, SE Asia) , Monitoring (global) and Virtual Machines (Japan East)

Azure-Portal-Monitoring-basics-2

3 – Adding service related information

Almost all services expose information like configuration settings, object counters, or pricing depending on the type of Azure service. Some of them are presenting some useful information for our Startboard, and others can be used as a simple shortcut.

Let’s see how this works by adding some new items to our Startboard. For this example, I will be adding the Container count, Estimated spend, and the Settings for a given storage account.

Azure-Portal-Monitoring-basics-3

From the right menu, select » Browse » Storage and choose a container. Within the details blade, right-click on Containers and select Pin to Startboard. After rearranging the items, my Startboard looks like this.

Azure-Portal-Monitoring-basics-4

4 – Enabling diagnostic collection

Before we start adding charts, it’s essential to know a bit more about the underlying data. Every type of service in Azure has its metrics, which makes sense. And every service instance has its diagnostic collection setup. By default, the diagnostic collection is only capturing a small number of parameters making it hard to build new reports.

To enable/configure diagnostic (I’m using a storage for the example), Open the object and click on any of the charts within the Monitoring section. A new blade will appear within the top of a button called Diagnostics. After clicking on Diagnostics, another configuration blade will show up containing all Diagnostics settings.

Azure-Portal-Monitoring-basics-5

NOTE: it’s important to note that the collection of diagnostics has to be configured on a service by services basis. If you have a VM based auto-scaling scenario, it’s required to enable diagnostics on all pre-created VM’s.

5 – Adding charts

We are finally at the part where charts get involved. When you want to add a new chart, it’s required to start with an existing chart found on the details blade of the service. I will be using a storage account again and right-click on TotalRequest today and then » Pin to Startboard.

Azure-Portal-Monitoring-basics-6

To customize this chart, open to the Startboard, right-click on the chart and select Edit Chart. The edit chart blade will display the available options (time/metrics) based on the service type, and diagnostics logging options enabled.

Azure-Portal-Monitoring-basics-7
All services expose different types of diagnostics data, so make sure to explore all available options. But as you can see, this allows the creation of some exciting Startboards.

6 – Alerts

Of course, no one has time to stare at the monitor all day, and this is where alerts come in.

When it comes to alerts, it’s essential to keep a baseline, allowing you to define what normal behavior would look like. For example, the CPU usage of a front-end service cannot be compared with an instance responsible for processing calculations in batch, etc.

To create a new alert, open the details blade of the service (I’m using a VM instance) and select Alert Rules. In the Alert rules blade, select New Alert.

Azure-Portal-Monitoring-basics-9

At this point, select the desired metric and conditions. For this example, I want to receive an alert if the CPU utilization is over 1% for 5 minutes and received the following email.

Azure-Portal-Monitoring-basics-10

And this is what you will see within the portal. And the Alert can be added as a dashboard indicator as well.

Azure-Portal-Monitoring-basics-11

Azure Monitoring: The next level

If you want to take monitoring to the next level, I would recommend looking at the following options:

System Center Operations Manager Monitoring

In case you already have SCOM (System Center Operations Manager) running on-premise, installing the System Center Management Pack for Windows Azure enables you to monitor the availability and performance of resources that are running on Windows Azure.
http://www.microsoft.com/en-us/download/details.aspx?id=38414

SCOM alternatives

There are alternatives for SCOM, which are Nagios and Zabbix. I know that there are many other monitoring platforms, but those are the only two with Azure support as far I’m aware of. So if you have existing investments in Nagios or Zabbix, it’s still possible to have a single place for monitoring your assets.

Nagios is an exciting platform and often used in Linux-based environments. The Nagios Azure plugin is available on Microsoft Open Technologies

Nagios for Azure Monitoring and Alerting
http://msopentech.com/opentech-projects/nagios_azure_monitoring/

http://www.nagios.org/
http://www.zabbix.com/

Azure Operational Insights

Azure Operational Insights (formerly known as System Center Advisor) is a service that analyzes Microsoft server software. Advisor collects data from your installations, analyzes it, and generates alerts that identify potential issues (such as missing security patches) or deviations from identified best practices with regard to configuration and usage. Advisor also provides both current and historical views of the configuration of servers in your environment.

https://preview.opinsights.azure.com/

Application Insights

Application Insights enables the option to quickly diagnose problems in your live application and understand what your users do with it. Data collection can be enabled by leveraging the SDK within the Visual Studio solution or installing the agent on the webserver.

http://azure.microsoft.com/en-us/services/application-insights/

Post Navigation