In a previous version I recall being able to view the xml files for alerts on the host server. In version 2022.4.1 this folder is empty. Could you help point me in the right direction for where they are located?
You can view the XML files by exporting the alert in XML files. Or you can check this locationYour_Drive_SW_Installed:\Program Files\SolarWinds\Orion\Alerts
Looks like the default alerts are in that folder.
If you really want all of them you have to look in SWQL or the database. Using SWQL Studio (link below) you could query Orion.AlertConfigurations entity for the data. There is also an export verb on this entity as well which could be used to export all the XML manually.
Something like this would be a start:
SELECT ac.Name, ac.Enabled, ac.Trigger, ac.Reset FROM Orion.AlertConfigurations AS ac
https://github.com/solarwinds/OrionSDK/releases
solarwinds.github.io/.../Orion.AlertConfigurations.html
So these have moved to the database. Thank you. I'll try to find the setting I need to modify in the table.