From 69778bcf1f045b955311b5f47afc6c5a4c9840ab Mon Sep 17 00:00:00 2001 From: Liza Mock Date: Thu, 27 Jun 2024 16:57:32 -0700 Subject: [PATCH] one more (#10541) --- .../key-terms/tracing/distributed-tracing.mdx | 2 +- docs/concepts/key-terms/tracing/index.mdx | 2 +- docs/concepts/key-terms/tracing/trace-view.mdx | 18 +++++++++--------- .../java/guides/spring/advanced-usage.mdx | 2 +- .../product/explore/discover-queries/index.mdx | 6 +++--- docs/product/insights/assets.mdx | 2 +- .../insights/mobile-vitals/screen-loads.mdx | 2 +- docs/product/insights/queries.mdx | 2 +- docs/product/insights/web-vitals/index.mdx | 2 +- .../performance/transaction-summary.mdx | 2 +- 10 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/concepts/key-terms/tracing/distributed-tracing.mdx b/docs/concepts/key-terms/tracing/distributed-tracing.mdx index 039cfa8b04408..83a3e6a4601e7 100644 --- a/docs/concepts/key-terms/tracing/distributed-tracing.mdx +++ b/docs/concepts/key-terms/tracing/distributed-tracing.mdx @@ -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. diff --git a/docs/concepts/key-terms/tracing/index.mdx b/docs/concepts/key-terms/tracing/index.mdx index 658fad3ebd5e7..379a55336585f 100644 --- a/docs/concepts/key-terms/tracing/index.mdx +++ b/docs/concepts/key-terms/tracing/index.mdx @@ -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. diff --git a/docs/concepts/key-terms/tracing/trace-view.mdx b/docs/concepts/key-terms/tracing/trace-view.mdx index bbd348d3e072b..72dd0241d45d7 100644 --- a/docs/concepts/key-terms/tracing/trace-view.mdx +++ b/docs/concepts/key-terms/tracing/trace-view.mdx @@ -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. @@ -30,7 +30,7 @@ By default, the waterfall view shows a list of transactions. If you need more gr >
-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. diff --git a/docs/platforms/java/guides/spring/advanced-usage.mdx b/docs/platforms/java/guides/spring/advanced-usage.mdx index 0e39fcd3564b3..f0d3deb2a9a4a 100644 --- a/docs/platforms/java/guides/spring/advanced-usage.mdx +++ b/docs/platforms/java/guides/spring/advanced-usage.mdx @@ -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`. diff --git a/docs/product/explore/discover-queries/index.mdx b/docs/product/explore/discover-queries/index.mdx index ca413f1de1a2f..c90628abfcb54 100644 --- a/docs/product/explore/discover-queries/index.mdx +++ b/docs/product/explore/discover-queries/index.mdx @@ -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. diff --git a/docs/product/insights/assets.mdx b/docs/product/insights/assets.mdx index 6be967a9a7bcc..502a471f0a451 100644 --- a/docs/product/insights/assets.mdx +++ b/docs/product/insights/assets.mdx @@ -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. diff --git a/docs/product/insights/mobile-vitals/screen-loads.mdx b/docs/product/insights/mobile-vitals/screen-loads.mdx index 47d2cf4680e54..197413778bf4c 100644 --- a/docs/product/insights/mobile-vitals/screen-loads.mdx +++ b/docs/product/insights/mobile-vitals/screen-loads.mdx @@ -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. diff --git a/docs/product/insights/queries.mdx b/docs/product/insights/queries.mdx index ba8a8febba8ae..3695593fa6ceb 100644 --- a/docs/product/insights/queries.mdx +++ b/docs/product/insights/queries.mdx @@ -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 diff --git a/docs/product/insights/web-vitals/index.mdx b/docs/product/insights/web-vitals/index.mdx index 68251b07cfe56..df31d2040f6ea 100644 --- a/docs/product/insights/web-vitals/index.mdx +++ b/docs/product/insights/web-vitals/index.mdx @@ -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. -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.