forked from GithubBackups/healthchecks
List Pushover and VictorOps on welcome page.
This commit is contained in:
parent
6bb08e16d6
commit
7d305e216c
@ -79,7 +79,8 @@ def index(request):
|
|||||||
ctx = {
|
ctx = {
|
||||||
"page": "welcome",
|
"page": "welcome",
|
||||||
"check": check,
|
"check": check,
|
||||||
"ping_url": check.url()
|
"ping_url": check.url(),
|
||||||
|
"enable_pushover": settings.PUSHOVER_API_TOKEN is not None
|
||||||
}
|
}
|
||||||
|
|
||||||
return render(request, "front/welcome.html", ctx)
|
return render(request, "front/welcome.html", ctx)
|
||||||
|
@ -82,3 +82,8 @@
|
|||||||
.tour-section {
|
.tour-section {
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.welcome-integrations img {
|
||||||
|
width: 22px;
|
||||||
|
height: 22px;
|
||||||
|
}
|
@ -134,7 +134,7 @@
|
|||||||
<footer class="footer">
|
<footer class="footer">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<ul>
|
<ul>
|
||||||
<li>© 2015 Monkey See Monkey Do SIA</li>
|
<li>© 2015-2016 Monkey See Monkey Do SIA</li>
|
||||||
<li><a href="{% url 'hc-privacy' %}">Privacy</a></li>
|
<li><a href="{% url 'hc-privacy' %}">Privacy</a></li>
|
||||||
{% if USE_PAYMENTS %}
|
{% if USE_PAYMENTS %}
|
||||||
<li><a href="{% url 'hc-pricing' %}">Pricing</a></li>
|
<li><a href="{% url 'hc-pricing' %}">Pricing</a></li>
|
||||||
|
@ -110,7 +110,7 @@
|
|||||||
<img src="{% static 'img/integrations/webhook.png' %}"
|
<img src="{% static 'img/integrations/webhook.png' %}"
|
||||||
alt="Webhook icon" />
|
alt="Webhook icon" />
|
||||||
|
|
||||||
<h2>WebHook</h2>
|
<h2>Webhook</h2>
|
||||||
<p>Receive a HTTP callback when a check goes down.</p>
|
<p>Receive a HTTP callback when a check goes down.</p>
|
||||||
|
|
||||||
<a href="{% url 'hc-add-webhook' %}" class="btn btn-primary">Add Integration</a>
|
<a href="{% url 'hc-add-webhook' %}" class="btn btn-primary">Add Integration</a>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<img src="{% static 'img/integrations/victorops.png' %}"
|
<img src="{% static 'img/integrations/victorops.png' %}"
|
||||||
alt="VictorOp icon" />
|
alt="VictorOps icon" />
|
||||||
|
|
||||||
<h2>VictorOps</h2>
|
<h2>VictorOps</h2>
|
||||||
<p>On-call scheduling, alerting, and incident tracking.</p>
|
<p>On-call scheduling, alerting, and incident tracking.</p>
|
||||||
|
@ -224,12 +224,61 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<p>
|
<p>
|
||||||
You can specify additional email addresses, webhooks,
|
You can set up additional ways to get notified:
|
||||||
<a href="https://www.pagerduty.com/">PagerDuty</a>,
|
|
||||||
<a href="https://slack.com/">Slack</a>
|
|
||||||
and <a href="https://www.hipchat.com/">HipChat</a>
|
|
||||||
accounts to send notifications to.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<table class="table welcome-integrations">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/email.png' %}" alt="Email icon" />
|
||||||
|
</td>
|
||||||
|
<td>Good old email messages.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/webhook.png' %}" alt="Webhook icon" />
|
||||||
|
</td>
|
||||||
|
<td>HTTP webhooks.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/slack.png' %}" alt="Slack icon" />
|
||||||
|
</td>
|
||||||
|
<td>Notifications in <a href="https://slack.com/">Slack</a> channel.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/hipchat.png' %}" alt="HipChat icon" />
|
||||||
|
</td>
|
||||||
|
<td>Notifications in <a href="https://hipchat.com/">HipChat</a> channel.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/pd.png' %}" alt="PagerDuty icon" />
|
||||||
|
</td>
|
||||||
|
<td>Open and resolve incidents in <a href="https://www.pagerduty.com/">PagerDuty</a>.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/victorops.png' %}" alt="VictorOps icon" />
|
||||||
|
</td>
|
||||||
|
<td>Open and resolve incidents in <a href="https://victorops.com/">VictorOps</a>.</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
{% if enable_pushover %}
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<img src="{% static 'img/integrations/pushover.png' %}" alt="Pushover icon" />
|
||||||
|
</td>
|
||||||
|
<td>Instant push notifications with <a href="https://pushover.net/">Pushover</a>.</td>
|
||||||
|
</tr>
|
||||||
|
{% endif %}
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h1>VictorOps</h1>
|
<h1>VictorOps</h1>
|
||||||
|
|
||||||
<p><a href="https://victorops.com//">VictorOps</a> is
|
<p><a href="https://victorops.com/">VictorOps</a> is
|
||||||
another incident management system similar to PagerDuty.
|
another incident management system similar to PagerDuty.
|
||||||
If you use or plan on using VitorOps, you can can integrate it
|
If you use or plan on using VitorOps, you can can integrate it
|
||||||
with your healthchecks.io account in few simple steps.</p>
|
with your healthchecks.io account in few simple steps.</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user