Forum Discussion
BHill777
Apr 26, 2022Copper Contributor
FTP Service outage Alert needed on Azure vm
Greetings! I have a customer facing server in Azure that needs alerts in place due to the critical nature of it's use. I have alerts in place for the basic functions. However, I am curious to kno...
Aurel
Microsoft
May 09, 2022You need to add a filter on the service display name in the query :
ConfigurationChange
| where TimeGenerated > ago(30m
| where SvcDisplayName =~ "your service display name"
| where ConfigChangeType == "WindowsServices" and SvcChangeType == "State"
| where SvcPreviousState == "Running" and SvcState == "Stopped"
ConfigurationChange
| where TimeGenerated > ago(30m
| where SvcDisplayName =~ "your service display name"
| where ConfigChangeType == "WindowsServices" and SvcChangeType == "State"
| where SvcPreviousState == "Running" and SvcState == "Stopped"
BHill777
May 09, 2022Copper Contributor
Will give this a shot, thank you for the response.