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.

92 lines
2.8 KiB

10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 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>Who Runs This</h3>
  8. <p>
  9. Hello, my name is Pēteris Caune, I live in Riga, Latvia and do programming for living.
  10. You can contact me <a href="mailto:[email protected]">via email</a>.
  11. </p>
  12. <p>
  13. Code is on
  14. <a href="https://github.com/healthchecks/healthchecks">GitHub</a>,
  15. BSD license.
  16. </p>
  17. <h3>Reliability Guarantees</h3>
  18. <p>
  19. The service is currently run on single $5 Digital Ocean box.
  20. It can and will have ocassional outages. User data is however
  21. being backed up to Amazon S3 daily.
  22. </p>
  23. <p>
  24. If this does not sound very inspiring,
  25. there are also alternative services:
  26. </p>
  27. <h3>Alternative Cron Monitoring Services</h3>
  28. <table class="table">
  29. <tr>
  30. <td>
  31. <a href="https://cronitor.io/">Cronitor.io</a>
  32. </td>
  33. <td>
  34. <p>One monitor is free.</p>
  35. <p>50 monitors is $24.95/mo.</p>
  36. </td>
  37. </tr>
  38. <tr>
  39. <td>
  40. <a href="https://deadmanssnitch.com/">Dead Man's Snitch</a>
  41. </td>
  42. <td>
  43. <p>One snitch is free.</p>
  44. <p>3 snitches is $5/mo.</p>
  45. <p>100 snitches is $19/mo.</p>
  46. </td>
  47. </tr>
  48. <tr>
  49. <td>
  50. <a href="https://github.com/quantopian/coal-mine">Coal Mine</a>
  51. </td>
  52. <td>
  53. <p>Open Source.</p>
  54. <p>No hosted service. No web UI, just API.</p>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td>
  59. <a href="http://www.pushmon.com/">PushMon</a>
  60. </td>
  61. <td>
  62. <p>Free during public beta.</p>
  63. </td>
  64. </tr>
  65. <tr>
  66. <td>
  67. <a href="https://steward.io">steward.io</a>
  68. </td>
  69. <td>
  70. <p>15 jobs is free.</p>
  71. <p>75 jobs is $7/mo.</p>
  72. </td>
  73. </tr>
  74. <tr>
  75. <td>
  76. <a href="https://www.cronalarm.com/">CronAlarm</a>
  77. </td>
  78. <td>
  79. <p>10 jobs is $5/mo.</p>
  80. <p>100 jobs is $20/mo.</p>
  81. </td>
  82. </tr>
  83. </table>
  84. </div>
  85. </div>
  86. {% endblock %}