You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,8 +22,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
22
-**✂️ Copy Text in Views**: You can now highlight and copy text from the Call Tree, Analysis, and Database views without the text clearing immediately after highlighting ([#504]).
23
23
-**💎 Improved HiDPI Rendering**: Sharpened rendering for the timeline on HiDPI displays ([#588]).
24
24
-**🔍 Call Tree Search**: Search in the Call Tree now only includes the visible filtered rows ([#539]).
25
-
-**🎨 Search Input Styling:**: The grid search input fits into VS Code styles better ([#619]).
26
-
**📈 Call Tree Governor Limits:** The Call Tree now displays formatted governor limits for `CUMULATIVE_LIMIT_USAGE` events by default, as well as SOQL, SOSL, DML, and Method profiling events ([#309]).
25
+
-**📈 Call Tree Governor Limits:** The Call Tree now displays formatted governor limits for `CUMULATIVE_LIMIT_USAGE` events by default, as well as SOQL, SOSL, DML, and Method profiling events ([#309]).
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
**Analyze Salesforce Apex Debug logs with blazing speed.**
9
9
Apex Log Analyzer is a blazing-fast VS Code extension for Salesforce developers. Instantly visualize and debug Apex logs with interactive flame charts, dynamic call trees, and detailed SOQL/DML breakdowns. Identify performance bottlenecks, gain deep insight into complex transactions and optimize slow Apex methods faster than ever.
Copy file name to clipboardExpand all lines: lana-docs-site/docs/community/changelog.mdx
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,11 @@
1
1
---
2
+
id: changelog
2
3
title: Changelog
3
4
hide_title: true
4
5
sidebar_position: 3
5
6
sidebar_label: Changelog
7
+
description: Stay updated with the latest features, improvements, and bug fixes in the Apex Log Analyzer. Explore our comprehensive changelog for detailed release notes and community updates.
Copy file name to clipboardExpand all lines: lana-docs-site/docs/community/contributing.mdx
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,16 @@
1
1
---
2
+
id: contributing
2
3
title: Contributing
3
4
hide_title: true
4
5
sidebar_position: 2
5
6
sidebar_label: Contributing
7
+
description: Contribute to the Apex Log Analyzer for Salesforce open-source project. Find guidelines, best practices, and steps for making your first contribution to the community.
description: Help and support with the Apex Log Analyzer for Salesforce. Connect with our community to get support, share your experiences, raise feature requests, report bugs and find answers to your questions.
7
+
keywords:
8
+
[
9
+
apex log analyzer community,
10
+
apex log analyzer support,
11
+
salesforce apex log analyzer feature requests,
12
+
salesforce apex log analyzer bug reports,
13
+
salesforce apex log analyzer discussion,
14
+
]
3
15
---
4
16
5
-
# Support
6
-
7
17
Before participating, please read our [Code of Conduct](https://github.com/certinia/debug-log-analyzer/blob/main/CODE_OF_CONDUCT.md).
8
18
9
-
## Discussion
19
+
## ✨ Feature requests and Bugs {#feature-requests}
10
20
11
-
For discussion about best practices or if you have any questions or need help, please start a [discussion on github](https://github.com/certinia/debug-log-analyzer/discussions)
21
+
For new feature requests, open a [feature request issue](https://github.com/certinia/debug-log-analyzer/issues/new/choose)or [bug report issue](https://github.com/certinia/debug-log-analyzer/issues/new/choose) on github. Our issues can be sorted by upvotes, which gives us a way to prioritise what to work on next.
12
22
13
-
## Feature requests and Bugs {#feature-requests}
23
+
Just wanting to look at the backlog, head over to the **[open issues](https://github.com/certinia/debug-log-analyzer/issues)**.
24
+
If you see an idea you like then join the conversation to get your ideas into the feature.
14
25
15
-
For new feature requests, open a [feature request issue](https://github.com/certinia/debug-log-analyzer/issues/new/choose) or [bug report issue](https://github.com/certinia/debug-log-analyzer/issues/new/choose) on github. Our issues can be sorted by upvotes, which gives us a way to prioritise what to work on next.
26
+
## 💬 Discussion
27
+
28
+
For discussion about best practices or if you have any questions or need help, please start a [discussion on github](https://github.com/certinia/debug-log-analyzer/discussions)
description: Analyze Salesforce debug logs with detailed metrics on method calls, including Self Time, Total Time, Count, Name, and Type. Easily sort, filter, and group log events by namespace or type, and export or copy results for efficient troubleshooting and performance optimization.
Analyze Salesforce debug logs with detailed metrics on method calls, including Self Time, Total Time, Count, Name, and Type. Easily sort, filter, and group log events by namespace or type, and export or copy results for efficient troubleshooting and performance optimization.
21
+
22
+

23
+
24
+
### Sort
25
+
26
+
By default the Analysis table is sorted with the events that took the longest by Self Time at the top.\
27
+
Each column can be sorted by clicking the column header, this will sort the rows ascending or descending.
28
+
29
+
### Filtering
30
+
31
+
1. Show Log events for specific namespaces using the namespace column filter
32
+
33
+
### Group
34
+
35
+
The rows can be grouped by Type or Namespace
36
+
37
+
1. Namespace: Shows the rows aggregated by their namespace e.g `default`, `MyNamespace`
38
+
1. Type: Shows the rows aggregated by namespace event type e.g `METHOD_ENTRY`, `DML_ENTRY`
39
+
40
+
### Export to CSV + copy to clipboard
41
+
42
+
Use `Export to CSV` above the table to save the table content to a file or `Copy to Clipboard`.
43
+
You can also focus the Analysis tables and use `CMD / CTRL + c` to copy the table content to clipboard. This can then be pasted into a spreadsheet or other file.
0 commit comments