Socket
Socket
Sign inDemoInstall

heap-profile

Package Overview
Dependencies
16
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    heap-profile

Support for V8's sampling heap profiler


Version published
Weekly downloads
490
increased by20.39%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Sampling Heap Profiler

style badge CircleCI

This module adds supports for the Sampling Heap Profiler in V8. This works by taking a random sample of objects, as they are allocated, to keep a statistical sample of what is live in the heap at any given time. This also keeps track of the stack that allocated a given sampled object. This means that you know not only what is live, but what code path allocated it. This is motivated by, and functions similarly to, the heap profiler built into tcmalloc.

  • This is supposed to be lightweight enough for in-production use on servers.
  • The generated snapshots can be saved offline, and be opened in DevTools later.

app.get seems to be leaking

Usage

const heapProfile = require('heap-profile');

heapProfile.start();

// Write a snapshot to disk every hour
setInterval(() => {
  heapProfile.write((err, filename) => {
    console.log(`heapProfile.write. err: ${err} filename: ${filename}`);
  });
}, 60 * 60 * 1000).unref();

heapProfile.start()

Starts sampling. You probably want to call this as close to the program startup as possible.

heapProfile.get(translate?: boolean)

Returns the profile composed of a tree of nodes (V8 format). When the optional parameter translate is true, the returned profile is in DevTools format.

heapProfile.write()

This function is overloaded with the following variants:

function write(): Promise<string>;
function write(path: string): Promise<string>;
function write(cb: Callback): void;
function write(path: string, cb: Callback): void;

interface Callback { (err: Error|null, path?: string): void; }

Writes the current heap sample to the path specified. If the path parameter is omitted, a file with the pattern heap-profile-${Date.now()}.heapprofile will be written to the current working directory.

The callback returns error if profiling was not active at the time of call. Otherwise the output file path is returned via the callback or the promise.

stop()

Stops sampling and discard the current set of tracked sampled objects. You can call start again to start sampling again, but any objects allocated before start is called cannot be sampled, which means that the profile will not be representative of the state of the heap.

The sampling overhead is low enough that you probably don't need to use stop.

FAQs

Last updated on 16 Oct 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc