Forum Discussion
Arslan11
Sep 07, 2020Brass Contributor
Azure monitoring alerts
I have got a custom query alert setup for disk space warning at the moment, which alerts if it is below 15%. Is there any way my alert can be more automated. For instance, if the space of the...
- Sep 11, 2020
HiArslan11
This is not possible out of the box as alerts has time window of maximum 24 hours. You can potentially make your own automation by using one of these:
- Azure Automation
- Logic App
- Azure Function
In any of these services you can write runbook/script/workflow that performs the following actions
- Logins to Azure
- Executes a query that gets the free disk space for the day before
- Executes a query that gets the free disk space for the current day
- Make comparison of the results and based on them configure some other automation like e-mail or something else.
Sep 11, 2020
HiArslan11
This is not possible out of the box as alerts has time window of maximum 24 hours. You can potentially make your own automation by using one of these:
- Azure Automation
- Logic App
- Azure Function
In any of these services you can write runbook/script/workflow that performs the following actions
- Logins to Azure
- Executes a query that gets the free disk space for the day before
- Executes a query that gets the free disk space for the current day
- Make comparison of the results and based on them configure some other automation like e-mail or something else.