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.

95 lines
2.9 KiB

10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 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>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. </p>
  16. <h3>Reliability Guarantees</h3>
  17. <p>
  18. Health Checks is currently at an
  19. relatively early stage as you can probably tell.
  20. </p>
  21. <p>
  22. The service is currently run on single $5 Digital Ocean box.
  23. It can and will have ocassional outages. User data is however
  24. being backed up to Amazon S3 daily.
  25. </p>
  26. <p>
  27. If all this does not sound very inspiring,
  28. there are also alternative services:
  29. </p>
  30. <h3>Alternative Services</h3>
  31. <table class="table">
  32. <tr>
  33. <td>
  34. <a href="https://cronitor.io/">Cronitor.io</a>
  35. </td>
  36. <td>
  37. <p>One monitor is free.</p>
  38. <p>50 monitors is $24.95/mo.</p>
  39. </td>
  40. </tr>
  41. <tr>
  42. <td>
  43. <a href="https://deadmanssnitch.com/">Dead Man's Snitch</a>
  44. </td>
  45. <td>
  46. <p>One snitch is free.</p>
  47. <p>3 snitches is $5/mo.</p>
  48. <p>100 snitches is $19/mo.</p>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td>
  53. <a href="https://github.com/quantopian/coal-mine">Coal Mine</a>
  54. </td>
  55. <td>
  56. <p>Open Source.</p>
  57. <p>No hosted service. No web UI, just API.</p>
  58. </td>
  59. </tr>
  60. <tr>
  61. <td>
  62. <a href="http://www.pushmon.com/">PushMon</a>
  63. </td>
  64. <td>
  65. <p>Free during public beta.</p>
  66. </td>
  67. </tr>
  68. <tr>
  69. <td>
  70. <a href="https://steward.io">steward.io</a>
  71. </td>
  72. <td>
  73. <p>15 jobs is free.</p>
  74. <p>75 jobs is $7/mo.</p>
  75. </td>
  76. </tr>
  77. <tr>
  78. <td>
  79. <a href="https://www.cronalarm.com/">CronAlarm</a>
  80. </td>
  81. <td>
  82. <p>10 jobs is $5/mo.</p>
  83. <p>100 jobs is $20/mo.</p>
  84. </td>
  85. </tr>
  86. </table>
  87. </div>
  88. </div>
  89. {% endblock %}