0Pricing
System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) · Lektion

Die RED- und USE-Methoden

Lernen Sie zwei klassische Monitoring-Methoden kennen: RED für anfragebasierte Dienste und USE für Ressourcen. Erfahren Sie außerdem, wann welche Methode Ihre Dashboards fokussiert.

Die RED- und USE-Methoden ist eine kostenlose System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Lektion auf CoddyKit. Dies ist Lektion 4 von 4. Du kannst die komplette Lektion unten kostenlos lesen – dann übst du sie direkt im Browser mit einem integrierten Code-Editor und einem KI-Tutor rund um die Uhr. Sie ist Teil des System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Lernpfads, und dein Fortschritt wird über Web und CoddyKit-App synchronisiert. Der System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Kurs umfasst insgesamt 4 Lektionen.

Teile dieser Lektion wurden noch nicht übersetzt und werden auf Englisch angezeigt.

Why Methodologies?

With endless metrics available, teams drown in dashboards. RED and USE are proven recipes that tell you which few signals actually matter.

The RED Method

RED targets request-driven services and tracks three signals: Rate, Errors, and Duration.

  • Rate: requests per second
  • Errors: failed requests per second
  • Duration: latency distribution

RED in Practice

For every service, chart these three. Together they answer how busy it is, whether it is failing, and whether it is slow.

rate(http_requests_total[5m])
rate(http_requests_total{status=~"5.."}[5m])
histogram_quantile(0.95, http_request_duration_seconds_bucket)

Why RED Works

RED reflects what users feel: are their requests served, served correctly, and served quickly. It maps directly to user experience.

The USE Method

USE targets resources and tracks Utilization, Saturation, and Errors for each component like CPU, memory, disk, and network.

USE Defined

For each resource:

  • Utilization: percent of time busy
  • Saturation: queued work waiting
  • Errors: error events

USE in Practice

Walk the resource list and apply USE to each, finding bottlenecks systematically rather than guessing.

CPU: utilization %, run-queue length, throttles
Disk: busy %, IO wait queue, IO errors

Saturation Is the Key

High utilization can be fine; saturation, the backlog of waiting work, is the early warning that a resource is becoming a bottleneck.

RED vs USE

They are complementary.

  • RED: service health from the user view
  • USE: resource health from the system view

RED tells you something is wrong; USE often tells you why.

Combining Both

A latency spike (RED Duration) might trace to disk saturation (USE). Using both methods links symptom to cause.

Building Focused Dashboards

Design service dashboards around RED and host dashboards around USE. This keeps panels meaningful instead of a wall of noise.

Quick Check

Match method to target.

Recap

You learned two focusing methodologies: RED (Rate, Errors, Duration) for request-driven services from the user perspective, and USE (Utilization, Saturation, Errors) for resources from the system perspective. RED reveals symptoms, USE reveals causes, and together they keep dashboards meaningful.

Häufig gestellte Fragen

Ist die Lektion „Die RED- und USE-Methoden“ kostenlos?

Ja — der vollständige Text von „Die RED- und USE-Methoden“ ist hier im Web kostenlos zu lesen. Um sie interaktiv zu üben (integrierter Code-Editor und 24/7 KI-Tutor) und den Rest des System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Kurses freizuschalten, upgrade auf CoddyKit PRO. Der System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Kurs umfasst insgesamt 4 Lektionen.

Was lerne ich in „Die RED- und USE-Methoden“?

Lernen Sie zwei klassische Monitoring-Methoden kennen: RED für anfragebasierte Dienste und USE für Ressourcen. Erfahren Sie außerdem, wann welche Methode Ihre Dashboards fokussiert. Du übst System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) mit praktischem Code, den du direkt im Browser ausführst, und ein 24/7 KI-Tutor beantwortet deine Fragen während du die Lektion bearbeitest.

Brauche ich Erfahrung, um System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) zu starten?

Keine Vorkenntnisse erforderlich. System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) auf CoddyKit ist für Anfänger bis fortgeschrittene Lernende strukturiert, sodass du hier starten oder von Anfang an beginnen und in deinem eigenen Tempo voranschreiten kannst. Dies ist Lektion 4 von 4.

Wie lange dauert die Lektion „Die RED- und USE-Methoden“?

Die meisten CoddyKit-Lektionen dauern etwa 5–10 Minuten. Jede ist kompakt und interaktiv, sodass du stetig Fortschritte machst und genau dort weitermachst, wo du aufgehört hast – im Web und in der App.

Kann ich in dieser System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Lektion Code schreiben und ausführen?

Ja. Jede System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)-Lektion enthält einen integrierten Code-Editor, sodass du echten Code direkt in deinem Browser schreibst und ausführst und sofort KI-Feedback erhältst — ohne lokale Einrichtung erforderlich.

Alle Lektionen in diesem Kurs

  1. Logs, Metriken und Traces korrelieren
  2. Anomalieerkennung und AI Ops
  3. SLOs, SLIs und Error Budgets
  4. Die RED- und USE-Methoden
← Zurück zu System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)