Jake Verbaten

Results 317 comments of Jake Verbaten

@Matt-Esch I've seen this fail in production with an EIO file error.

We've only tested & supported this tool with node 0.10.32

Once we have svg mode deployed to prod lets add it to flamethrower. cc @danielheller

This package is supported with node 0.10 To support 4,6,8 or 10 you would have to update https://github.com/uber-node/node-flame/blob/master/lib/heap-reader.js This class knows the internal memory layout of v8 and is able...

One solution might be something like: - nanny creates an append only log of { type: 'spawned', pid: pid } and { type: 'dead', pid: pid }. - whenever nanny...

@kriskowal makes a good point, pids are not unique, we will have to write some kind of unique thing to an append only log. I would assume this is a...

Interesting. We've not seen this edge case with node cluster & UDP itself. Sorry about that, you should look into using a different statsd client or not using cluster. At...

I updated the README with a caveat, thanks for pointing this out.

@blak3r2 looks like the issue is that `node-statsd` creates a single UDP socket. Where as `uber-statsd-client` can create multiple UDP sockets, it will actually de-allocate the UDP socket on inactivity...

There's no need for a plugin systems. We already have commonJS ``` js var myPlugin = require("level-plugin") myPlugin(db, "do shit", function (err, result) { }) ``` Functions are really, really...