#Monitoring Fundamentals

Core concepts of observability and monitoring.


#Three Pillars of Observability

PillarDescriptionTools
MetricsNumeric values over timePrometheus
LogsEvent recordsELK, Loki
TracesRequest flowJaeger

#Key Metrics

MetricDescription
LatencyResponse time
TrafficRequests per second
ErrorsError rate
SaturationResource usage

#Golden Signals (Google SRE)

  1. Latency - Time to serve a request
  2. Traffic - Demand on the system
  3. Errors - Rate of failed requests
  4. Saturation - How "full" is the system

[!TIP] Pro Tip: Start with the four golden signals!