Forum Discussion
Rob-CTL
Jun 19, 2024Iron Contributor
Azure Logic apps and Azure Alerts - Getting info from the logs
Hi, I have been migrating from legacy log alerts to scheduled query rules which I use for monitoring our on-prem server. The process was painless but the new email alerts compared to the legacy ...
Matthias-Braun
Jun 24, 2024Brass Contributor
Hi Rob-CTL
I don't know the procedure directly, as I haven't yet done it via a logic app, but I have noticed the following:
The alert schema is inserted in point 8 (https://learn.microsoft.com/en-us/azure/azure-monitor/alerts/alerts-logic-apps?tabs=send-email#create-a-logic-app). This is the data that can be transferred/used from Azure.
The schema must therefore be extended. For example, the server name is:
,
"configurationItems": {
"type": "string"
}
Now the "configraitonItems" field should also be available in the Send to email v2 action. Assuming, obviously, that the alert contains these details.
I hope this helps you a bit
Matthias