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
