Introduction
In this blog post I will show you how to configure diagnostic settings on Azure resources, which allows you to store the data in blob storage or use it in other services, such as OMS Log Analytics.
Resource diagnostic logs and diagnostic settings
Many resources in Microsoft Azure emit diagnostic logs. These logs contain operational data about the resource. Depending on the type of resource, the logs contain information about audits, counters, errors, performance metrics, etc. The diagnostic logs can be stored or used by several other services in Azure, namely Storage Accounts, Event Hubs and OMS Log Analytics. This is configured in something that’s called a diagnostic ‘setting’.
Last year Microsoft added the capability to configure multiple resource diagnostic settings on a single resource. This allows us to send the diagnostic data to multiple outputs simultaneously. This could be very usefull in cases where you would like to share the diagnostic data with multiple teams, who each have their own Log Analytics workspace, for example.
Diagnostic settings in the Azure portal
The diagnostic settings of an Azure resource can be found by opening a resource in the Azure portal. In the menu on the left, under Monitoring, you’ll see Diagnostic logs. Below you can see I configured two Diagnostic settings which send diagnostic logs to two different OMS Log Analytics workspaces.

Configuring multiple diagnostic settings programmatically
The process of configuring multiple diagnostic settings on a particular Azure resource is pretty intuitive in the Azure portal. But what if you want to do this programmatically? At the moment of writing (Februari 2018), configuring multiple diagnostic settings cannot be done with the AzureRM Powershell module. The only way to accomplish this to use an Azure Resouce Manager template.
The trick is to include a child resource of the following type:
"type": "providers/diagnosticSettings"
The following code snippet is from a template that deploys a Logic App with two diagnostic settings. Notice the description of the Logic App and the child resources that it contains for the diagnostic settings.
The diagnostic settings are configured so that they send the Logic App “WorkflowRuntime” logs and performance metrics to two separate OMS Log Analytics workspaces.
For the full template, go here to the gist on Github.
How to know which logs and metrics are available?
Because each service in Azure is different, they generate different types of logs and metrics. So how do you know which logs and metrics are available for use in diagnostic settings?
The easiest way I found is to first configure the diagnostic settings on a resource using the Azure portal. The Azure portal will display the available logs and metrics that are available. In case of a Logic App this looks like this:

Then go to the Resource Group, and in the left menu, under Settings click on Automation Script. This generates an ARM template for the resources in your Resource Group, including the diagnostic settings that you configured on your resource(s).
To conclude
Although Powershell support for diagnostic settings is lacking, using ARM templates is a pretty good alternative. Perhaps it’s even your preferred method of deploying and configuration of your resources in Azure.
Hi Richard,
nice post.
One thing I don’t see in my Resource Group are diagnostic settings in the Automation script template after the diagnostic has been enabled on in my case Azure Analysis Service server.