You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
898 B

  1. # SITE_NAME Documentation
  2. SITE_NAME is a service for monitoring cron jobs and similar periodic processes:
  3. * SITE_NAME **listens for HTTP requests ("pings")** from services being monitored.
  4. * It **keeps silent** as long as pings arrive on time.
  5. * It **raises an alert** as soon as a ping does not arrive on time.
  6. SITE_NAME works as a [dead man's switch](https://en.wikipedia.org/wiki/Dead_man%27s_switch) for processes that need to
  7. run continuously or on regular, known schedule. For example:
  8. * filesystem backups, database backups
  9. * task queues
  10. * database replication status
  11. * report generation scripts
  12. * periodic data import and sync jobs
  13. * periodic antivirus scans
  14. * DDNS updater scripts
  15. * SSL renewal scripts
  16. SITE_NAME is *not* the right tool for:
  17. * monitoring website uptime by probing it with HTTP requests
  18. * collecting application performance metrics
  19. * error tracking
  20. * log aggregation