From e79ceafa73a8c5f375541edd7e5495ff63a572f0 Mon Sep 17 00:00:00 2001 From: Rafael Gonzaga Date: Tue, 19 Oct 2021 09:22:15 -0300 Subject: [PATCH] docs: add references to external modules with APIs --- documentation/memory/step1/using_heap_profiler.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documentation/memory/step1/using_heap_profiler.md b/documentation/memory/step1/using_heap_profiler.md index 1f80e60..7aa6ebf 100644 --- a/documentation/memory/step1/using_heap_profiler.md +++ b/documentation/memory/step1/using_heap_profiler.md @@ -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: @@ -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: