Scope
Monitor is an application that can watch site contents, DNS status, and SSL certificate status and detect unexpected changes and alert users when it finds them. It is one of our platform applications and can be found at /a/monitor.
Troubleshooting
Client Error Status 404
If you come across an issue with Client error status (404) as the description it’s caused by the typical reasoning behind a 404 status response. At the time that Monitor did the scan a resource was not found. To resolve this issue the site will need to be fixed by either adding the resource that’s being requested or removing the reference to the resource.

Determining where those references to the missing resource are can be done with the following process:
- Retrieve the
jobIdfrom the Monitor issue url
- Stick the retrieved
jobIdinto the following url:https://banno.com/a/monitor/api/jobs/<jobId>/resultand then load it up - That should retrieve a big block of json. You’re looking for the bit in the second half of the json where the 404’ed resource is in the
urlattribute and there’s an accompanyingloadedFromattribute like:{ "url": "https://www.homebankofar.com/img/loading.gif", "status": "ok", "linkedFrom": [], "loadedFrom": [ "https://www.homebankofar.com/", "https://www.homebankofar.com/index.htm" ] }, - The urls in the
loadedFromblock are the places where the Monitor run found the broken resource