Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open Source New Relic alternative [closed]

I'm searching for a open source alternative for New Relic. Something that I can install on my own for my rails development and production app, to analyse my queries, render times... There are a lot of services out there, most of them with a free plan. But I want to host that thing on my own, install it for development to analyse my application BEFORE it goes into production.

Any suggestions?

like image 442
23tux Avatar asked Oct 24 '13 08:10

23tux


4 Answers

i have not found any thing similar to new_relic but for alternative you can use lots of other gems like

gem 'rack-mini-profiler'
gem "bullet"

for db performance and query checking, and also you fire_bug, chrome development tool, Jmeter for client side performance.

like image 92
Sabyasachi Ghosh Avatar answered Nov 11 '22 01:11

Sabyasachi Ghosh


There isn't really an open soruce alternative that can do all the things that New Relic does. But you can use a combination of other gems to help with benchmarking the performance of your application.

Here are a few tools I would try out

Bullet will help with DB queries https://github.com/flyerhzm/bullet

MiniProfiler is also a useful tool for analyzing requests http://miniprofiler.com/

like image 28
Aaron Dufall Avatar answered Nov 11 '22 03:11

Aaron Dufall


I haven't used it myself but I've heard good things about Sensu (http://sensuapp.org/).

It's a general purpose monitoring framework and claims to be an alternative to nagios and the like. I seriously doubt that it comes close to New Relic though regarding things like rendering times and more in-depth information about your app.

like image 2
StFS Avatar answered Nov 11 '22 01:11

StFS


https://github.com/sergeyksv/tinelic is supposed to be open source alternative for middle sizes apps. It can accept metrics from new relic agent (you just need to adjust host to make it report to your server). However so far we didn't try it with ruby agents, but in general it should work, you can give a try.

like image 2
Sergey Korotkov Avatar answered Nov 11 '22 03:11

Sergey Korotkov