Skip to content

Commit

Permalink
one more (#10541)
Browse files Browse the repository at this point in the history
  • Loading branch information
lizokm committed Jun 27, 2024
1 parent c08811d commit 69778bc
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion docs/concepts/key-terms/tracing/distributed-tracing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -252,4 +252,4 @@ Dynamic sampling ensures complete traces by retaining all transactions associate

Use the [Trace Explorer](/product/explore/traces/) to search for traces containing spans that meet your specific query conditions. This helps you find distributed traces that give you a connected view of your application and can help you debug and optimize your code.

Through [Performance](/product/performance/) and [Discover](/product/explore/discover-queries/), you can also view trace data in the [Trace Details](/concepts/key-terms/tracing/trace-view/) page.
Through [Performance](/product/performance/) and [Discover](/product/explore/discover-queries/), you can also view trace data in the [Trace View](/concepts/key-terms/tracing/trace-view/) page.
2 changes: 1 addition & 1 deletion docs/concepts/key-terms/tracing/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: "Learn more about the tracing features Sentry offers to help you tr

[Distributed tracing](/product/sentry-basics/tracing/distributed-tracing/) provides a connected view of related errors and transactions by capturing interactions among your software systems. With tracing, Sentry tracks your software performance and displays the impact of errors across multiple systems. Tracing issues back through services connects your front-end to your back-end.

The [Trace Details](/product/sentry-basics/tracing/trace-view/) allows you to drill down into the details of a single trace and traverse every transaction in that trace. This accelerates your ability to debug slow services, identify related errors, and root out other bottlenecks.
The [Trace View](/product/sentry-basics/tracing/trace-view/) allows you to drill down into the details of a single trace and traverse every transaction in that trace. This accelerates your ability to debug slow services, identify related errors, and root out other bottlenecks.

The [Trace Explorer](/product/explore/traces/) allows you to explore traces by querying [span properties](/concepts/search/searchable-properties/spans/). This helps you find relevant distributed traces that will give you more information to debug and optimize your code.

Expand Down
18 changes: 9 additions & 9 deletions docs/concepts/key-terms/tracing/trace-view.mdx
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
title: "Trace Details"
title: "Trace View"
sidebar_order: 30
redirect_from:
- /concepts/key-terms/tracing/trace-view/
description: "Learn more about the trace details page, where you can drill down into the details of a single trace, allowing you to debug slow services, identify related errors, and find other bottlenecks."
description: "Learn more about the trace view page, where you can drill down into the details of a single trace, allowing you to debug slow services, identify related errors, and find other bottlenecks."
---

The trace details page is designed to be your one-stop-shop when debugging performance or errors. It gives you full context on what was happening when an error or performance issue occurred, all in one place. The waterfall trace details view allows you to see everything that may have occurred during a trace, including errors, performance issues, and any profiles that may have been collected.
The trace view page is designed to be your one-stop-shop when debugging performance or errors. It gives you full context on what was happening when an error or performance issue occurred, all in one place. The waterfall trace view allows you to see everything that may have occurred during a trace, including errors, performance issues, and any profiles that may have been collected.

In addition, looking at trace details allows you to drill down into a single trace so you can visualize the high-level transactions and spans that took place within that trace. This makes debugging slow services, identifying related errors, and rooting out bottlenecks easier and faster, since you no longer have to navigate around multiple pages of the Sentry product.
In addition, looking at the trace view allows you to drill down into a single trace so you can visualize the high-level transactions and spans that took place within that trace. This makes debugging slow services, identifying related errors, and rooting out bottlenecks easier and faster, since you no longer have to navigate around multiple pages of the Sentry product.

## Product Walkthrough: Trace Details Page
## Product Walkthrough: Trace View Page

Sentry's default visualization of a trace is a waterfall-like structure, where the entries (transactions and spans) in the list are organized chronologically and through ancestry (child spans will fall under their parents). This allows you to follow the order of operations and drill into sub-operations.

Expand All @@ -30,7 +30,7 @@ By default, the waterfall view shows a list of transactions. If you need more gr
>
<iframe
src="https://demo.arcade.software/25H9paIDvBOQp5T3pFeW?embed&show_copy_link=true"
title="Trace Details — Performance — sentry — Sentry"
title="Trace View — Performance — sentry — Sentry"
frameborder="0"
loading="lazy"
webkitallowfullscreen
Expand Down Expand Up @@ -89,7 +89,7 @@ If you're doing a comparison and want an easy way to go back and forth between h
</div>
<br />
Sometimes, duration gaps between entries can be small, but critical to your debugging
effort. That's why the trace details view enables you to zoom into certain areas of the trace,
effort. That's why the trace view enables you to zoom into certain areas of the trace,
either by double clicking on row elements (which zooms into the row) or by using
your scroll wheel.
<br />
Expand All @@ -103,7 +103,7 @@ your scroll wheel.
>
<iframe
src="https://demo.arcade.software/U8JbMjFJR1KRiP4G4j4E?embed&show_copy_link=true"
title="Trace Details — Performance — sentry — Sentry"
title="Trace View — Performance — sentry — Sentry"
frameborder="0"
loading="lazy"
webkitallowfullscreen
Expand All @@ -122,7 +122,7 @@ your scroll wheel.
></iframe>
</div>
<br />
The trace details view has other features like search, which makes it easy to visualize matching
The trace view has other features like search, which makes it easy to visualize matching
spans that you can then iterate over using the up or down arrows. You can also tailor
the layout to your preference.

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/java/guides/spring/advanced-usage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Record user information from an HTTP request or by registering a Spring bean for

## Recording User Information From HTTP Request

To record the user's IP address and `Principal#name` as the username so you can then view in [trace details view](/concepts/key-terms/tracing/trace-view/):
To record the user's IP address and `Principal#name` as the username so you can then view in [trace view](/concepts/key-terms/tracing/trace-view/):

1. Set the personal information flag on `@EnableSentry` to `true`.

Expand Down
6 changes: 3 additions & 3 deletions docs/product/explore/discover-queries/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ If the first column shows an icon (as seen above), it means the events have been

For more about how to build a query, go to [the Query Builder](/product/explore/discover-queries/query-builder/).

## Trace Details
## Trace View

![Trace Details View](./img/trace-details-view.png)
![Trace View](./img/trace-details-view.png)

You can see additional information about your event by clicking into any "Event ID" on the [**Discover**](https://sentry.io/orgredirect/organizations/:orgslug/discover) page. Clicking on any event type other than an error event, will take you to the [**Trace Details**](/concepts/key-terms/tracing/trace-view/) page. Clicking on an error event will take you to the [**Issues**](https://sentry.io/orgredirect/organizations/:orgslug/issues/) page.
You can see additional information about your event by clicking into any "Event ID" on the [**Discover**](https://sentry.io/orgredirect/organizations/:orgslug/discover) page. Clicking on any event type other than an error event, will take you to the [**Trace View**](/concepts/key-terms/tracing/trace-view/) page. Clicking on an error event will take you to the [**Issues**](https://sentry.io/orgredirect/organizations/:orgslug/issues/) page.
2 changes: 1 addition & 1 deletion docs/product/insights/assets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,4 @@ These same events are also represented as triangles shown in the average duratio

You can generate a new list of random sample events by clicking the "Try Different Samples" button at the bottom.

From the sample list, you can drill down to specific good, average, or bad examples of a given asset within a given page. Click on an event ID to drill into the asset's span details within the span waterfall of the [Trace Details](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page.
From the sample list, you can drill down to specific good, average, or bad examples of a given asset within a given page. Click on an event ID to drill into the asset's span details within the span waterfall of the [Trace View](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page.
2 changes: 1 addition & 1 deletion docs/product/insights/mobile-vitals/screen-loads.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ Sentry automatically identifies sample events to help you investigate performanc

You can use the sample list to drill down to and compare fast, average, and slow events of interest within a given screen.

Clicking on a sample event will take you into either the query's span details within the span waterfall of the [Trace Details page](/concepts/key-terms/tracing/trace-view/) or the profile icon to see the [flamegraph](/product/explore/profiling/flame-charts-graphs/) for the event. To get different event samples, click the "Try Different Samples" button.
Clicking on a sample event will take you into either the query's span details within the span waterfall of the [Trace View page](/concepts/key-terms/tracing/trace-view/) or the profile icon to see the [flamegraph](/product/explore/profiling/flame-charts-graphs/) for the event. To get different event samples, click the "Try Different Samples" button.
2 changes: 1 addition & 1 deletion docs/product/insights/queries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ These same events are also represented as triangles shown in the average duratio

You can generate a new list of random sample events by clicking the "Try Different Samples" button at the bottom.

From the sample list, you can drill down to specific good, average, or bad examples of a given query within a given endpoint. Click on an event ID to drill into the query's span details within the span waterfall of the [Trace Details page](/concepts/key-terms/tracing/trace-view/).
From the sample list, you can drill down to specific good, average, or bad examples of a given query within a given endpoint. Click on an event ID to drill into the query's span details within the span waterfall of the [Trace View page](/concepts/key-terms/tracing/trace-view/).

## What is Time Spent

Expand Down
2 changes: 1 addition & 1 deletion docs/product/insights/web-vitals/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The **Page Overview** page displays a "Page Loads" chart in the right sidebar of
The samples list only shows page loads with web vitals and performance score. If a page load is missing a required web vital, it will not be shown in the samples list. Find out which web vitals are required in the [Browser Support](/product/performance/web-vitals/web-vitals-concepts/#browser-support) table.
</Note>

At the center of the **Page Overview**, Web Vital p75 values and scores are displayed. Clicking a Web Vital score will open a slideout panel containing a variety of **Page Load** samples with good to poor scores. Each sample contains an **Event ID** that can be clicked to open the [Trace Details](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page for further investigation. If there is a [Replay](/product/session-replay/) or [Profile](/product/profiling/) associated with the sample page load, links will be included in the associated table columns.
At the center of the **Page Overview**, Web Vital p75 values and scores are displayed. Clicking a Web Vital score will open a slideout panel containing a variety of **Page Load** samples with good to poor scores. Each sample contains an **Event ID** that can be clicked to open the [Trace View](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page for further investigation. If there is a [Replay](/product/session-replay/) or [Profile](/product/profiling/) associated with the sample page load, links will be included in the associated table columns.

<div style={{"height":"0px","paddingBottom":"calc(56.9796% + 41px)","position":"relative"}}>
<iframe
Expand Down
2 changes: 1 addition & 1 deletion docs/product/performance/transaction-summary.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ While you can use the search field to narrow down your events, you can also filt

### Transaction Table

On initial load, the table displays slow occurrences of the transaction along with the Event ID, User, Operations Duration, Total Transaction Duration, and Timestamp of the event. Click on the Event ID or the Trace ID to open the [Trace Details](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page. Other sets of transactions you can browse through are below.
On initial load, the table displays slow occurrences of the transaction along with the Event ID, User, Operations Duration, Total Transaction Duration, and Timestamp of the event. Click on the Event ID or the Trace ID to open the [Trace View](/concepts/key-terms/tracing/trace-view/#product-walkthrough-trace-details-page) page. Other sets of transactions you can browse through are below.

- Fastest Transactions
- Slow Transactions (p95)
Expand Down

0 comments on commit 69778bc

Please sign in to comment.