Observability Engineering MOC

A book-shaped table of contents for observability engineering: foundations through architecture, metrics, logging, tracing, profiling, OpenTelemetry, instrumentation, Kubernetes/cloud, data platforms, visualization, alerting, SRE integration, cost, security, platform engineering, AI-driven operations, and MAANG interview preparation — cross-linking existing prometheus/grafana-cloud/kubernetes/sre/platform-engineering notes instead of duplicating them.

Observability Engineering

If this were a book, this page is the table of contents. Each Part below is a chapter; each chapter links out to the concepts, designs, and platform notes that already exist elsewhere in this wiki instead of duplicating them. Unwritten chapters are listed as Planned rows, not empty files.

Parts

00 — Foundations of Observability

The mental models that separate observability from monitoring: control theory, the signal types available, the lifecycle a signal travels through, and the maturity stages a team or platform progresses through.

01 — Observability Architecture

The platform-level architectural decisions that shape everything downstream — how data flows in, where control decisions live, and how the platform stays available and fair across tenants.

02 — Metrics Engineering

The time-series data model in depth — types, histograms, cardinality, storage engines, and query performance. See also the dedicated Prometheus book for full PromQL and production-operations depth.

03 — Logging Engineering

Structured logging, schema design, correlation, and the pipeline/cost/search concerns specific to log data at scale.

04 — Distributed Tracing

Why tracing exists, how a trace is modeled and propagated, sampling-strategy tradeoffs, and how stored traces support service-graph and critical-path analysis. See also Tempo and Jaeger for backend-specific detail.

05 — Continuous Profiling

Sampling-based CPU, memory, heap, and concurrency profiling, and what changes when profiling runs continuously in production rather than on demand.

06 — OpenTelemetry

OpenTelemetry’s architecture end to end — protocol, SDK internals, instrumentation strategy, semantic conventions, and Collector pipeline design and scaling.

07 — Instrumentation Patterns

A catalog of instrumentation approaches across common workload shapes — APIs, microservices, messaging, data stores, Kubernetes, serverless, and batch/background work.

08 — Kubernetes Observability

Kubernetes-native telemetry sources from control plane to container runtime, plus service-mesh and eBPF-based collection. See also the Kubernetes book’s Observability Part for kubectl-level operational detail.

09 — Cloud Observability

Native telemetry surfaces across AWS, Azure, and Google Cloud, and the added complexity of hybrid and multi-cloud environments.

10 — Observability Data Platforms

The storage backends underneath the signals covered elsewhere in this book — Prometheus/Mimir for metrics, Loki for logs, Tempo for traces, Pyroscope for profiles, and the Elasticsearch/ClickHouse/OpenSearch family for general-purpose event storage. See also grafana-cloud/README.md for Grafana Cloud-specific operational depth on Mimir/Loki/Tempo/Pyroscope.

11 — Visualization

Dashboard design principles and the golden-signals/RED/USE framing that keeps a dashboard answering real questions, across executive, engineering, and business-facing audiences.

12 — Alert Engineering

Alert design philosophy — symptom-based alerting, SLO-derived thresholds, deduplication and routing — and the on-call practice built on top of it.

13 — Reliability & SRE Integration

SLIs, SLOs, and error budgets as the reliability contract observability serves, plus the incident detection, response, postmortem, and chaos-engineering practices built on that contract. See also sre/README.md for the broader SRE discipline this integrates with.

14 — Cost Engineering

The cost drivers behind an observability platform’s bill, and the sampling, downsampling, retention, compression, and tiering levers used to control it.

15 — Security & Governance

Access control, tenancy isolation, and the privacy/compliance/secret-management obligations that apply specifically to telemetry data.

16 — Observability Platform Engineering

Building observability as a self-service, paved-road capability on an internal developer platform — pipelines, observability-as-code, GitOps, and platform APIs.

17 — AI & Intelligent Observability

AIOps, automated root-cause analysis, anomaly and event correlation, and the emerging LLM-assisted and autonomous-remediation layer — with an explicit read/write safety boundary.

18 — Interview Preparation

A structured question bank for MAANG-level observability and SRE interviews — system design, troubleshooting, and quantitative capacity-planning formats.

19 — Real-World Case Studies

How major engineering organizations have approached observability at scale, drawn from their public engineering writing, and the transferable lessons across them.

20 — Appendices

Quick-reference material — semantic conventions, query-language cheat sheets, and cost/readiness checklists — for use alongside the chapters above.

Metadata

AuthorAmit Singh
Scopeobservability

Local graph

Full graph →

Linked from 15 notes

Notes — Library Index

The front page of the notebook — every book-shaped domain, the applied Projects and flat Inbox folders, and how they cross-link into one wiki instead of duplicating content across each other.

Data Engineering

A book-shaped table of contents for data engineering: foundations and lifecycle, data modeling, storage systems, ingestion and CDC, distributed processing (Spark/Flink), SQL mastery, workflow orchestration, data quality, platform and cloud architecture, pipeline observability, security and governance, performance engineering, system design, and MAANG interview preparation through capstone builds — cross-linking the existing observability book instead of duplicating it.

Grafana Cloud

A book-shaped table of contents for Grafana Cloud: platform foundations through telemetry collection, Mimir/Loki/Tempo/Pyroscope, visualization, application observability, reliability tooling, developer experience, governance, and enterprise reference architectures — cross-linking existing notes instead of duplicating them.

Infrastructure Platform Engineering

A book-shaped table of contents for infrastructure platform engineering: from infrastructure operations to self-service platforms, IaC foundations, Terraform/OpenTofu, cloud platform design, networking, identity, compute, storage, golden images, automation, governance, observability, reliability, enterprise platforms, anti-patterns, and MAANG interview prep — cross-linking existing sre/networks/kubernetes/patterns/internal-developer-platforms notes instead of duplicating them.

Kubernetes Platform Engineering

A book-shaped table of contents for Kubernetes platform engineering: architecture, multi-tenancy, platform automation, Helm, Cluster API, Crossplane, platform services, observability, security, reliability, and enterprise operations — cross-linking existing kubernetes/observability/platform-engineering notes instead of duplicating them.

01 — Monitoring Patterns

RED, USE, the Four Golden Signals, and Saturation — the metric frameworks that decide what to measure on a service before an incident forces the question.

01 — Team Topologies

Stream-Aligned, Platform, Enabling, and Complicated-Subsystem teams — the four fundamental team types and the interaction modes between them.

Patterns

A book-shaped table of contents for reusable engineering patterns spanning object-oriented design, enterprise architecture, distributed systems, messaging, APIs, cloud infrastructure, observability, security, concurrency, AI/agentic systems, and organizational design — grounded in production experience at scale.

Production Agent Systems

A book-shaped table of contents for Production Agent Systems: the runtime substrate, observability, reliability/security/governance, performance/cost engineering, and platform engineering underneath every agent in production. Book 4 of the AI Systems Engineering series.

Productivity for Knowledge Workers

A book-shaped table of contents for productivity as practiced by a knowledge worker: foundations, self-management, goal setting, time and deep work, personal knowledge management, learning, task systems, decision making, habits, digital productivity, engineering and career practice, health, review, and an advanced operating-system layer, plus reference appendices — cross-linking existing notes instead of duplicating them.

Chapter 1 — Observability Architecture

Metrics, logs, traces, and profiles as the four correlated signal types every observability platform is built around.

Chapter 2 — Telemetry Pipelines

OpenTelemetry, OTLP, collectors, sampling, and aggregation as the pipeline that gets a signal from emission to storage without becoming the outage itself.