Live data from Hacker News

New Relic now supports Node.js

blog.newrelic.com

11–20 of 29 posts

Re: New Relic now supports Node.js

#11
This genuinely couldn't have came at a better time.

We've just released our internal application powered by Node.js — our first. Since releasing we've been experiencing random 504 errors with no way of tracking them down, since they run in a Dokku container. Attaching to the logs displays nothing either.

This will really help! Thanks guys!

Re: New Relic now supports Node.js

#12
post #6

Does anyone know if New Relic can be used in a more limited capacity with unsupported languages? I've been building an OpenResty/Lapis app (Lua) and would love to be able to get some visibility into my Heroku dynos.

We're working on a somehow similar product that works by understanding the network traffic received and sent by your application. This means it can be language independent. http://packetbeat.com/

That's really cool! Great name, too. Probably a little less comprehensive than New Relic's offering, but I like that you don't have to do any kind of integration.

On a side note, the font you guys use for parts of your site is way too thin. It's really hard to read. See the items in the bottom/middle: http://cl.ly/image/2H0r1d1b210p

Re: New Relic now supports Node.js

#14

Earlier quoted context omitted.

We're working on a somehow similar product that works by understanding the network traffic received and sent by your application. This means it can be language independent. http://packetbeat.com/

That's really cool! Great name, too. Probably a little less comprehensive than New Relic's offering, but I like that you don't have to do any kind of integration. On a side note, the font you guys use for parts of your site is way too thin. It's really hard to read. See the items in the bottom/middle: http://cl.ly/image/2H0r1d1b210p

Thanks! We're working on adding more information to the website and also on improving the design, based on the feedback we got so far.

Re: New Relic now supports Node.js

#17

Is the best reason to use Node.js really just that it supports asynchrony? I'm sure Go also has that and Erlang has existed for a long time. There are many other options, so why Node?

Node allows you to write JavaScript on the server, which is pretty awesome if you're interested in sharing code (validation, etc) on a client-heavy web app.

I don't have any experience with Go or Erlang, but Node's particular brand of asynchrony is all about non-blocking IO. There are no threads -- all instructions happen in one thread.

Re: New Relic now supports Node.js

#18

Is the best reason to use Node.js really just that it supports asynchrony? I'm sure Go also has that and Erlang has existed for a long time. There are many other options, so why Node?

Node came at a time when client side JS was really starting to take off. I can't speak much about Go or Erlang, but I suspect a lot of it has to do with marketing and some lucky momentum.

It also helps that tools like Grunt are Node based, causing frontend devs to look to Node when they need to stand up a back end. At least, Grunt was a pathway into Node for me anyway.

Re: New Relic now supports Node.js

#19

Is the best reason to use Node.js really just that it supports asynchrony? I'm sure Go also has that and Erlang has existed for a long time. There are many other options, so why Node?

The way I see it, go & erlang is rather about concurrency (and parallelism). async the node way is single threaded.

Anyway, the reason probably has rather to do with JavaScript (V8's speed) and node's eco-system (tools, libraries).

Post reply on HN