npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gc-trace-parser-csv

v1.0.2

Published

Parser for the V8's -gc_trace option with export to csv

Downloads

4

Readme

gc-trace-parser-csv

A command line utility to parse and convert captured gc traces to CSV format for further analysis.

Build Status Coverage Status

Background

I use gc traces to check for memory leaks and performance issues. Converting these logs to csv allows me to plot graphs to show trends in terms of memory usage and gc time.

Installation

$ npm install -g gc-trace-parser-csv

Usage:

gc-trace-parser-csv -i [input log file] -o [output csv file]

Typical usage:

Capture:

node -trace_gc ./examples/example-1-simple-loop.js > ./examples/example-1-simple-loop.log

Parse and convert to CSV:

gc-trace-parser-csv -i ./examples/example-1-simple-loop.log -o ./examples/example-1-simple-loop.csv

A breakdown of a typical trace:

GC Trace Details

For more information on traces please refer to my post Does my NodeJS application leak memory? – 4

Examples

There are two examples in the examples directory with their associated log and csv files. A simple loop

Example: example-1-simple-loop.js:

"use strict";

var s = [];

//stores 1,000,000 in a local variable
function aString(){
    var text = '';

    //empty out the array when it contains 100, 1,000,000 size char strings
    if(s.length === 100){
        s = [];//this should signal a gc
    }

    //1,000,000 chars added
    for(var i = 0; i < 10000; i++){

        //string of 100 characters
        text += 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the ';
    }
    s.push(text);

}

//loop pushing strings of 1,000,000 bytes each time
for(var i = 0; i < 50000; i++ ){
    aString();
}

Capture output of example-1-simple-loop.js to a log file:

node -trace_gc ./examples/example-1-simple-loop.js > ./examples/example-1-simple-loop.log

Parse and convert example-1-simple-loop.log to CSV:

gc-trace-parser-csv -i ./examples/example-1-simple-loop.log -o ./example-1-simple-loop.csv

Create and analyze plot of example-1-simple-loop.csv

You can view the chart in Plotly. Plotly is one of the simplest charting tools I have seen.

Closure

Example: example-2-closure.js:

"use strict";

function bString(){
    var s = []; //withing a closure

//stores 1,000,000 in a local variable
    return function aString(){
        var text = '';

        //empty out the array when it contains 400 1,000,000 char strings
        if(s.length === 100){
            s = [];
        }

        //1,000,000 chars added
        for(var i = 0; i < 10000; i++){

            //string of 100 characters
            text += 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the ';
        }
        s.push(text);

    }
}


var aStr = bString();

for(var i = 0; i < 50000; i++ ){
    aStr();
}

Capture output of example-2-closure.js to a log file:

node -trace_gc ./examples/example-2-closure.js > ./examples/example-2-closure.log

Parse and convert example-2-closure.log to CSV:

gc-trace-parser-csv -i ./examples/example-2-closure.log -o ./examples/example-2-closure.csv

create and analyze plot

You can view the chart in Plotly

Creating your own command line utility

You could use the parser in your app or code like any other module

"use strict";
const parser = require('trace-parser-csv');

const f = 'path/to/your-trace-log-file.log';
parser(f, function (err, res) {
    if(err) throw err;
    
    //res contains the csv data
});

Testing

$ npm test

Compiling to ES5

$ npm run compile

Author

  • Jayesh Wadhwani

License

(The MIT License)

Copyright (c) 2016 Jayesh Wadhwani

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.