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
