Custom message Azure Alerts

153 views Asked by At

Custom message logs azure

I'm doing centralized monitoring, my idea was to send all the logs from my 40 data factories to a log workspace, and every time it fails, I'll be alerted, but does this have a chance of going wrong? Another question, I'm having difficulty customizing the error messages, I can't get RunError type information from the activity. Would you help me

1

There are 1 answers

0
RithwikBojja On

but does this have a chance of going wrong?

No there is no chance of going wrong, whenever a new log entry comes based on alert conditions it will alert.

I'm having difficulty customizing the error messages

You can use Azure Logic apps for customizing messages In logic apps you can send in email body your customized message too. For Logging you can use below Connector in Logic app:

enter image description here

This action should be inside Condition in Logic apps, You can use recurrence trigger as first action to check for alerts per particular time and then send email after this adx condition is true.

For further refer this SO-Thread1 and SO-thread2.