Browse Source

Add a a screenshot of cron dialog.

pull/133/head
Pēteris Caune 7 years ago
parent
commit
647eca5b34
15 changed files with 28 additions and 3 deletions
  1. +3
    -1
      README.md
  2. BIN
      static/img/channels.png
  3. BIN
      static/img/[email protected]
  4. BIN
      static/img/cron.png
  5. BIN
      static/img/[email protected]
  6. BIN
      static/img/intro-create-check.png
  7. BIN
      static/img/my_checks.png
  8. BIN
      static/img/[email protected]
  9. BIN
      static/img/period_grace.png
  10. BIN
      static/img/[email protected]
  11. BIN
      stuff/screenshots/channels.png
  12. BIN
      stuff/screenshots/cron.png
  13. BIN
      stuff/screenshots/my_checks.png
  14. BIN
      stuff/screenshots/period_grace.png
  15. +25
    -2
      templates/front/welcome.html

+ 3
- 1
README.md View File

@ -10,6 +10,8 @@
![Screenshot of Period/Grace dialog](/stuff/screenshots/period_grace.png?raw=true "Period/Grace Dialog")
![Screenshot of Cron dialog](/stuff/screenshots/cron.png?raw=true "Cron Dialog")
![Screenshot of Channels page](/stuff/screenshots/channels.png?raw=true "Channels Page")
healthchecks is a watchdog for your cron jobs. It's a web server that listens for pings from your cron jobs, plus a web interface.
@ -24,7 +26,7 @@ The building blocks are:
## Setting Up for Development
These are instructions for setting up HealthChecks Django app
These are instructions for setting up healthchecks Django app
in development environment.
* prepare directory for project code and virtualenv:


BIN
static/img/channels.png View File

Before After
Width: 750  |  Height: 453  |  Size: 19 KiB Width: 750  |  Height: 453  |  Size: 19 KiB

BIN
static/img/[email protected] View File

Before After
Width: 1200  |  Height: 724  |  Size: 24 KiB Width: 1200  |  Height: 724  |  Size: 25 KiB

BIN
static/img/cron.png View File

Before After
Width: 750  |  Height: 453  |  Size: 25 KiB

BIN
static/img/[email protected] View File

Before After
Width: 1200  |  Height: 724  |  Size: 30 KiB

BIN
static/img/intro-create-check.png View File

Before After
Width: 700  |  Height: 264  |  Size: 38 KiB

BIN
static/img/my_checks.png View File

Before After
Width: 750  |  Height: 453  |  Size: 22 KiB Width: 750  |  Height: 453  |  Size: 22 KiB

BIN
static/img/[email protected] View File

Before After
Width: 1200  |  Height: 724  |  Size: 28 KiB Width: 1200  |  Height: 724  |  Size: 27 KiB

BIN
static/img/period_grace.png View File

Before After
Width: 750  |  Height: 453  |  Size: 18 KiB Width: 750  |  Height: 453  |  Size: 18 KiB

BIN
static/img/[email protected] View File

Before After
Width: 1200  |  Height: 724  |  Size: 23 KiB Width: 1200  |  Height: 724  |  Size: 23 KiB

BIN
stuff/screenshots/channels.png View File

Before After
Width: 1200  |  Height: 724  |  Size: 24 KiB Width: 750  |  Height: 453  |  Size: 19 KiB

BIN
stuff/screenshots/cron.png View File

Before After
Width: 750  |  Height: 453  |  Size: 25 KiB

BIN
stuff/screenshots/my_checks.png View File

Before After
Width: 1200  |  Height: 724  |  Size: 28 KiB Width: 750  |  Height: 453  |  Size: 22 KiB

BIN
stuff/screenshots/period_grace.png View File

Before After
Width: 1200  |  Height: 724  |  Size: 23 KiB Width: 750  |  Height: 453  |  Size: 18 KiB

+ 25
- 2
templates/front/welcome.html View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% load compress humanize staticfiles %}
{% load compress hc_extras humanize staticfiles %}
{% block containers %}
<div class="index-bleed">
@ -206,7 +206,7 @@
<td>
Down.
Time since last ping has exceeded <strong>Period</strong> + <strong>Grace</strong>.
When check goes from "Late" to "Down", HealthChecks
When check goes from "Late" to "Down", {% site_name %}
sends you a notification.
</td>
</tr>
@ -215,6 +215,29 @@
</div>
</div>
<div class="row tour-section">
<div class="col-sm-8">
<img
class="img-responsive"
src="{% static 'img/cron.png' %}"
srcset="{% static 'img/cron.png'%} 1x, {% static 'img/[email protected]'%} 2x"
alt="Cron dialog" />
</div>
<div class="col-sm-4">
<p>
Alternatively, you can define the expected ping dates and times
using a cron expression. See
<a href="{% url 'hc-docs-cron' %}">Cron Syntax Cheatsheet</a>
for the supported syntax features.
</p>
<p>
<strong>Grace Time</strong> specifies how "late" a ping can
be before you will be alerted. Set it to be a little above
the expected duration of your cron job.
</p>
</div>
</div>
<div class="row tour-section">
<div class="col-sm-8">
<img


Loading…
Cancel
Save