Google యొక్క SRE పుస్తకం నుండి, నాలుగు గోల్డెన్ సిగ్నల్లు latency, traffic, errors, మరియు saturation. మీరు ఒక వినియోగదారు-ఎదుర్కొన్న సిస్టమ్ గురించి నాలుగు విషయాలను మాత్రమే కొలవగలిస్తే, ఈ వాటిని కొలవండి — కలిసి అవి చాలా సమస్యలను పట్టుకుంటాయి.
నాలుగు సిగ్నల్లు
LATENCY how long a request takes
→ split SUCCESSFUL vs FAILED latency (a fast 500 isn't "fast")
→ track percentiles (p50/p95/p99), not averages
TRAFFIC how much demand the system is under
→ requests/sec, transactions/sec, concurrent sessions
ERRORS rate of failing requests
→ explicit (HTTP 500) and implicit (wrong content, too slow)
SATURATION how "full" the system is — its most constrained resource
→ CPU, memory, I/O, queue depth; a leading indicator of trouble
