Project

statify

0.01
No release in over 3 years
Low commit activity in last 3 years
Pop this gem in your rails >= 3 application. This gem will utilize statsd and easily track basic performance stats for your application.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0

Runtime

>= 3.0.0
~> 1.2.0
 Project Readme

Statify

Build Status

Pop this gem in your rails >= 3 application. Simply give this gem the location of your statsd instance and it can seamlessly track the following:

  • Performance stats broken down by controller and action and further broken down by view, database, and overall runtimes
  • Overall SQL calls durations
  • Ruby garbage collection stats (this will run after every controller response cycle)
  • Cache hit and miss rates

Installation

Add this line to your application's Gemfile:

gem 'statify'

And then execute:

$ bundle

Or install it yourself as:

$ gem install statify

Pre-Requisities

You will need to have a statsd instance running somewhere that you can connect to. If you want to graph what is coming out of statsd there are different front ends to use with statsd. One of them is Graphite: http://graphite.wikidot.com/

Usage

In your Rails App put these following lines in your config/application.rb:

config.statify.categories = [:sql, :garbage_collection, :cache, :controller]
config.statify.statsd = Statsd.new('127.0.0.1', 8125)

Obviously put in the address of your own statsD ip address and port into the statsd.new call. The categories are opt-in, so put in what you want to use.

Ruby Notes

Ruby 1.8.7: 1.8.7 has a different call for GC stats that I haven't looked into it yet. You can install this gem on your 1.8.7 codebase for now just omit the garbage_collection category.

Supported categories

  • garbage_collection
  • controller
  • cache
  • sql

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request