Google च्या SRE पुस्तकातून, चार सुवर्ण संकेत म्हणजे विलंब, ट्रॅफिक, त्रुटी आणि संपृक्तता। जर तुम्ही वापरकर्त्या-सामोरे असलेल्या सिस्टमच्या बाबतीत फक्त चार गोष्टी मापन करू शकत असाल तर या गोष्टींचे मापन करा — एकत्र वे समस्यांचा विशाल बहुतेक भाग पकडतात।
चार संकेत
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
