Forum Discussion
Azure monitoring alerts
- 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.
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.