Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Profile Details documentation #13213

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/product/explore/profiling/img/minimap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/product/explore/profiling/img/profile-flame-chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file removed docs/product/explore/profiling/img/span-tree.png
Binary file not shown.
Binary file removed docs/product/explore/profiling/img/table-view.gif
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added docs/product/explore/profiling/img/tree-view.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
34 changes: 15 additions & 19 deletions docs/product/explore/profiling/profile-details.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ sidebar_order: 50
description: "Learn how to explore your profile data using the Profile Details page."
---

Profiling data can be used to gain insight into what methods and lines of your code are slow. Each profile has a detailed view that gives information about what happened in your code while the profile was collected and offers different ways to explore your profile data. This information can be found by going to the [Profiling page](https://sentry.io/orgredirect/organizations/:orgslug/profiling/) in sentry.io, clicking on a “Transaction” and then selecting a “Profile ID.”
Profiling can be used to gain insight into the exact functions and lines of code that are impacting performance. Each profile has a detailed view that illustrates the code that was running in your application and service while the profile was collected, with different ways to filter and visualize the data. To learn how to set up profiling and access profiling data, see the [**Profiling**](/product/explore/profiling/) documentation.

![Profiling details page](./img/profiling-details.png)

The main visualization on this page is a flame graph. Learn more about flame graphs in [Flame Graphs and Aggregated Flame Graphs](/product/explore/profiling/flame-charts-graphs).
The main visualization on the Profile Details page is a flame graph. Learn more about flame graphs in [**Flame Graphs and Aggregated Flame Graphs**](/product/explore/profiling/flame-charts-graphs).

## Thread Selector

Expand Down Expand Up @@ -56,32 +54,30 @@ The **Color Coding** toggle offers different ways to color the flame graph:

## Minimap

The “Minimap” shows a zoomed-out view of the profile, with the currently displayed section in a box. You can click and drag the Minimap to quickly navigate to a different part of the profile. Holding the shift key while scrolling will trigger zooming. Releasing the shift key will scroll in both vertical and horizontal directions.

![Minimap](./img/minimap.png)
The **Minimap** shows a zoomed-out view of the profile, with the currently displayed section in a box. You can click and drag the minimap to quickly navigate to a different part of the profile. Holding the Shift key while scrolling will trigger zoom. Releasing the shift key will scroll in both vertical and horizontal directions.

## Transaction
![Minimap in the Profile Details page](./img/minimap.png)

The “Transaction” section below the “Minimap” renders a tree of spans. It's the same view shown on the performance waterfall chart, but condensed to minimize white space. This view is helpful for cross-referencing profiler stack frames with span data.
## Trace

![Waterfall tree view](./img/waterfall-tree.png)
The **Trace** section below the **Minimap** renders a tree of spans. It is a condensed representation of the same data shown in the [**Trace View**](/concepts/key-terms/tracing/trace-view/). This view is helpful for cross-referencing profiling data with span data.

![Span tree view](./img/span-tree.png)
![Spans in the Trace View](./img/trace-view.png)

_Example of the waterfall vs tree span view._
![Spans in the Profile Details page](./img/profile-details-trace.png)

## Table View
## Tree View

The bottom of the screen shows a table representation of the flame graph. It provides an alternate view that enables you to see and sort functions by name, time spent in them, and their type (application or system).
The bottom of the screen shows a tree representation of the flame graph. It provides an alternate view that enables you to see and sort functions by name, time spent in them, and their type (application or system).

By default, the table displays “Bottom Up”, which shows the leafmost functions, or those with the most time at the top of a call stack. Long-running leaf functions are a good first indicator of performance bottlenecks.
By default, the tree displays “Bottom Up”, which shows the leafmost functions, or those with the most time at the top of a call stack. Long-running leaf functions are a good first indicator of performance bottlenecks.

In “Bottom Up” view, expanding a row of the table shows the function's parent functions. In “Top Down” view, expanding a row shows all the children functions that function has called (also known as callees).

![Table view](./img/table-view.gif)
![Tree view in the Profile Details page](./img/tree-view.gif)

## Transaction and Environment View
## Trace and Environment View

This section of the **Profiling** page shows metadata about the transaction and device associated with this profile.
This section of the **Profile Details** page shows metadata about the trace and environment (OS, device, etc.) associated with this profile.

![Transaction and Environment view](./img/transaction-environment-view.png)
![Trace and Environment view](./img/trace-environment-view.png)