All glossary terms
Verify

Four golden signals

The four golden signals — latency, traffic, errors, saturation — are the minimum monitoring set Google SRE recommends for any user-facing service. Together they cover the questions 'is the service responding quickly enough?', 'how much load is it handling?', 'how often is it failing?', and 'how close to its capacity ceiling?'.

The framing comes from chapter 6 of Google's Site Reliability Engineering book. Latency tracks both successful and failed requests separately — a fast error is still an error. Traffic is the demand placed on the service (RPS, concurrent users, queue depth). Errors are the rate of failed requests, broken down by failure mode. Saturation is the fullness of the most-constrained resource (CPU, memory, IOPS, queue depth) and is the leading indicator for upcoming capacity problems. A service instrumented for the four golden signals plus a small set of business-specific SLIs covers most operational diagnosis needs without the dashboard sprawl that comes from monitoring everything.

Related terms