prof
v0.0.2
Published
Profile, debug, optimize and understand node applications.
Downloads
92
Readme
Prof
Profile, debug, optimize and understand node applications. With the help of native bindings to the v8-profiler you're able to take snapshosts of the heap, profile CPU usage and debug your code with breakpoints while running.
The debugger is there to inspect taken snapshots visually, or interact with your remote processes in a convenient way. It's built upon the WebInspector front-end that is shipped with most WebKit variants.
This project is mainly inspired by three modules:
API
Profiler
Heap profiling is exposed via the heap
object and enables you to take snapshots and manage the snapshosts. The heap
exposes the interface implemented in the v8 HeapProfiler.
Structure of a snapshot:
{
uid: <NUMBER>, // internally generated id
root: <NODE>,
title: <STRING>, // empty if not passed as argument to takeSnapshot()
type: <STRING>, // "Full" is the default and only option
nodes: <STRING>, // amount of nodes
delete: [Function: delete],
getNode: [Function: getNode],
getNodeById: [Function: getNodeById],
serialize: [Function: serialize]
}
Take a snapshot of the current process:
var heap = require('profiler').heap;
var snapshot = heap.takeSnapshot('a-meaningful-name');
Serialize a snapshot as JSON into a file:
snapshot.serialize('/tmp/snapshot.json');
Delete one snapshot:
snapshot.delete();
Delete all snapshots:
heap.deleteAllSnapshots();
Get the current count
of snapshots:
heap.snapshotCount();
Get/Find a snapshot:
// get by index
heap.getSnapshot(0);
// find by UID
heap.findSnapshot(1);
A snapshot consists of many nodes, starting with the root
node which is exposed as top-level property. The structure of a node:
{
id: <NUMBER>, // internal ID
ptr: <NUMBER>, // pointer address
type: <STRING>, // type of the node like: 'Object', 'String', 'Array'...
dominatorNode: <NODE>, // This is the node that participates in every path from the snapshot root to the current node
name: '', // Depending on node's type this can be the name of the constructor (for objects), the name of the function (for closures), string value, or an empty string (for compiled code)
approximateRetainedSize: <NUMBER>, // imprecise guess on the retainedsize of the node
retainersCount: <NUMBER>, // Retainer nodes count of the node
childrenCount: <NUMBER>, // count of children
size: <NUMBER>, // node's own size in bytes
getChild: [Function: getChild], // Retrieves a child by index
getRetainer: [Function: getRetainer], // Returns a retainer by index
getRetainedSize: [Function: getRetainedSize] // That is, self + sizes of the objects that are reachable only from this object. In other words, the size of memory that will be reclaimed having this node collected. This call returns an accurate number of approximateRetainedSize
}
Get a node by it's ID:
snapshot.getChild(1); // will return the root element
Repl
Hook into running processes and take snapshots.
var repl = require('repl');
repl.createRepl();
The repl listens on a signal
by default SIGUSR2
to start and stop the debug server.
You can change the event
, host
and port
by passing a config object:
var repl = require('repl');
repl.createRepl({ event: 'SIGUSR1', host: '0.0.0.0', port: 11111 });
Debugger
To start the interactive debugger call:
debugger
Per default the debugger will start on http://localhost:1337/debug.
Overwrite the default port and host with:
debugger --host=0.0.0.0 --port=9000
You can preload heap snapshots for inspection with a comma-separated list:
debugger --snapshots=snapshot1.json,snapshot2.json
Caveats
Binding functions like getSnapshot()
which take a variable index
or id
causing a segmentation fault when called with an invalid reference.
This module is early alpha. Many of the documented interfaces aren't even implemented yet as this README.md is developed with principle of RDD.
Development
Setup
To build the node addon and install dependencies run:
make
Testing
Tests are written with Vows and are limited to the node code. CI is covered by travis-ci and the current status is visible here.
To run all tests:
make test
Branching
This repository is organized and maintained with the help of gitflow. Developers are encouraged to use it when working with this repository.
We use the following naming convention for branches:
develop
(during development)master
(will be or has been released)feature/<name>
(feature branches)
During development, you should work in feature branches instead of committing to master
directly. Tell gitflow that you want to start working on a feature and it will do the work for you (like creating a branch prefixed with feature/
):
git flow feature start <FEATURE_NAME>
The work in a feature branch should be kept close to the original problem. Tell gitflow that a feature is finished and it will merge it into master
and push it to the upstream repository:
git flow feature finish <FEATURE_NAME>
Even before a feature is finished, you might want to make your branch available to other developers. You can do that by publishing it, which will push it to the upstream repository:
git flow feature publish <FEATURE_NAME>
To track a feature that is located in the upstream repository and not yet present locally, invoke the following command:
git flow feature track <FEATURE_NAME>
Changes that should go into production should come from the up-to-date master branch. Enter the "release to production" phase by running:
git flow release start <VERSION_NUMBER>
In this phase, only meta information should be touched, like bumping the version and update the history. Finish the release phase with:
git flow release finish <VERSION_NUMBER>
Versioning
This project is versioned with the help of the Semantic Versioning Specification using 0.0.0
as the initial version. Please make sure you have read the guidelines before increasing a version number either for a release or a hotfix.
Contributing
normal
- Fork Prof
- Create a topic branch
git checkout -b my_branch
- Push to your branch
git push origin my_branch
- Create a Pull Request from your branch
git-flow
- Fork Prof
- Create a feature
git flow feature start my-feature
- Publish your featue
git flow feature publish my-feature
- Create a Pull Request from your branch
Meta
- Code:
git clone [email protected]:goldjunge/prof.git
- Home: https://github.com/goldjunge/prof
- Docs: https://github.com/goldjunge/prof
- Bugs: https://github.com/goldjunge/prof/issues
This project uses Semantic Versioning & git flow with the help of git-flow
Todos
- implement snapshot header handling
- implement remote connection to node process in debug mode
- implement cpu profiling
- implement interactive console
- implement breakpoints
- generate docs (man?)
- generate site