- Viewer
- Added "All Functions," "All Modules," and "All Packages" pages, which display entries even if they have no samples
- Added displaying function states on the timeline (available for preprocessed V8 log profiles only)
- Added call trees updating on filters change on the function page
- Improved the parsing of function names and URLs during the conversion of preprocessed V8 logs into cpuprofile
- Limited the display of very long regular expressions in the function page header to only the first 256 characters only
- Replaced the
engine
category withcompilation
(covering parsers and compilers) andblocking
(atomics wait) categories - Fixed processing of
v8/gc
call frames that appear when node--expose-gc
is used andglobal.gc()
is invoked (added intointernals
)
- Viewer
- Added transformation from
parent
tochildren
for call tree nodes for.cpuprofile
files if needed (fixes #5) - Implemented exclusion of ending no-sample time. For certain profiles, the time from the last sample until
endTime
can be significant, indicating the conclusion of the profiling session or adjustments from excluding idle samples at the end. This time is now excluded from theProfiling time
which used for computing time percentages - Fixed double rendering of the page after the profile data is loaded
- Added transformation from
- Viewer
- Changed the terminology: replaced "area" with "category"
- Formats
- Added support for Edge Enhanced Performance Traces
- Added support for V8 log preprocessed with
--preprocess
- Fixed the extraction of a CPU profile from Chrome tracing when it contains several profiles
- Computations
- Reworked the computations on profile loading from scratch with performance and memory usage in mind, achieving a 2-10 times speed increase and reduced memory consumption
- Implemented GC nodes reparenting to the script node
- Fixed the placement of bundle modules to be placed in the "script" category instead of the "bundle" category
- Changed the handling of negative time deltas, they are now corrected by rearranging instead of being ignored
- Resolved the issue with shortening paths to scripts when
webpack/runtime
is present in the CPU profile - Adjusted call frame reference computation by omitting line and column when they are not specified or less than zero
- Runtimes & registries
- Added Deno detection
- Added Electron detection
- Added detection for CDNs and registries: JSR, deno.land, jsdelivr, unpkg, esm.sh, esm.run, jspm, and skypack
- Redesigned welcome page, added "Try an example" buttons
- Reworked the layout and UX of the main page
- Implemented permanent colors and a fixed timeline order for areas and module types
- Improved the display of regular expressions, particularly long ones
- Reworked subject pages, each page now includes:
- A timeline that not only displays self time but also nested time, with the distribution of nested time by categories
- A section "Nested time distribution"
- A basic flamechart displaying all frames related to the current subject as root frames
- Timeline
- Added the capability to select a range
- Added a tooltip that provides expanded details on a range
- Flamechart
- Added vertical scrolling locking when not activated
- Added a detailed information block for the selected or zoomed frame
- Added the capability to select frames
- Improved performance and reliability
- Changed colors to match category colors and module types
- Viewer
- Extracted regular expression into a separate area
regexp
- Fixed edge cases when
scriptId
is not a number - Added ancestor call sites on a function page
- Added function grouping on a function page (enabled by default)
- Added timeline split by areas on default page
- Improved function subtree displaying
- Fixed processing of evaled functions (call frames with
evalmachine
prefixes)
- Extracted regular expression into a separate area
- CLI:
- Added support to load jsonxl files
- API:
- Profile (result of
profileEnd()
):- Renamed methods:
writeToFile()
->writeToFileAsync()
writeToFileSync()
->writeToFile()
writeJsonxlToFileSync()
->writeJsonxlToFile()
- Changed
writeToFileAsync()
,writeToFile()
andwriteJsonxlToFile()
methods to return a destination file path - Added
writeReport()
method as alias toreport.writeToFile()
- Renamed methods:
profileEnd().report
- Renamed
writeToFile()
->writeToFileAsync()
andwriteToFileSync()
->writeToFile()
(however, at the moment both are sync) - Changed
open()
method to return a destination file path
- Renamed
- Capture (result of
profile()
)- Added
onEnd(callback)
method to add a callback to call once capturing is finished, a callback can take a profiling result argument - Added
writeToFile()
,writeJsonxlToFile()
,writeReport()
andopenReport()
methods to call corresponding methods one capturing is finished
- Added
- Changed
profile()
to return an active capturing for a name if any instead of creating a new one - Changed
profile()
to subscribe on process exit to end profiling (process.on('exit', () => profileEnd())
) - Added
writeToFile()
,writeJsonxlToFile()
,writeReport()
andopenReport()
methods that startsprofile()
and call a corresponding method, i.e.writeReport()
is the same asprofile().writeReport()
- Profile (result of
- Used jsonxl binary and gzip encodings for data on report generating, which allow to produce a report much faster and much smaller (up to 50 times) in size
- Added
writeJsonxlToFileSync()
method to profile - Added
build/*.html
andpackage.json
to exports - Viewer
- Bumped
discoveryjs
to1.0.0-beta.73
- Enabled embed API for integrations
- Rework
flamechart
for performance and reliability, it's a little more compact - Added badges for function references
- Updated segments timeline
- Fixed Windows path processing
- New page badges
- Bumped
- Added count badges and tweaked numeric captions
- Fixed processing of profiles when call frame
scriptId
is a non-numeric string - Reworked
flamechart
view to improve performance especially on large datasets (eliminated double "renders" in some cases, a lot of unnecessary computations and other optimisations) - Changed behaviour in
flamechart
when click on already selected frame to select previously selected frame with a lower depth - Fixed
flamechart
's view height updating when stack depth is growing on zoom - Bumped
discoveryjs
to 1.0.0-beta.65
- Added support for Chromium Developer Tools profile format (Trace Event Format)
- Added flame chart on index page
- Fixed time deltas processing
- Fixed total time computation for areas, packages, modules and functions
- Fixed module path processing
- Reworked aggregations for areas, packages, modules and functions
- Added missed
bin
field - Renamed profile recording method
end()
intoprofileEnd()
for less confussion - Fixed a crash in viewer when an element in
nodes
doesn't contain achildren
field, e.g. when DevTools protocol is used - Fixed file module path normalization in viewer
- Removed modification of
startTime
andendTime
in recorded profile - Exposed
createReport()
method
- Initial release