system-metrics
system-metrics copied to clipboard
System Metrics is a Rails 3 Engine that provides a clean web interface to the performance metrics instrumented with ActiveSupport::Notifications
First, great job! I was getting ActionView::Template::Error (couldn't parse YAML at line 5 column 8): Fixed it by adding the following to my config/boot.rb file require 'yaml' YAML::ENGINE.yamler= 'syck' Should...
Since System Metrics uses Active Record to store the metrics, all of the SQL statements involved are logged among the other logging of your application. It would be nice to...
System Metrics displays primitive bar graphs on all pages that show a table of metrics. The bars are shown in red if they are considered slow and green otherwise. The...