Send data to Event Hubs and Storage (Preview)
This article describes how to use the Azure Monitor Agent (AMA) to upload data to Azure Storage and Event Hubs. This feature is in preview.
The Azure Monitor Agent is the new, consolidated telemetry agent for collecting data from IaaS resources like virtual machines. By using the upload capability in this preview, you can upload the logs1 you send to Log Analytics workspaces to Event Hubs and Storage. Both data destinations use data collection rules to configure collection setup for the agents.
Note
Azure Diagnostics extension will be deprecated on March 31, 2026. After this date, Microsoft will no longer provide support for the Azure Diagnostics extension.
Footnotes
1: Not all data types are supported; refer to What's supported for specifics.
Migration from Azure Diagnostic Extensions for Linux and Windows (LAD/WAD)
- Azure Monitor Agent can collect and send data to multiple destinations, including Log Analytics workspaces, Azure Event Hubs, and Azure Storage.
- To check which extensions are installed on your VM, select Extensions + applications under Settings on your VM.
- Remove LAD or WAD after you set up Azure Monitor Agent to collect the same data to Event Hubs or Azure Storage to avoid duplicate data.
- As an alternative to storage, we highly recommend you set up a table with the Auxiliary plan in your Log Analytics workspace for cost-effective logging.
What's supported
Data types
Windows:
- Windows Event Logs – to eventhub and storage
- Perf counters – eventhub and storage
- IIS logs – to storage blob
- Custom logs – to storage blob
Linux:
- Syslog – to eventhub and storage
- Perf counters – to eventhub and storage
- Custom Logs / Log files – to storage
Operating systems
- Environments that are supported by the Azure Monitoring Agent on Windows and Linux
- This feature is only supported and planned to be supported for Azure VMs. There are no plans to bring this to on-premises or Azure Arc scenarios.
What's not supported
Data types
- Windows:
- ETW Logs (Coming in a later released)
- Windows Crash Dumps (not planned nor will be supported)
- Application Logs (not planned nor will be supported)
- .NET event source logs (not planned nor will be supported)
Prerequisites
A managed identity (either system or user) associated with the resources below. We highly recommend using user-assigned managed identity for better scalability and performance.
Create a data collection rule
Create a data collection rule for collecting events and sending to storage and event hub.
In the Azure portal's search box, type in template and then select Deploy a custom template.
Select Build your own template in the editor.
Paste this Azure Resource Manager template into the editor:
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "location": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "Location for all resources." } }, "dataCollectionRulesName": { "defaultValue": "[concat(resourceGroup().name, 'DCR')]", "type": "String" }, "storageAccountName": { "defaultValue": "[concat(resourceGroup().name, 'sa')]", "type": "String" }, "eventHubNamespaceName": { "defaultValue": "[concat(resourceGroup().name, 'eh')]", "type": "String" }, "eventHubInstanceName": { "defaultValue": "[concat(resourceGroup().name, 'ehins')]", "type": "String" } }, "resources": [ { "type": "Microsoft.Insights/dataCollectionRules", "apiVersion": "2022-06-01", "name": "[parameters('dataCollectionRulesName')]", "location": "[parameters('location')]", "kind": "AgentDirectToStore", "properties": { "dataSources": { "performanceCounters": [ { "streams": [ "Microsoft-Perf" ], "samplingFrequencyInSeconds": 10, "counterSpecifiers": [ "\\Process(_Total)\\Working Set - Private", "\\Memory\\% Committed Bytes In Use", "\\LogicalDisk(_Total)\\% Free Space", "\\Network Interface(*)\\Bytes Total/sec" ], "name": "perfCounterDataSource10" } ], "windowsEventLogs": [ { "streams": [ "Microsoft-Event" ], "xPathQueries": [ "Application!*[System[(Level=2)]]", "System!*[System[(Level=2)]]" ], "name": "eventLogsDataSource" } ], "iisLogs": [ { "streams": [ "Microsoft-W3CIISLog" ], "logDirectories": [ "C:\\inetpub\\logs\\LogFiles\\W3SVC1\\" ], "name": "myIisLogsDataSource" } ], "logFiles": [ { "streams": [ "Custom-Text-logs" ], "filePatterns": [ "C:\\JavaLogs\\*.log" ], "format": "text", "settings": { "text": { "recordStartTimestampFormat": "ISO 8601" } }, "name": "myTextLogs" } ] }, "destinations": { "eventHubsDirect": [ { "eventHubResourceId": "[resourceId('Microsoft.EventHub/namespaces/eventhubs', parameters('eventHubNamespaceName'), parameters('eventHubInstanceName'))]", "name": "myEh1" } ], "storageBlobsDirect": [ { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "blobNamedPerf", "containerName": "PerfBlob" }, { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "blobNamedWin", "containerName": "WinEventBlob" }, { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "blobNamedIIS", "containerName": "IISBlob" }, { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "blobNamedTextLogs", "containerName": "TxtLogBlob" } ], "storageTablesDirect": [ { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "tableNamedPerf", "tableName": "PerfTable" }, { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "tableNamedWin", "tableName": "WinTable" }, { "storageAccountResourceId": "[resourceId('Microsoft.Storage/storageAccounts/', parameters('storageAccountName'))]", "name": "tableUnnamed" } ] }, "dataFlows": [ { "streams": [ "Microsoft-Perf" ], "destinations": [ "myEh1", "blobNamedPerf", "tableNamedPerf", "tableUnnamed" ] }, { "streams": [ "Microsoft-Event" ], "destinations": [ "myEh1", "blobNamedWin", "tableNamedWin", "tableUnnamed" ] }, { "streams": [ "Microsoft-W3CIISLog" ], "destinations": [ "blobNamedIIS" ] }, { "streams": [ "Custom-Text-logs" ], "destinations": [ "blobNamedTextLogs" ] } ] } } ] }
Update the following values in the Azure Resource Manager template. See the example Azure Resource Manager template for a sample.
Event hub
Value Description dataSources
Define it per your requirements. The supported types for direct upload to Event Hubs for Windows are performanceCounters
andwindowsEventLogs
and for Linux, they'reperformanceCounters
andsyslog
.destinations
Use eventHubsDirect
for direct upload to the event hub.eventHubResourceId
Resource ID of the event hub instance.
NOTE: It isn't the event hub namespace resource ID.dataFlows
Under dataFlows
, include destination name.Storage table
Value Description dataSources
Define it per your requirements. The supported types for direct upload to storage Table for Windows are performanceCounters
,windowsEventLogs
and for Linux, they'reperformanceCounters
andsyslog
.destinations
Use storageTablesDirect
for direct upload to table storage.storageAccountResourceId
Resource ID of the storage account. tableName
The name of the Table where JSON blob with event data is uploaded to. dataFlows
Under dataFlows
, include destination name.Storage blob
Value Description dataSources
Define it per your requirements. The supported types for direct upload to storage blob for Windows are performanceCounters
,windowsEventLogs
,iisLogs
,logFiles
and for Linux, they'reperformanceCounters
,syslog
andlogFiles
.destinations
Use storageBlobsDirect
for direct upload to blob storage.storageAccountResourceId
The resource ID of the storage account. containerName
The name of the container where JSON blob with event data is uploaded to. dataFlows
Under dataFlows
, include destination name.Select Save.
Create DCR association and deploy Azure Monitor Agent
Use custom template deployment to create the DCR association and AMA deployment.
In the Azure portal's search box, type in template and then select Deploy a custom template.
Select Build your own template in the editor.
Paste this Azure Resource Manager template into the editor.
{ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", "contentVersion": "1.0.0.0", "parameters": { "vmName": { "defaultValue": "[concat(resourceGroup().name, 'vm')]", "type": "String" }, "location": { "type": "string", "defaultValue": "[resourceGroup().location]", "metadata": { "description": "Location for all resources." } }, "dataCollectionRulesName": { "defaultValue": "[concat(resourceGroup().name, 'DCR')]", "type": "String", "metadata": { "description": "Data Collection Rule Name" } }, "dcraName": { "type": "string", "defaultValue": "[concat(uniquestring(resourceGroup().id), 'DCRLink')]", "metadata": { "description": "Name of the association." } }, "identityName": { "type": "string", "defaultValue": "[concat(resourceGroup().name, 'UAI')]", "metadata": { "description": "Managed Identity" } } }, "resources": [ { "type": "Microsoft.Compute/virtualMachines/providers/dataCollectionRuleAssociations", "name": "[concat(parameters('vmName'),'/microsoft.insights/', parameters('dcraName'))]", "apiVersion": "2021-04-01", "properties": { "description": "Association of data collection rule. Deleting this association will break the data collection for this virtual machine.", "dataCollectionRuleId": "[resourceID('Microsoft.Insights/dataCollectionRules',parameters('dataCollectionRulesName'))]" } }, { "type": "Microsoft.Compute/virtualMachines/extensions", "name": "[concat(parameters('vmName'), '/AMAExtension')]", "apiVersion": "2020-06-01", "location": "[parameters('location')]", "dependsOn": [ "[resourceId('Microsoft.Compute/virtualMachines/providers/dataCollectionRuleAssociations', parameters('vmName'), 'Microsoft.Insights', parameters('dcraName'))]" ], "properties": { "publisher": "Microsoft.Azure.Monitor", "type": "AzureMonitorWindowsAgent", "typeHandlerVersion": "1.0", "autoUpgradeMinorVersion": true, "settings": { "authentication": { "managedIdentity": { "identifier-name": "mi_res_id", "identifier-value": "[resourceID('Microsoft.ManagedIdentity/userAssignedIdentities/',parameters('identityName'))]" } } } } } ] }
Select Save.
Troubleshooting
Use the following section to troubleshoot sending data to Event Hubs and Storage.
Data not found in storage account blob storage
- Check that the built-in role
Storage Blob Data Contributor
is assigned with managed identity on the storage account. - Check that the managed identity is assigned to the VM.
- Check that the AMA settings have managed identity parameter.
Data not found in storage account table storage
- Check that the built-in role
Storage Table Data Contributor
is assigned with managed identity on the storage account. - Check that the managed identity is assigned to the VM.
- Check that the AMA settings have managed identity parameter.
Data not flowing to event hub
- Check that the built-in role
Azure Event Hubs Data Sender
is assigned with managed identity on the event hub instance. - Check that the managed identity is assigned to the VM.
- Check that the AMA settings have managed identity parameter.
AMA and WAD/LAD Convergence
Will the Azure Monitoring Agent support data upload to Application Insights?
No, this support isn't a part of the roadmap. Application Insights are now powered by Log Analytics Workspaces.
Will the Azure Monitoring Agent support Windows Crash Dumps as a data type to upload?
No, this support isn't a part of the roadmap. The Azure Monitoring Agent is meant for telemetry logs and not large file types.
Does this mean the Linux (LAD) and Windows (WAD) Diagnostic Extensions are no longer supported/retired?
LAD and WAD will be retired on March 31, 2026. Beyond required security patches and bug/regression fixes there are no enhancements nor feature development planned for WAD/LAD. We highly recommend you move to the Azure Monitor Agent as soon as possible.
How to configure AMA for event hubs and storage data destinations
Today the configuration experience is by using the DCR API.
Will you still be actively developing on WAD and LAD?
WAD and LAD will only be getting security/patches going forward. Most engineering funding has gone to the Azure Monitoring Agent. We highly recommend migrating to the Azure Monitoring Agent to benefit from all its awesome capabilities.
See also
- For more information on creating a data collection rule, see Collect data from virtual machines using Azure Monitor Agent.