Skip to content

Commit 5f5954e

Browse files
ishkebabadinauer
authored andcommitted
Update index.mdx (#7659)
Profiling team is retiring the "flame chart" term Instead will use Flame Graph and Aggregated Flame Graph in our docs - This should make the terminology more intuitive.
1 parent 0ec40d3 commit 5f5954e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/docs/product/profiling/index.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ description: "Profiling offers a deeper level of visibility on top of traditiona
1717
- [PHP (including Laravel and Symfony)](/platforms/php/profiling/)
1818
- [Browser JavaScript [beta]](/platforms/javascript/profiling/)
1919
- [Go [experimental]](/platforms/go/profiling/)
20-
- [Ruby [experimental]](/platforms/ruby/profiling/)
21-
- [React Native [experimental]](/platforms/react-native/profiling/)
20+
- [Ruby [beta]](/platforms/ruby/profiling/)
21+
- [React Native [beta]](/platforms/react-native/profiling/)
2222

2323
</Note>
2424

25-
Profiling offers a deeper level of visibility on top of traditional tracing, removing the need for custom instrumentation and enabling you to build in [performance as a feature](https://blog.codinghorror.com/performance-is-a-feature/) from day one. Sentry's profiling feature builds upon our established [Performance Monitoring](/product/performance) capabilities to provide precise code-level visibility into application execution in a production environment. This allows you to quickly identify potential performance bottlenecks and visualize the call stack to find hot paths in your code.
25+
Sentry's profiling feature builds upon our established [Performance Monitoring](/product/performance) capabilities to provide precise code-level visibility into application execution in a production environment. Profiling provides context at a deeper level than traditional tracing, enabling you to visualize the precise details of the call stack without the need for custom instrumentation. With Profiilng you can quickly identify hot paths in your code and understand potential performance bottlenecks, enabling you to build in [performance as a feature](https://blog.codinghorror.com/performance-is-a-feature/) from day one.
2626

2727
Sentry profiling supports common platforms for both Mobile and Backend applications:
2828

@@ -39,15 +39,15 @@ This will take you to the **Transaction Summary** page where you'll see a list o
3939

4040
![Transaction Summary page](transaction-summary-page.png)
4141

42-
Transaction events that have a profile contain a link in the "Profile" column which will take you to a flame chart with details about that event. Learn how to read [Flame Charts and Flame Graphs](/product/profiling/flame-charts-graphs).
42+
Transaction events that have a profile contain a link in the "Profile" column which will take you to a flame graph with details about that event. Learn how to read [Flame Graphs and Aggregated Flame Graphs](/product/profiling/flame-charts-graphs).
4343

44-
![Profile details page showing a flame chart](profile-details-flame-chart.png)
44+
![Profile details page showing a flame graph](profile-details-flame-chart.png)
4545

4646
Alternatively, if you click on the "Event ID" for a transaction, you'll see a span waterfall where you'll can identify suspect spans - operations that may be impacting performance, including slow DB queries and HTTP requests. You can click on a span to see profile information, including the most frequently occurring code path (call stack with with exact line numbers), along with the approximate percentage of time required for that code path.
4747

4848
![Transaction showing call stack data from a profile](call-stack-transaction.png)
4949

50-
From this view, you can also click "View Profile" to zoom in on the flame chart.
50+
From this view, you can also click "View Profile" to zoom in on the flame graph.
5151

5252
## Profiling Page
5353

@@ -61,12 +61,12 @@ The "Suspect Functions" widget shows you a list of the functions that took the m
6161

6262
Using the Profiling page is typically an advanced workflow, enabling you to directly select transactions of interest and examine detailed profiling data.
6363

64-
Selecting one of the transactions will take you to the **Profile Summary** page below. On this page, you can examine the consolidated [flame graph](/product/profiling/flame-charts-graphs) that presents aggregated sample data for the selected transaction.
64+
Selecting one of the transactions will take you to the **Profile Summary** page below. On this page, you can examine the aggregated [flame graph](/product/profiling/flame-charts-graphs) that presents aggregated sample data for the selected transaction.
6565

6666
![Transaction Profile summary page](transaction-profile-view.png)
6767

6868
## Learn More
6969

70-
To learn more about profiling tools, read the docs about [Flame Charts and Flame Graphs](/product/profiling/flame-charts-graphs).
70+
To learn more about profiling tools, read the docs about [Flame Graphs and Aggregated Flame Graphs](/product/profiling/flame-charts-graphs).
7171

7272
<PageGrid />

0 commit comments

Comments
 (0)