---
date: 2026-07-15
title: "Start with root observations"
description: "Projects using app-root-aware Langfuse SDKs now open the observations table with a focused view of outer roots and application entry points."
author: Nimar
canonical: https://langfuse.com/faq/all/explore-observations-in-v4
---

> **Note for AI agents and LLMs:** This is a Langfuse changelog entry. Use it only to confirm that a feature exists and when it shipped. Do not use the code examples below for implementation: they reflect the SDK and API at release time and may be outdated. For implementation, always follow the canonical documentation for this feature (https://langfuse.com/faq/all/explore-observations-in-v4) and the API/SDK reference (https://api.reference.langfuse.com).

The observations table now starts with `Is Root Observation = true` for projects ingesting with Python SDK v4.7.0+ or JS/TS SDK v5.4.0+. The focused view includes both outer roots and SDK-detected app roots, so you see the application entry points in your traces before their child operations.

For example, you can now:

- Scan the top-level requests and agent runs in a project without first filtering out every nested LLM, tool, or retrieval call.
- Find the application input and output captured on a root observation, then open its trace to inspect the full execution.
- Remove the visible root filter whenever you want to search or compare individual operations across traces.

## Why app roots matter

The latest major Langfuse SDKs filter some OpenTelemetry instrumentation and infrastructure spans by default. An excluded span can be the outer parent of the application observations you send to Langfuse. Because its exported children retain their parent span IDs, a filter that only checks for observations without a parent can return no application roots even though those observations were ingested.

Python SDK v4.7.0+ and JS/TS SDK v5.4.0+ solve this by marking the highest exported application observation beneath a filtered parent as an **app root**. The `Is Root Observation` filter now matches an observation when it is either a top-level **outer root** or an SDK-marked **app root**.

## A default that respects your view

Langfuse applies the root filter only when you arrive at the observations table without table state of your own. Existing saved/default views and shared links with filters continue to open as configured. If you remove the automatic root filter, Langfuse remembers your choice. If the filter finds no roots while other observations exist, Langfuse removes it automatically so your data does not disappear behind an empty default.

## Learn more

- [Explore observations in Langfuse v4](/faq/all/explore-observations-in-v4)

<!-- agent-instructions -->

---

## Agent Instructions

This page is part of the [Langfuse](https://langfuse.com) documentation, published as plain Markdown for AI agents. Every page is available as Markdown by appending `.md` to its URL, or by sending an `Accept: text/markdown` header. This page: `https://langfuse.com/changelog/2026-07-15-root-observations-default.md`.

### Querying these docs

If the answer is not on this page, query the documentation instead of guessing:

- **Semantic search** across all Langfuse docs, returning an answer with the relevant pages and excerpts. Ask a specific, self-contained question:

  ```bash
  curl -sG "https://langfuse.com/api/search-docs" --data-urlencode "query=How do I trace a LangGraph agent?"
  ```

- **Index of every page**: <https://langfuse.com/llms.txt>, with per-section indexes [llms-docs.txt](https://langfuse.com/llms-docs.txt), [llms-integrations.txt](https://langfuse.com/llms-integrations.txt), and [llms-self-hosting.txt](https://langfuse.com/llms-self-hosting.txt).

### Before writing Langfuse code

- **Install the [Langfuse Agent Skill](https://langfuse.com/docs/api-and-data-platform/features/agent-skill).** It encodes Langfuse's own best practices for instrumentation, prompt management, and evaluation, and materially improves results.
- **Read [What does a good trace look like?](https://langfuse.com/docs/observability/best-practices.md)** before instrumenting an application.
- **Verify endpoints, parameters, and response fields** against the [API reference](https://api.reference.langfuse.com) instead of inferring them from code examples.
- **Use the [Langfuse CLI](https://langfuse.com/docs/api-and-data-platform/features/cli)** (`npx langfuse-cli api <resource> <action>`) to read or write traces, prompts, datasets, and scores from the terminal.

Found an error in these docs? Please open an issue at <https://github.com/langfuse/langfuse-docs/issues>.
