{% if states.status == "dead" %} Looks like some services are not working. {% elif states.status == "sick" %} Looks like services are under high load. {% else %} Looks like everything is operating normally. {% endif %}
This status page automatically monitors our systems and alerts if something is not working as expected.
{% if states.status == "dead" %} Our team has been notified of the issue. If the outage persists, {% elif states.status == "sick" %} Services are slower than usual at the moment. If you are encountering an issue, {% else %} All systems are healthy at the moment. If you are encountering an issue, {% endif %} please contact our support.
Announcement
{% for announcement in announcements | reverse %}
{% endfor %}
{{ announcement.title | escape }}
{{ announcement.text | escape | linebreaksbr }}
{% if announcement.date %} {% endif %}-
{% for _, node in probe.nodes %}
-
{% for replica_id, replica in node.replicas %} {{ loop.index }} {% if replica.status == "dead" %} This replica reports as dead. {% elif replica.status == "sick" %} This replica reports as sick. {% else %} This replica reports as healthy. {% endif %} {% if node.mode == "local" %} Checked via a local probe (internal). {% elif node.mode == "script" %} Checked via a script probe. {% elif node.mode == "push" %} Checked via a push probe (Reporter). {% else %} Checked via a poll probe (HTTP, TCP or ICMP). {% endif %} {% if node.reveal_replica_name %} {{ replica_id }} {% endif %} {% if replica.metrics.system or replica.metrics.latency or replica.metrics.latency == 0 or replica.metrics.rabbitmq %} {% if replica.metrics.system %} Load: {{ replica.metrics.system.cpu }}% Memory: {{ replica.metrics.system.ram }}% {% endif %} {% if replica.metrics.latency or replica.metrics.latency == 0 %} Latency: {{ replica.metrics.latency }}ms {% endif %} {% if replica.metrics.rabbitmq %} Queue: {{ replica.metrics.rabbitmq.queue_ready }}R {{ replica.metrics.rabbitmq.queue_nack }}N {% endif %} {% endif %} {% endfor %}
{% endfor %}