awesome-prometheus-alerts/index.md
Samuel Berthe 0b89a764ee
Adding exporters: sidekiq, pgbouncer and thanos.
Adding rules to: prometheus, kubernetes, redis, docker and postgresql.
Arranging exporters into categories.
Showing number of rules.
Thanks to Gitlab for opensourcing alerting rules!
2020-03-09 21:18:56 +01:00

977 B

Prometheus logo{: .center-image }

AlertManager configuration

See here

Out of the box prometheus alerting rules

    {% for group in site.data.rules.groups %}
  • {% assign nbrRules = 0 %} {% for service in group.services %} {% for exporter in service.exporters %} {% for rule in exporter.rules %} {% assign nbrRules = nbrRules | plus: 1 %} {% endfor %} {% endfor %} {% endfor %}
    <h3>{{ group.name }} <small style="margin-left: 20px;">({{ nbrRules }} rules)</small></h3>
    <ul>
      {% for service in group.services %}
      <li>
        <a href="/rules#{{ service.name | replace: " ", "-" | downcase }}">
          {{ service.name }}
        </a>
      </li>
      {% endfor %}
    </ul>
    
  • {% endfor %}