mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-04 12:55:25 +00:00
Improve "Show Usage Examples" dialog, "Email" tab
This commit is contained in:
parent
867fae0db6
commit
b3f2bc64a5
5 changed files with 8 additions and 11 deletions
hc/front/management/commands
static/css
templates/front
|
@ -31,7 +31,6 @@ class Command(BaseCommand):
|
|||
_process("bash_curl", lexers.BashLexer())
|
||||
_process("bash_wget", lexers.BashLexer())
|
||||
_process("browser", lexers.JavascriptLexer())
|
||||
_process("crontab", lexers.BashLexer())
|
||||
_process("cs", lexers.CSharpLexer())
|
||||
_process("node", lexers.JavascriptLexer())
|
||||
_process("go", lexers.GoLexer())
|
||||
|
|
|
@ -187,7 +187,8 @@
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
#show-usage-modal pre {
|
||||
#show-usage-modal pre,
|
||||
#show-usage-modal #email {
|
||||
margin: 0;
|
||||
padding: 15px;
|
||||
}
|
||||
|
|
|
@ -93,10 +93,12 @@
|
|||
</div>
|
||||
<div class="tab-pane" id="email">
|
||||
<p>
|
||||
As an alternative to HTTP/HTTPS requests,
|
||||
you can "ping" this check by sending an
|
||||
email message to
|
||||
<code class="em">{{ check.email }}</code>
|
||||
Signal success or failure by sending an
|
||||
email message to <a href="mailto:{{ check.email }}">{{ check.email }}</a>.
|
||||
</p>
|
||||
<p>
|
||||
<a href="{% url 'hc-serve-doc' 'email' %}">Read more</a>
|
||||
about pinging via email.
|
||||
</p>
|
||||
</div>
|
||||
{% endwith %}
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
<div class="highlight"><pre><span></span><span class="c1"># m h dom mon dow command</span>
|
||||
<span class="m">8</span> <span class="m">6</span> * * * /home/user/backup.sh <span class="o">&&</span> curl -fsS -m <span class="m">10</span> --retry <span class="m">5</span> -o /dev/null {{ ping_url }}
|
||||
</pre></div>
|
|
@ -1,2 +0,0 @@
|
|||
# m h dom mon dow command
|
||||
8 6 * * * /home/user/backup.sh && curl -fsS -m 10 --retry 5 -o /dev/null PING_URL
|
Loading…
Add table
Reference in a new issue