Search code examples
ruby-on-railsperformancenewrelic

Open Source New Relic alternative


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?


Solution

  • 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.