Web Application Metrics Alerts Setup

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Setting Up Alerts on Web Application Metrics

Alerting without thought turns into noise: 200 notifications overnight, half resolved in 2 minutes. Teams stop responding — that's when real problems come. Goal: alerts only on situations requiring human action.

Principles Before Configuration

Alert on symptoms, not causes. Alert on "site unavailable to users" matters more than "CPU > 80%". High CPU is a cause that may not affect users.

Four Golden Signals (Google SRE Book):

  • Latency — response time
  • Traffic — rps/rpm
  • Errors — error percentage
  • Saturation — resource utilization

Start with the first three.

Burn rate instead of thresholds. "Error rate > 5% for 5 minutes" is better than "1 error per minute". Burn rate shows how fast you're consuming your SLO error budget.

Stack: Prometheus + Alertmanager + Grafana

Alert rules in Prometheus:

groups:
  - name: web-app
    rules:
      - alert: HighErrorRate
        expr: rate(http_requests_total{status=~"5.."}[5m]) > 0.05
        for: 5m
        labels:
          severity: critical
        annotations:
          summary: "Error rate {{ $value | humanizePercentage }} for {{ $labels.instance }}"

      - alert: SlowResponses
        expr: histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m])) > 1
        for: 10m
        labels:
          severity: warning
        annotations:
          summary: "p95 latency is {{ $value }}s"

      - alert: DatabaseConnections
        expr: pg_stat_activity_count > 90
        for: 5m
        labels:
          severity: warning

Timeline

Basic alerts for core metrics: 1 day. Refined thresholds and correlation across services: 2-3 days.