Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kunklejr/system-metrics
System Metrics is a Rails 3 Engine that provides a clean web interface to the performance metrics instrumented with ActiveSupport::Notifications
https://github.com/kunklejr/system-metrics
Last synced: 3 months ago
JSON representation
System Metrics is a Rails 3 Engine that provides a clean web interface to the performance metrics instrumented with ActiveSupport::Notifications
- Host: GitHub
- URL: https://github.com/kunklejr/system-metrics
- Owner: kunklejr
- License: mit
- Created: 2011-07-19T00:37:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-12-04T01:16:29.000Z (almost 11 years ago)
- Last Synced: 2024-07-27T18:57:09.085Z (4 months ago)
- Language: Ruby
- Homepage: nearinfinity.github.com/system-metrics
- Size: 586 KB
- Stars: 103
- Watchers: 7
- Forks: 14
- Open Issues: 3
-
Metadata Files:
- Readme: README.rdoc
- License: LICENSE
Awesome Lists containing this project
README
= System Metrics
System Metrics is a Rails 3 Engine that provides a clean web interface to the performance metrics instrumented with `ActiveSupport::Notifications`. It'll collect and display the notifications baked into Rails and any additional custom ones you add using `ActiveSupport::Notification#instrument`.
System Metrics is not intended to be a replacement for performance monitoring solutions such as {New Relic}[http://newrelic.com/]. However, it is especially handy for quickly identifying performance problems in a development environment. It's also a great alternative for private networks disconnected from the Internet.
= Installation
To install the System Metrics gem in your Rails 3 app, add the following line to your Gemfile
gem 'system-metrics'
You'll then need to move the System Metrics migration into your project and run it.
rails generate system_metrics:migration
rake db:migrateLastly, the public assets from the System Metrics gem need to be moved into your app
rails generate system_metrics:install
After the above setup, you can reach the System Metrics interface at /system/metrics within your app.
= Setup
Out of the box, System Metrics collects the more interesting performance notifications built into Rails with no configuration. However, there are a few options available to fine tune it and add your own instrumentations.
== Path Exclusion Patterns
You can append patterns to the `path_exclude_patterns` setting if there are URLs you don't care to collect metrics about.
# config/application.rb
config.system_metrics.path_exclude_patterns << /^\/admin/Adding the `/^\/admin/` exclusion pattern will ensure that no metrics are collected for any path beginning with `/admin`.
== Notification Exclusion Patterns
You can append patterns to the `notification_exclude_patterns` setting if you notice metrics in the System Metrics interface that you don't care about. The patterns are matched against the `ActiveSupport::Notifications::Event#name`.
# config/application.rb
config.system_metrics.notification_exclude_patterns << /annoying$/Adding the `/annoying$/` exclusion pattern will prevent notifications whose name ends with `annoying` from being collected by System Metrics.
== Instruments
Instruments are responsible for the decision to collect a notification as a metric and processing it before storage. By default, system metrics add instruments for ActionController, ActionMailer, ActionView, ActiveRecord, and a high level Rack request. However, you can easily add additional instruments to the configuration.
# config/application.rb
config.system_metrics.instruments << MyCustomInstrument.new= Custom Instruments
By default, System Metrics will collect all notifications it has not been specifically configured not to collect. Therefore, simply adding ActiveSupport::Notifications#instrument calls to your code is normally good enough. System Metrics will just start collecting these new notifications. However, if you'd like to modify the notification event payloads or be more selective about which types of notifications get collected, you'll want to write a custom instrument.
Instrument implementations require three methods, #handles?(event), #ignore?(event), and #process(event). If your needs are fairly simple, you may be able to extend SystemMetrics::Instrument::Base. Check its RDoc for details.
Below is a custom instrument for timing Sunspot searches:
class SunspotInstrument
def handles?(event)
event.name =~ /sunspot$/
end
def ignore?(event)
User.current.admin?
end
def process(event)
event.payload[:user] = User.current.name
end
endThis example instrument illustrates three concepts
(1) It will handle any event whose name ends with sunspot.
(2) It will inform SystemMetrics that the event should not be collected if the current user is an administrator.
(3) It will add the current user's name to the event payload= Date/Time Ranges
You can change the time range of metrics shown on the dashboard and category screens using two query parameters; from and to. Consider the following examples:
Show dashboard metrics from three hours ago until now
http://localhost:3000/system/metrics?from=3.hours
Show one day of dashboard metrics beginning two days ago
http://localhost:3000/system/metrics?from=2.days&to=1.day
Show one hour of category metrics ending 30 minutes ago
http://localhost:3000/system/metrics/category/active_record?from=90.minutes&to=30.minutesAs you might have guessed, the 'from' and 'to' query parameters take an integer and any valid method added by ActiveSupport::CoreExtensions::Numeric::Time to create a time in the past. The default 'from' time is 30 minutes and 'to' is 0 minutes (current time).
= Authorization
Since SystemMetrics is not recommended for production use, the lack of authorization is not likely a problem. However, it should be rather straightforward to add your own. Consider the following example implementation:
# config/initializers/system_metrics_authorization.rb
module SystemMetricsAuthorization
def self.included(base)
base.send(:before_filter, :authorize)
end
def authorize
# Do your authorization thing
end
endSystemMetrics::MetricsController.send(:include, SystemMetricsAuthorization)
= Caveats
I would not currently recommend using SystemMetrics in a production environment. There are far too many database inserts of the collected metrics to confidently say that it wouldn't impact your application's performance.
= Contributing
System Metrics is a young project and there's still plenty to do. If you're interested in helping out, please take a look at the open issues and follow the steps described for {contributing to a project}[http://help.github.com/fork-a-repo/]. Your help is greatly appreciated.
= Credits
The idea behind System Metrics and the inspiration for a good portion of its code comes from José Valim's Rails Metrics project.
= License
System Metrics is released under the MIT license.
Copyright (c) 2011 Near Infinity. http://www.nearinfinity.com