Understand the three pillars of observability (metrics, logs, traces), learn the Four Golden Signals, RED and USE methods, and see why observability matters for modern systems. Starting state: nothing required. After this lesson: conceptual foundation for the course, plus a quick taste of real Prometheus metrics.
Understand the difference between monitoring and observability. Monitoring tells you when something is wrong; observability helps you understand why.
cat <<'EOF'
Observability = Metrics + Logs + Traces
Monitoring asks: Is it working?
Observability asks: Why is it broken?
EOFMonitoring relies on predefined checks — you decide in advance what to watch. Observability lets you ask arbitrary questions about your system after the fact, using the telemetry data it produces. A truly observable system lets you debug novel problems you didn't anticipate.
You see the three lines printed, summarizing the core distinction.