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.

787 lines
28 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 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
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
6 years ago
6 years ago
9 years ago
9 years ago
  1. {% extends "base.html" %}
  2. {% load compress hc_extras i18n static %}
  3. {% block description %}
  4. <meta name="description" content="{% blocktrans %}Cron Monitoring. Monitor nightly backups, weekly reports, cron jobs and background tasks. Receive alerts when your tasks don't run on time.{% endblocktrans %}">
  5. {% endblock %}
  6. {% block head %}
  7. <link rel="canonical" href="{% site_root %}" />
  8. {% endblock %}
  9. {% block containers %}
  10. <div class="index-bleed">
  11. <div class="container">
  12. <div class="row">
  13. <div class="col-sm-12">
  14. <h1 id="pitch">
  15. {% trans "Monitoring for your nightly backups, weekly reports, cron jobs and background tasks." %}
  16. </h1>
  17. </div>
  18. </div>
  19. <div class="row">
  20. <div class="col-sm-6 col-sm-push-6">
  21. <p id="pitch-text">
  22. {% trans "Make HTTP requests to the Ping URL at regular intervals." %}
  23. <strong>
  24. {% blocktrans trimmed %}
  25. When the URL is not pinged on time,
  26. {{ site_name }} will send you an alert.
  27. {% endblocktrans %}
  28. </strong>
  29. {% trans "You can monitor any service that can make HTTP requests or send emails." %}
  30. </p>
  31. </div>
  32. <div class="col-sm-6 col-sm-pull-6">
  33. <h2 id="pitch-subtitle">
  34. {% blocktrans trimmed %}
  35. For each of your periodic tasks,
  36. {{ site_name }} provides an unique URL similar to this one:
  37. {% endblocktrans %}
  38. </h2>
  39. <div id="pitch-url">
  40. <code>{{ ping_url }}</code>
  41. </div>
  42. </div>
  43. </div>
  44. <div class="row">
  45. <div class="col-sm-12">
  46. <ul class="nav nav-tabs" role="tablist">
  47. <li class="active">
  48. <a href="#crontab" data-toggle="tab">Crontab</a>
  49. </li>
  50. <li>
  51. <a href="#bash" data-toggle="tab">Bash</a>
  52. </li>
  53. <li>
  54. <a href="#python" data-toggle="tab">Python</a>
  55. </li>
  56. <li class="hidden-xs">
  57. <a href="#ruby" data-toggle="tab">Ruby</a>
  58. </li>
  59. <li class="hidden-xs">
  60. <a href="#node" data-toggle="tab">Node.js</a>
  61. </li>
  62. <li class="hidden-xs">
  63. <a href="#go" data-toggle="tab">Go</a>
  64. </li>
  65. <li class="hidden-xs">
  66. <a href="#php" data-toggle="tab">PHP</a>
  67. </li>
  68. <li class="hidden-xs">
  69. <a href="#cs" data-toggle="tab">C#</a>
  70. </li>
  71. <li class="hidden-xs">
  72. <a href="#browser" data-toggle="tab">{% trans "Browser" %}</a>
  73. </li>
  74. <li class="hidden-xs">
  75. <a href="#powershell" data-toggle="tab">PowerShell</a>
  76. </li>
  77. <li class="hidden-xs">
  78. <a href="#email" data-toggle="tab">{% trans "Email" %}</a>
  79. </li>
  80. </ul>
  81. <div class="tab-content">
  82. <div role="tabpanel" class="tab-pane active" id="crontab">
  83. {% include "front/snippets/crontab.html" %}
  84. </div>
  85. <div role="tabpanel" class="tab-pane" id="bash">
  86. {% include "front/snippets/bash_curl.html" %}
  87. {% include "front/snippets/bash_wget.html" %}
  88. </div>
  89. <div role="tabpanel" class="tab-pane" id="python">
  90. {% include "front/snippets/python_urllib2.html" %}
  91. {% include "front/snippets/python_requests.html" %}
  92. </div>
  93. <div role="tabpanel" class="tab-pane" id="ruby">
  94. {% include "front/snippets/ruby.html" %}
  95. </div>
  96. <div role="tabpanel" class="tab-pane" id="node">
  97. {% include "front/snippets/node.html" %}
  98. </div>
  99. <div role="tabpanel" class="tab-pane" id="go">
  100. {% include "front/snippets/go.html" %}
  101. </div>
  102. <div role="tabpanel" class="tab-pane" id="php">
  103. {% include "front/snippets/php.html" %}
  104. </div>
  105. <div role="tabpanel" class="tab-pane" id="cs">
  106. {% include "front/snippets/cs.html" %}
  107. </div>
  108. <div class="tab-pane" id="browser">
  109. {% include "front/snippets/browser.html" %}
  110. </div>
  111. <div class="tab-pane" id="powershell">
  112. {% include "front/snippets/powershell.html" %}
  113. {% include "front/snippets/powershell_inline.html" %}
  114. </div>
  115. <div class="tab-pane tab-pane-email" id="email">
  116. <p>
  117. {% blocktrans trimmed %}
  118. As an alternative to HTTP requests,
  119. you can also report "liveness" by
  120. <strong>sending email messages</strong>.
  121. {% endblocktrans %}
  122. </p>
  123. <p>
  124. {% blocktrans trimmed %}
  125. You can instruct {{ site_name }} to look for a particular
  126. keyword in the subject line. This is handy when your backup
  127. software sends an email after every run, and uses a different
  128. subject line depending on success or failure.
  129. {% endblocktrans %}
  130. </p>
  131. </div>
  132. </div>
  133. </div>
  134. </div>
  135. </div>
  136. </div>
  137. {% if registration_open %}
  138. <div class="get-started-bleed">
  139. <div class="container">
  140. <div class="row">
  141. <div id="get-started" class="col-sm-8 col-sm-offset-2 text-center">
  142. <h1>
  143. {% blocktrans trimmed %}
  144. {{ site_name }} monitors the heartbeat messages sent by your cron
  145. jobs, services and APIs. Get immediate alerts when they don't
  146. arrive on schedule.
  147. {% endblocktrans %}
  148. </h1>
  149. <a href="#" data-toggle="modal" data-target="#signup-modal" class="btn btn-lg btn-primary">
  150. {% trans "Sign Up – It's Free" %}
  151. </a>
  152. </div>
  153. </div>
  154. </div>
  155. </div>
  156. {% endif %}
  157. <div class="container">
  158. <div class="row">
  159. <div class="col-sm-12">
  160. <h2 class="tour-title">
  161. {% trans "A quick peek of what's inside:" %}
  162. </h2>
  163. </div>
  164. </div>
  165. <div class="row tour-section">
  166. <div class="col-sm-8">
  167. <img
  168. class="img-responsive"
  169. src="{% static 'img/my_checks.png' %}"
  170. srcset="{% static 'img/my_checks.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  171. alt="My Checks page" />
  172. </div>
  173. <div class="col-sm-4">
  174. <h3>
  175. {% trans "Live-updating Dashboard" %}
  176. </h3>
  177. <p>
  178. {% blocktrans trimmed %}
  179. A list of your checks, one for each Cron job, daemon or
  180. scheduled task you want to monitor.
  181. {% endblocktrans %}
  182. </p>
  183. <p>
  184. {% blocktrans trimmed %}
  185. Give names and assign tags to your checks to easily recognize
  186. them later.
  187. {% endblocktrans %}
  188. </p>
  189. <p>
  190. {% blocktrans trimmed %}
  191. Tap on the integration icons to toggle them on and off.
  192. {% endblocktrans %}
  193. </p>
  194. <p>
  195. {% blocktrans trimmed %}
  196. Adjust Period and Grace time to match the
  197. periodicity and duration of your tasks.
  198. {% endblocktrans %}
  199. </p>
  200. </div>
  201. </div>
  202. <div class="row tour-section">
  203. <div class="col-sm-8">
  204. <img
  205. class="img-responsive"
  206. src="{% static 'img/period_grace.png' %}"
  207. srcset="{% static 'img/period_grace.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  208. alt="Period/Grace Time dialog" />
  209. </div>
  210. <div class="col-sm-4">
  211. <h3>{% trans "Simple Configuration" %}</h3>
  212. {% blocktrans trimmed %}
  213. Each check has configurable <strong>Period</strong> and <strong>Grace Time</strong> parameters.
  214. Depending on these parameters and time since the last ping, the check is in one of the
  215. following states:
  216. {% endblocktrans %}
  217. <table class="table">
  218. <tr>
  219. <td>
  220. <span class="status ic-new"></span>
  221. </td>
  222. <td>
  223. {% blocktrans trimmed %}
  224. New.
  225. A check that has been created, but has not received any pings yet.
  226. {% endblocktrans %}
  227. </td>
  228. </tr>
  229. <tr>
  230. <td>
  231. <span class="status ic-up"></span>
  232. </td>
  233. <td>
  234. {% blocktrans trimmed %}
  235. Up.
  236. The time since the last ping has not exceeded <strong>Period</strong>.
  237. {% endblocktrans %}
  238. </td>
  239. </tr>
  240. <tr>
  241. <td>
  242. <span class="status ic-grace"></span>
  243. </td>
  244. <td>
  245. {% blocktrans trimmed %}
  246. Late.
  247. The time since the last ping has exceeded <strong>Period</strong>,
  248. but has not yet exceeded <strong>Period</strong> + <strong>Grace</strong>.
  249. {% endblocktrans %}
  250. </td>
  251. </tr>
  252. <tr>
  253. <td>
  254. <span class="status ic-down"></span>
  255. </td>
  256. <td>
  257. {% blocktrans trimmed %}
  258. Down.
  259. The time since the last ping has exceeded <strong>Period</strong> + <strong>Grace</strong>.
  260. When a check goes from "Late" to "Down", {{ site_name }}
  261. sends you a notification.
  262. {% endblocktrans %}
  263. </td>
  264. </tr>
  265. </table>
  266. </div>
  267. </div>
  268. <div class="row tour-section">
  269. <div class="col-sm-8">
  270. <img
  271. class="img-responsive"
  272. src="{% static 'img/cron.png' %}"
  273. srcset="{% static 'img/cron.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  274. alt="Cron dialog" />
  275. </div>
  276. <div class="col-sm-4">
  277. <h3>{% trans "Cron Expression Support" %}</h3>
  278. <p>
  279. {% blocktrans trimmed %}
  280. Alternatively, you can define the expected ping dates and times
  281. using a cron expression. See
  282. {% endblocktrans %}
  283. <a href="{% url 'hc-docs-cron' %}">
  284. {% trans "Cron Syntax Cheatsheet" %}
  285. </a>
  286. {% blocktrans trimmed %}
  287. for the supported syntax features.
  288. {% endblocktrans %}
  289. </p>
  290. <p>
  291. {% blocktrans trimmed %}
  292. <strong>Grace Time</strong> specifies how "late" a ping can
  293. be before you are alerted. You should set it to be a little above
  294. the expected duration of your cron job.
  295. {% endblocktrans %}
  296. </p>
  297. </div>
  298. </div>
  299. <div class="row tour-section">
  300. <div class="col-sm-8">
  301. <img
  302. class="img-responsive"
  303. src="{% static 'img/check_details.png' %}"
  304. srcset="{% static 'img/check_details.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  305. alt="Details Page" />
  306. </div>
  307. <div class="col-sm-4">
  308. <h3>{% trans "Details and Event Log" %}</h3>
  309. <p>
  310. {% blocktrans trimmed %}
  311. You can add a longer, free-form description to each
  312. check. Leave notes and pointers for yourself and
  313. your team.
  314. {% endblocktrans %}
  315. </p>
  316. <p>
  317. {% blocktrans trimmed %}
  318. You can also see the log of received pings and
  319. sent "Down" notifications.
  320. {% endblocktrans %}
  321. </p>
  322. </div>
  323. </div>
  324. <div class="row tour-section">
  325. <div class="col-sm-8">
  326. <img
  327. class="img-responsive"
  328. src="{% static 'img/badges.png' %}"
  329. srcset="{% static 'img/badges.png'%} 1x, {% static 'img/[email protected]'%} 2x"
  330. alt="Details Page" />
  331. </div>
  332. <div class="col-sm-4">
  333. <h3>{% trans "Public Status Badges" %}</h3>
  334. <p>
  335. {% blocktrans trimmed %}
  336. {{ site_name }} provides status badges for each of the tags
  337. you have used. Additionally, the "{{ site_name }}" badge
  338. shows the overall status of all checks in your account.
  339. {% endblocktrans %}
  340. </p>
  341. <p>
  342. {% blocktrans trimmed %}
  343. The badges have public but hard-to-guess URLs.
  344. You can use them in your READMEs, dashboards, or status pages.
  345. {% endblocktrans %}
  346. </p>
  347. </div>
  348. </div>
  349. <div id="welcome-integrations" class="row">
  350. <div class="col-sm-12">
  351. <h2>{% trans "Integrations" %}<br>
  352. <small>
  353. {% trans "Set up multiple ways to get notified:" %}
  354. </small>
  355. </h2>
  356. </div>
  357. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  358. <div class="integration">
  359. <img src="{% static 'img/integrations/email.png' %}" class="icon" alt="" />
  360. <p>
  361. {% trans "Email" %}<br>
  362. <small>&nbsp;</small>
  363. </p>
  364. </div>
  365. </div>
  366. {% if enable_webhooks %}
  367. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  368. <div class="integration">
  369. <img src="{% static 'img/integrations/webhook.png' %}" class="icon" alt="" />
  370. <p>
  371. Webhooks<br>
  372. <small>&nbsp;</small>
  373. </p>
  374. </div>
  375. </div>
  376. {% endif %}
  377. {% if enable_slack %}
  378. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  379. {% if enable_slack_btn %}
  380. <a href="{% url 'hc-slack-help' %}" class="integration">
  381. <img src="{% static 'img/integrations/slack.png' %}" class="icon" alt="" />
  382. <p>
  383. Slack<br>
  384. <small>{% trans "Chat" %}</small>
  385. </p>
  386. </a>
  387. {% else %}
  388. <div class="integration">
  389. <img src="{% static 'img/integrations/slack.png' %}" class="icon" alt="" />
  390. <p>
  391. Slack<br>
  392. <small>{% trans "Chat" %}</small>
  393. </p>
  394. </div>
  395. {% endif %}
  396. </div>
  397. {% endif %}
  398. {% if enable_apprise %}
  399. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  400. <div class="integration">
  401. <img src="{% static 'img/integrations/apprise.png' %}" class="icon" alt="" />
  402. <p>
  403. Apprise<br>
  404. <small>{% trans "Push Notifications" %}</small>
  405. </p>
  406. </div>
  407. </div>
  408. {% endif %}
  409. {% if enable_discord %}
  410. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  411. <div class="integration">
  412. <img src="{% static 'img/integrations/discord.png' %}" class="icon" alt="" />
  413. <p>
  414. Discord<br>
  415. <small>{% trans "Chat" %}</small>
  416. </p>
  417. </div>
  418. </div>
  419. {% endif %}
  420. {% if enable_linenotify %}
  421. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  422. <div class="integration">
  423. <img src="{% static 'img/integrations/linenotify.png' %}" class="icon" alt="" />
  424. <p>LINE Notify<br><small>Chat</small></p>
  425. </div>
  426. </div>
  427. {% endif %}
  428. {% if enable_matrix %}
  429. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  430. <div class="integration">
  431. <img src="{% static 'img/integrations/matrix.png' %}" class="icon" alt="" />
  432. <p>
  433. Matrix<br>
  434. <small>{% trans "Chat" %}</small>
  435. </p>
  436. </div>
  437. </div>
  438. {% endif %}
  439. {% if enable_mattermost %}
  440. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  441. <div class="integration">
  442. <img src="{% static 'img/integrations/mattermost.png' %}" class="icon" alt="" />
  443. <p>
  444. Mattermost<br>
  445. <small>{% trans "Chat" %}</small>
  446. </p>
  447. </div>
  448. </div>
  449. {% endif %}
  450. {% if enable_msteams %}
  451. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  452. <div class="integration">
  453. <img src="{% static 'img/integrations/msteams.png' %}" class="icon" alt="" />
  454. <p>
  455. Microsoft Teams<br>
  456. <small>{% trans "Chat" %}</small>
  457. </p>
  458. </div>
  459. </div>
  460. {% endif %}
  461. {% if enable_opsgenie %}
  462. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  463. <div class="integration">
  464. <img src="{% static 'img/integrations/opsgenie.png' %}" class="icon" alt="" />
  465. <p>
  466. OpsGenie<br>
  467. <small>{% trans "Incident Management" %}</small>
  468. </p>
  469. </div>
  470. </div>
  471. {% endif %}
  472. {% if enable_pd %}
  473. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  474. {% if enable_pd_simple %}
  475. <a href="{% url 'hc-pagerduty-help' %}" class="integration">
  476. <img src="{% static 'img/integrations/pd.png' %}" class="icon" alt="" />
  477. <p>
  478. PagerDuty<br>
  479. <small>{% trans "Incident Management" %}</small>
  480. </p>
  481. </a>
  482. {% else %}
  483. <div class="integration">
  484. <img src="{% static 'img/integrations/pd.png' %}" class="icon" alt="" />
  485. <p>
  486. PagerDuty<br>
  487. <small>{% trans "Incident Management" %}</small>
  488. </p>
  489. </div>
  490. {% endif %}
  491. </div>
  492. {% endif %}
  493. {% if enable_pagertree %}
  494. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  495. <div class="integration">
  496. <img src="{% static 'img/integrations/pagertree.png' %}" class="icon" alt="" />
  497. <p>
  498. PagerTree<br>
  499. <small>{% trans "Incident Management" %}</small>
  500. </p>
  501. </div>
  502. </div>
  503. {% endif %}
  504. {% if enable_call %}
  505. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  506. <div class="integration">
  507. <img src="{% static 'img/integrations/call.png' %}" class="icon" alt="" />
  508. <p>
  509. {% trans "Phone Call" %}<br>
  510. <small>&nbsp;</small>
  511. </p>
  512. </div>
  513. </div>
  514. {% endif %}
  515. {% if enable_prometheus %}
  516. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  517. <a href="{% url 'hc-serve-doc' 'configuring_prometheus' %}" class="integration">
  518. <img src="{% static 'img/integrations/prometheus.png' %}" class="icon" alt="" />
  519. <p>
  520. Prometheus<br>
  521. <small>{% trans "Event Monitoring" %}</small>
  522. </p>
  523. </a>
  524. </div>
  525. {% endif %}
  526. {% if enable_pushbullet %}
  527. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  528. <div class="integration">
  529. <img src="{% static 'img/integrations/pushbullet.png' %}" class="icon" alt="" />
  530. <p>
  531. Pushbullet<br>
  532. <small>{% trans "Push Notifications" %}</small>
  533. </p>
  534. </div>
  535. </div>
  536. {% endif %}
  537. {% if enable_pushover %}
  538. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  539. <a href="{% url 'hc-pushover-help' %}" class="integration">
  540. <img src="{% static 'img/integrations/po.png' %}" class="icon" alt="" />
  541. <p>
  542. Pushover<br>
  543. <small>{% trans "Push Notifications" %}</small>
  544. </p>
  545. </a>
  546. </div>
  547. {% endif %}
  548. {% if enable_shell %}
  549. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  550. <div class="integration">
  551. <img src="{% static 'img/integrations/shell.png' %}" class="icon" alt="" />
  552. <p>
  553. {% trans "Shell Commands" %}<br>
  554. <small>&nbsp;</small>
  555. </p>
  556. </div>
  557. </div>
  558. {% endif %}
  559. {% if enable_signal %}
  560. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  561. <div class="integration">
  562. <img src="{% static 'img/integrations/signal.png' %}" class="icon" alt="" />
  563. <p>
  564. {% trans "Signal" %}<br>
  565. <small>{% trans "Chat" %}</small>
  566. </p>
  567. </div>
  568. </div>
  569. {% endif %}
  570. {% if enable_sms %}
  571. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  572. <div class="integration">
  573. <img src="{% static 'img/integrations/sms.png' %}" class="icon" alt="" />
  574. <p>
  575. {% trans "SMS" %}<br>
  576. <small>&nbsp;</small>
  577. </p>
  578. </div>
  579. </div>
  580. {% endif %}
  581. {% if enable_spike %}
  582. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  583. <div class="integration">
  584. <img src="{% static 'img/integrations/spike.png' %}" class="icon" alt="Spike.sh icon" />
  585. <p>
  586. Spike.sh<br>
  587. <small>{% trans "Incident Management" %}</small>
  588. </p>
  589. </div>
  590. </div>
  591. {% endif %}
  592. {% if enable_telegram %}
  593. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  594. <a href="{% url 'hc-telegram-help' %}" class="integration">
  595. <img src="{% static 'img/integrations/telegram.png' %}" class="icon" alt="" />
  596. <p>
  597. Telegram<br>
  598. <small>{% trans "Chat" %}</small>
  599. </p>
  600. </a>
  601. </div>
  602. {% endif %}
  603. {% if enable_trello %}
  604. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  605. <div class="integration">
  606. <img src="{% static 'img/integrations/trello.png' %}" class="icon" alt="" />
  607. <p>
  608. Trello<br>
  609. <small>{% trans "Project Management" %}</small>
  610. </p>
  611. </div>
  612. </div>
  613. {% endif %}
  614. {% if enable_victorops %}
  615. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  616. <div class="integration">
  617. <img src="{% static 'img/integrations/victorops.png' %}" class="icon" alt="" />
  618. <p>
  619. Splunk On-Call<br>
  620. <small>{% trans "Incident Management" %}</small>
  621. </p>
  622. </div>
  623. </div>
  624. {% endif %}
  625. {% if enable_whatsapp %}
  626. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  627. <div class="integration">
  628. <img src="{% static 'img/integrations/whatsapp.png' %}" class="icon" alt="" />
  629. <p>
  630. WhatsApp<br>
  631. <small>{% trans "Chat" %}</small>
  632. </p>
  633. </div>
  634. </div>
  635. {% endif %}
  636. {% if enable_zulip %}
  637. <div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
  638. <div class="integration">
  639. <img src="{% static 'img/integrations/zulip.png' %}" class="icon" alt="" />
  640. <p>
  641. Zulip<br>
  642. <small>{% trans "Chat" %}</small>
  643. </p>
  644. </div>
  645. </div>
  646. {% endif %}
  647. </div>
  648. <div class="row tour-section">
  649. <div class="col-sm-12">
  650. <h1 class="text-center">
  651. {% blocktrans trimmed %}
  652. What Can I Monitor With {{ site_name }}?
  653. {% endblocktrans %}
  654. </h1>
  655. </div>
  656. <div class="col-sm-6 use-cases">
  657. <h3>{% trans "Cron Jobs" %}</h3>
  658. <p>
  659. {% blocktrans trimmed %}
  660. {{ site_name }} monitoring is a great fit for cron jobs and cron-like
  661. systems (systemd timers, Jenkins build jobs, Windows Scheduled Tasks,
  662. wp-cron, uwsgi cron-like interface, Heroku Scheduler, ...). A failed
  663. cron job often has no immediate visible consequences and can go
  664. unnoticed for a long time.
  665. {% endblocktrans %}
  666. </p>
  667. <p>{% trans "Specific examples:" %}</p>
  668. <ul>
  669. <li>{% trans "Filesystem backups" %}</li>
  670. <li>{% trans "Database backups" %}</li>
  671. <li>{% trans "Daily, weekly, monthly report emails" %}</li>
  672. <li>{% trans "SSL renewals" %}</li>
  673. <li>{% trans "Business data import and sync" %}</li>
  674. <li>{% trans "Antivirus scans" %}</li>
  675. <li>{% trans "Dynamic DNS updates" %}</li>
  676. </ul>
  677. </div>
  678. <div class="col-sm-6 use-cases">
  679. <h3>{% trans "Processes, Services, Servers" %}</h3>
  680. <p>
  681. {% blocktrans trimmed %}
  682. You can use {{ site_name }} for lightweight server
  683. monitoring: ensuring a particular system service or the whole server
  684. is alive and healthy. Write a shell script that checks for a
  685. specific condition, and pings {{ site_name }} if successful. Run the
  686. shell script regularly.
  687. {% endblocktrans %}
  688. </p>
  689. <p>{% trans "Specific examples:" %}</p>
  690. <ul>
  691. <li>{% trans "Check a specific docker container is running" %}</li>
  692. <li>{% trans "Check a specific application process is running" %}</li>
  693. <li>{% trans "Check database replication lag" %}</li>
  694. <li>{% trans "Check system resources: free disk, free RAM, ..." %}</li>
  695. <li>
  696. {% blocktrans trimmed %}
  697. Send simple, unconditional "I'm alive" messages from your server
  698. (or your NAS, router, Raspberry Pi, ...)
  699. {% endblocktrans %}
  700. </li>
  701. </ul>
  702. </div>
  703. </div>
  704. <div class="row">
  705. {% if registration_open %}
  706. <div class="footer-jumbo-bleed">
  707. <div class="col-sm-10 col-sm-offset-1">
  708. <div id="footer-cta" class="jumbotron text-center">
  709. <p>
  710. {% blocktrans trimmed %}
  711. {{ site_name }} is a <strong>free</strong> and
  712. <a href="https://github.com/healthchecks/healthchecks">open source</a>
  713. service. Setting up monitoring for your cron jobs only takes minutes.
  714. Start sleeping better at nights!
  715. {% endblocktrans %}
  716. </p>
  717. <a href="#" data-toggle="modal" data-target="#signup-modal" class="btn btn-lg btn-primary">
  718. {% trans "Sign Up" %}
  719. </a>
  720. </div>
  721. </div>
  722. </div>
  723. {% endif %}
  724. </div>
  725. </div>
  726. {% include "front/signup_modal.html" %}
  727. {% endblock %}
  728. {% block scripts %}
  729. {% compress js %}
  730. <script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
  731. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  732. <script src="{% static 'js/clipboard.min.js' %}"></script>
  733. <script src="{% static 'js/snippet-copy.js' %}"></script>
  734. <script src="{% static 'js/signup.js' %}"></script>
  735. {% endcompress %}
  736. {% endblock %}