Skip to content

Commit

Permalink
docs: add references to external modules with APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelGSS committed Oct 19, 2021
1 parent fef9153 commit e79ceaf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions documentation/memory/step1/using_heap_profiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Unlike heap dump that was cover in the [step 2](../step2/using_heap_snapshot.md)
Heap Profiler is similar to the Sampling Heap Profiler, except it will track every allocation. It has
higher overhead than the Sampling Heap Profiler so it’s not recommended to use in production.

> You can use [@mmarchini/observe](https://www.npmjs.com/package/@mmarchini/observe) to do it programmatically.
### How To

Start the application:
Expand Down Expand Up @@ -55,6 +57,8 @@ Check the [usefull links](#usefull-links) section for futher information about m
Sampling Heap Profiler tracks memory allocation pattern and reserved space over time. As it’s
sampling based it has a low enough overhead to use it in production systems.

> You can use the module [`heap-profiler`](https://www.npmjs.com/package/heap-profile) to do it programmatically.
### How To

Start the application:
Expand Down

0 comments on commit e79ceaf

Please sign in to comment.