ऑब्जर्व्हेबिलिटी हे सिस्टमचे अंतर्गत स्थिति त्याच्या बाह्य आउटपुटमधून समजून घेण्याची क्षमता आहे — लॉग्स, मेट्रिक्स आणि ट्रेसद्वारे. हे सिस्टम चालवण्यासाठी, डिबग करण्यासाठी आणि राखरखाव करण्यासाठी आवश्यक आहे (विशेषतः वितरित सिस्टममध्ये), जेथे तुम्ही जे पाहू शकत नाही त्याचे व्यवस्थापन करू शकत नाही.
ऑब्जर्व्हेबिलिटीचे तीन स्तंभ
LOGS → timestamped records of events (what happened) → detailed, for debugging specific issues
METRICS → numerical measurements over time (CPU, latency, request rate, error rate) →
aggregate health/performance; dashboards; alerting
TRACES → follow a request's path through the system (across services) → understand flows,
find bottlenecks/failures in DISTRIBUTED systems (which service was slow?)
→ together: understand WHAT happened, the OVERALL state, and the PATH of requests.
