|
|
- {% extends "base.html" %}
- {% load humanize static hc_extras %}
-
- {% block title %}PagerDuty Integration for {% site_name %}{% endblock %}
-
-
- {% block content %}
- <div class="row">
- <div class="col-sm-12">
- <h1>PagerDuty</h1>
-
- <div class="jumbotron">
- {% if request.user.is_authenticated %}
- <p>If your team uses <a href="https://www.pagerduty.com">PagerDuty</a>,
- you can set up {% site_name %} to create a PagerDuty incident when
- a check goes down, and resolve it when a check goes back up.</p>
-
- {% if connect_url %}
- <div class="text-center">
- <div class="text-center">
- <a href="{{ connect_url|safe }}">
- <img
- alt="Alert with PagerDuty"
- height="55" width="299"
- src="{% static 'img/integrations/pd_connect_button.png' %}" />
- </a>
- </div>
- </div>
- {% endif %}
-
- {% else %}
- <p>
- {% site_name %} is a <strong>free</strong> and
- <a href="https://github.com/healthchecks/healthchecks">open source</a>
- service for monitoring your cron jobs, background processes and
- scheduled tasks. Before adding PagerDuty integration, please log into
- {% site_name %}:</p>
-
- <div class="text-center">
- <a href="{% url 'hc-login' %}"
- class="btn btn-primary btn-lg">Sign In</a>
- </div>
- {% endif %}
- </div>
-
- <h2>Setup Guide</h2>
-
- {% if not connect_url %}
- <div class="row ai-step">
- <div class="col-sm-6">
- <span class="step-no"></span>
- <p>
- {% if request.user.is_authenticated %}
- Go
- {% else %}
- After logging in, go
- {% endif %}
-
- to the <strong>Integrations</strong> page,
- and click on <strong>Add Integration</strong> next to the
- PagerDuty integration.
- </p>
- </div>
- <div class="col-sm-6">
- <img
- class="ai-guide-screenshot"
- alt="Screenshot"
- src="{% static 'img/integrations/setup_pdc_0.png' %}">
- </div>
- </div>
- {% endif %}
-
- <div class="row ai-step">
- <div class="col-sm-6">
- <span class="step-no"></span>
- <p>
- Click on "Alert with PagerDuty", and you will be
- asked to log into your PagerDuty account.
- </p>
- </div>
- <div class="col-sm-6">
- <img
- class="ai-guide-screenshot"
- alt="Screenshot"
- src="{% static 'img/integrations/setup_pdc_1.png' %}">
- </div>
- </div>
-
- <div class="row ai-step">
- <div class="col-sm-6">
- <span class="step-no"></span>
- <p>
- Next, PagerDuty will let set the name and escalation policy
- for this integration.
- </p>
- </div>
- <div class="col-sm-6">
- <img
- class="ai-guide-screenshot"
- alt="Screenshot"
- src="{% static 'img/integrations/setup_pdc_2.png' %}">
- </div>
- </div>
-
- <div class="row ai-step">
- <div class="col-sm-6">
- <span class="step-no"></span>
- <p>
- And that is all! You will then be redirected back to
- "Integrations" page on {% site_name %} and see
- the new integration!
- </p>
- </div>
- <div class="col-sm-6">
- <img
- class="ai-guide-screenshot"
- alt="Screenshot"
- src="{% static 'img/integrations/setup_pdc_3.png' %}">
- </div>
- </div>
- </div>
- </div>
- {% endblock %}
|