System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) · Lección

Los métodos RED y USE

Aprenda dos metodologías clásicas de supervisión: RED para servicios orientados a solicitudes y USE para recursos, y cuándo aplicar cada una para centrar sus dashboards.

Lección 4 de 413 pasos

Los métodos RED y USE es una lección gratuita de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) en CoddyKit. Esta es la lección 4 de 4. Puedes leer la lección completa abajo gratuitamente — luego la practicas en el navegador con un editor de código integrado y un tutor de IA 24/7. Forma parte de la ruta de aprendizaje de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry), y tu progreso se sincroniza en la web y la app de CoddyKit. El curso de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) incluye 4 lecciones en total.

Partes de esta lección aún no han sido traducidas y se muestran en inglés.

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.

Gratis para empezar

Aprende System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) con un tutor de IA — gratis

Escribe y ejecuta código real en tu navegador, obtén ayuda instantánea de un tutor de IA disponible 24/7 y continúa donde lo dejaste en la web o en la aplicación.

Cursos
12
Lecciones
48

Preguntas frecuentes

¿La lección «Los métodos RED y USE» es gratis?

Sí — el texto completo de «Los métodos RED y USE» es gratis para leer aquí en la web. Para practicarla de forma interactiva (editor de código integrado y tutor de IA 24/7) y desbloquear el resto del curso de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry), actualiza a CoddyKit PRO. El curso de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) incluye 4 lecciones en total.

¿Qué aprenderé en «Los métodos RED y USE»?

Aprenda dos metodologías clásicas de supervisión: RED para servicios orientados a solicitudes y USE para recursos, y cuándo aplicar cada una para centrar sus dashboards. Practicas System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) con código real que ejecutas directamente en el navegador, y un tutor de IA 24/7 responde tus preguntas mientras trabajas en la lección.

¿Necesito experiencia previa para empezar System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)?

No se requiere experiencia previa. System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) en CoddyKit está estructurado para principiantes hasta estudiantes avanzados, así que puedes empezar aquí o desde el inicio y avanzar a tu ritmo. Esta es la lección 4 de 4.

¿Cuánto tiempo toma la lección «Los métodos RED y USE»?

La mayoría de las lecciones de CoddyKit toman alrededor de 5–10 minutos. Cada una es compacta e interactiva, así que avanzas constantemente y retomas exactamente por donde dejaste en la web y la app.

¿Puedo escribir y ejecutar código en esta lección de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)?

Sí. Cada lección de System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry) incluye un editor de código integrado, así que escribes y ejecutas código real directamente en tu navegador y obtienes retroalimentación instantánea de IA — sin configuración local necesaria.

Todas las lecciones de este curso

  1. Correlación de logs, métricas y trazas
  2. Detección de anomalías y AIOps
  3. SLO, SLI y presupuestos de error
  4. Los métodos RED y USE
← Volver a System Observability: Logging, Metrics & Tracing (ELK + OpenTelemetry)