What are the three pillars of observability?

Easy Topic: Observability May 24, 2026

The three pillars of observability are:

  1. Metrics: Numerical measurements aggregated over time (CPU usage, request rate, error rate). Good for dashboards and alerting on trends.
  2. Logs: Timestamped records of discrete events. Good for debugging specific incidents and understanding what happened.
  3. Traces: Records of a request’s journey through a distributed system. Essential for finding bottlenecks and understanding service dependencies in microservices.

Together they answer: Is something wrong? (metrics), What is wrong? (logs), Where and why is it wrong? (traces).

Next → What is the difference between a Prometheus Gauge,...

Practice Similar Questions

Back to Observability Topics