Scalable Prometheus Architecture

What might a scalable monitoring architecture look like?

Published: Tuesday, Aug 10, 2021 Last modified: Friday, Apr 26, 2024

tl;dr don’t focus on real time, metrics are not events, scrape don’t push

Prometheus “prom” is the industry standard ecosystem within the observability space for metrics collection. Essentially it’s a time series database queried typically via https://grafana.com/. Architecture considerations come into play if you have extreme requirements, however most of the time you are scraping / collecting metrics via “metric exporters” between AWS accounts.

You can architect Proms to be in a hierarchy and use recording rules or plain federation to aggregate metrics upstream.

With Prometheus, remember you are sampling, you are not capturing every event. You are looking to observe trends. My philosophy is that it’s not healthy to stare at “real time” metrics coming in and try to make real time decisions. If I notice global:\n scrape_interval: 1m has been modified to <10s, I know people have misunderstood their metrics pipeline. Quick decisions are triggered off events from your Cloud provider, not metrics!

Metrics are not events, metrics are for observing trends to pre-empt any Site Reliability issues. Good SRE is knowing in a week you will run out of disk space (hint: predict_linear). Not alerting when it happens!

Normal “observability” Architecture

Metrics are fed (scraped) back to a central “observability” account for shared analysis either by

  1. Directly from the exporter’s /metrics endpoint (simplest)
  2. Federation; example on how to scrape via Federation…
  3. Recording rules which is a way of local team to express what’s important and deliver signal
Standard Prometheus Architecture

Notice at any time one can scrape the various addressable target endpoints, without relying on a potential central point of failure. This is not the case when you push metrics.

The highly scalable Architecture

You probably do not need https://thanos.io/ unless you are a Unicorn, maybe. With a dangerous fetish for data retention.

Scalable Prometheus Architecture

Unfortunately Thanos/Cortex/AWS encourage ingesting metrics via a push remote write, which hits up against Prometheus hierarchical federation and my love for scraping.

❤️Scraping is good, why?

Prom targets

Scraping sucks less and is idiomatic Architecture of Prometheus.