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.

58 lines
2.4 KiB

10 years ago
10 years ago
10 years ago
8 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. {% extends "base.html" %}
  2. {% load staticfiles %}
  3. {% block title %}About - healthchecks.io{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-sm-12">
  7. <h3>Contact</h3>
  8. <p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
  9. <p>Twitter: <a href="https://twitter.com/healthchecks_io">@healthchecks_io</a></p>
  10. <p>Mailing address:</p>
  11. <address>
  12. <strong>Monkey See Monkey Do SIA</strong><br>
  13. Gaujas iela 4-2<br>
  14. Valmiera, LV-4201<br>
  15. Latvia
  16. </address>
  17. <h3>Open Source</h3>
  18. <p>
  19. healthchecks.io is an open source project. The code is on
  20. <a href="https://github.com/healthchecks/healthchecks">GitHub</a>,
  21. it has BSD license, and is accepting contributions.
  22. </p>
  23. <h3>Reliability Guarantees</h3>
  24. <p>
  25. The service is currently run on Google Cloud Platform.
  26. The app servers are load balanced, but the Postgres database
  27. currently is a single point of failure. The database does have
  28. daily backups. The ops team consists of a single person, so
  29. multi-hour or even multi-day outages are possible!
  30. </p>
  31. <p>
  32. While we can only guarantee a <em>best effort</em> availability,
  33. in practice the availability has exceeded 99.9% since the service
  34. publicly launched in July 2015. That is, until 20 August 2016,
  35. when the service <a href="https://medium.com/@healthchecks/outage-postmortem-20-august-2016-204297b9d3dd#.dahxkssp8">experienced a 24 hour outage</a>.
  36. </p>
  37. <p>
  38. There's also a number of alternative cron monitoring services, with
  39. different feature sets, different reliability guarantees and
  40. pricing options. If healthchecks.io doesn't seem like a good fit
  41. for you, why not check them out:
  42. <a href="https://cronitor.io/">Cronitor.io</a>,
  43. <a href="https://deadmanssnitch.com/">Dead Man's Snitch</a>,
  44. <a href="https://github.com/quantopian/coal-mine">Coal Mine</a>,
  45. <a href="http://www.pushmon.com/">PushMon</a>,
  46. <a href="https://steward.io">steward.io</a>,
  47. <a href="https://www.cronalarm.com/">CronAlarm</a>,
  48. <a href="https://wdt.io/">Watchdog Timer</a>.
  49. </p>
  50. </div>
  51. </div>
  52. {% endblock %}