项目作者: basecamp

项目描述 :
Tell StatsD about request time, GC, objects and more. Latest Rails 4 and Ruby 2.1 support, and ancient Rails 2 and Ruby 1.8 support.
高级语言: Ruby
项目地址: git://github.com/basecamp/trashed.git
创建时间: 2009-08-25T01:39:34Z
项目社区:https://github.com/basecamp/trashed

开源协议:MIT License

下载


Trashed

Keep an eye on resource usage.

  • Sends per-request object counts, heap growth, GC time, and more to StatsD.
  • Sends snapshots of resource usage, e.g. live String objects, to StatsD.
  • Supports new stuff: Rails 5.1 and latest Ruby 2.x features.
  • Supports old stuff: Rails 2/3/4, Ruby 1.9+, REE, Ruby 1.8 with RubyBench patches.

Setup

Rails 5

On Rails 5 (and Rails 3 and 4), add this to the top of config/application.rb:

  1. require 'trashed/railtie'

And in the body of your app config:

  1. module YourApp
  2. class Application < Rails::Application
  3. config.trashed.statsd = YourApp.statsd

Rails 2

On Rails 2, add the middleware to config/environment.rb:

  1. Rails::Initializer.run do |config|
  2. reporter = Trashed::Reporter.new
  3. reporter.logger = Rails.logger
  4. reporter.statsd = YourApp.statsd
  5. config.middleware.use Trashed::Rack, reporter
  6. end

Custom dimensions

You probably want stats per controller, action, right?

Set a #timing_dimensions lambda to return a list of dimensions to
qualify per-request measurements like time elapsed, GC time, objects
allocated, etc.

For example:

  1. config.trashed.timing_dimensions = ->(env) do
  2. # Rails 3, 4, and 5, set this. Other Rack endpoints won't have it.
  3. if controller = env['action_controller.instance']
  4. name = controller.controller_name
  5. action = controller.action_name
  6. format = controller.rendered_format || :none
  7. variant = controller.request.variant || :none # Rails 4.1+ only!
  8. [ :All,
  9. :"Controllers.#{name}",
  10. :"Actions.#{name}.#{action}.#{format}+#{variant}" ]
  11. end
  12. end

Results in metrics like:

  1. YourNamespace.All.Time.wall
  2. YourNamespace.Controllers.SessionsController.Time.wall
  3. YourNamespace.Actions.SessionsController.index.json+phone.Time.wall

Similarly, set a #gauge_dimensions lambda to return a list of dimensions to
qualify measurements which gauge current state, like heap slots used or total
number of live String objects.

For example:

  1. config.trashed.gauge_dimensions = ->(env) {
  2. [ :All,
  3. :"Stage.#{Rails.env}",
  4. :"Hosts.#{`hostname -s`.chomp}" ]
  5. }

Results in metrics like:

  1. YourNamespace.All.Objects.T_STRING
  2. YourNamespace.Stage.production.Objects.T_STRING
  3. YourNamespace.Hosts.host-001.Objects.T_STRING

Version history

3.2.8 (January 31, 2022)

  • REE: Fix that GC.time is reported in microseconds instead of milliseconds

3.2.7 (November 8, 2017)

  • Ruby 1.8.7 compatibility

3.2.6 (June 21, 2017)

  • Mention Rails 5 support

3.2.5 (Feb 26, 2015)

  • Support Ruby 2.2 GC.stat naming, avoiding 2.1 warnings

3.2.4 (July 25, 2014)

  • Fix compatibility with Rails 3.x tagged logging - @calavera

3.2.3 (June 23, 2014)

  • Report CPU/Idle time in tenths of a percent

3.2.2 (March 31, 2014)

  • Reduce default sampling rates.
  • Stop gauging all GC::Profiler data. Too noisy.
  • Report gauge readings as StatsD timings.
  • Support providing a Statsd::Batch since using Statsd#batch
    results in underfilled packets at low sample rates.
  • Fix bug with sending arrays of timings to StatsD.
  • Record GC timings in milliseconds.

3.1.0 (March 30, 2014)

  • Report percent CPU/idle time: Time.pct.cpu and Time.pct.idle.
  • Measure out-of-band GC count, time, and stats. Only meaningful for
    single-threaded servers like Unicorn. But then again so is per-request
    GC monitoring.
  • Support @tmm1’s GC::OOB (https://github.com/tmm1/gctools).
  • Measure time between GCs.
  • Spiff up logger reports with more timings.
  • Support Rails log tags on logged reports.
  • Allow instruments’ #start to set timings/gauges.

3.0.1 (March 30, 2014)

  • Sample requests to instrument based on StatsD sample rate.

3.0.0 (March 29, 2014)

  • Support new Ruby 2.0 and 2.1 GC stats.
  • Gauge GC details with GC::Profiler.
  • Performance rework. Faster, fewer allocations.
  • Rework counters and gauges as instruments.
  • Batch StatsD messages to decrease overhead on the server.
  • Drop NewRelic samplers.

2.0.5 (December 15, 2012)

  • Relax outdated statsd-ruby dependency.

2.0.0 (December 1, 2011)

  • Rails 3 support.
  • NewRelic samplers.

1.0.0 (August 24, 2009)

  • Initial release.