diff --git a/src/content/docs/workers/observability/index.mdx b/src/content/docs/workers/observability/index.mdx
index 07773a70fb4607..de65147a3e4801 100644
--- a/src/content/docs/workers/observability/index.mdx
+++ b/src/content/docs/workers/observability/index.mdx
@@ -3,12 +3,88 @@ pcx_content_type: navigation
title: Observability
sidebar:
order: 15
- group:
- hideIndex: true
+head: []
+description: Understand how your Worker projects are performing via logs, traces, metrics, and other data sources.
---
-import { Badge, DirectoryListing } from "~/components";
+import { LinkCard, CardGrid } from "~/components";
-Understand how your Worker projects are performing via logs, traces, and other data sources.
+Cloudflare Workers provides comprehensive observability tools to help you understand how your applications are performing, diagnose issues, and gain insights into request flows. Whether you want to use Cloudflare's native observability platform or export telemetry data to your existing monitoring stack, Workers has you covered.
-
+## Logs
+
+Logs are essential for troubleshooting and understanding your application's behavior. Cloudflare offers several ways to access and manage your Worker logs.
+
+
+
+
+
+
+
+
+## Traces
+
+[Tracing](/workers/observability/traces/) gives you end-to-end visibility into the life of a request as it travels through your Workers application and connected services. With automatic instrumentation, Cloudflare captures telemetry data for fetch calls, binding operations (KV, R2, Durable Objects), and handler invocations - no code changes required.
+
+## Metrics and analytics
+
+[Metrics and analytics](/workers/observability/metrics-and-analytics/) let you monitor your Worker's health with built-in metrics including request counts, error rates, CPU time, wall time, and execution duration. View metrics per Worker or aggregated across all Workers on a zone.
+
+## Query Builder
+
+The [Query Builder](/workers/observability/query-builder/) helps you write structured queries to investigate and visualize your telemetry data. Build queries with filters, aggregations, and groupings to analyze logs and identify patterns.
+
+## Exporting data
+
+[Export OpenTelemetry-compliant traces and logs](/workers/observability/exporting-opentelemetry-data/) from Workers to your existing observability stack. Workers supports exporting to any destination with an OTLP endpoint, including Honeycomb, Grafana Cloud, Axiom, and Sentry.
+
+## Debugging
+
+
+
+
+
+
+
+## Additional resources
+
+
+
+
+