KelseyDH / production_rails

Best practices for running Rails in production

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Production Rails

Best practices for running Rails in production.

Disclaimer: ๐Ÿ’Ž indicates one of my gems

Security

Everyone writing code must be responsible for security. Best practices

Analytics

Use an analytics service like Google Analytics or Mixpanel.

And possibly an open source library like Ahoy. ๐Ÿ’Ž

Logging

Use Lograge.

gem 'lograge'

Add the following to config/environments/production.rb.

config.lograge.enabled = true
config.lograge.custom_options = lambda do |event|
  options = event.payload.slice(:request_id, :user_id, :visit_id)
  options[:params] = event.payload[:params].except("controller", "action")
  options
end

Add the following to app/controllers/application_controller.rb.

def append_info_to_payload(payload)
  super
  payload[:request_id] = request.uuid
  payload[:user_id] = current_user.id if current_user
  payload[:visit_id] = ahoy.visit_id # if you use Ahoy
end

Audits

Use an auditing library like Audited.

Errors

Use an error reporting service like Rollbar.

Monitoring

What to Monitor

Web Requests
  • requests by action - total time, count
  • queue time - X-Request-Start header
Background Jobs and Rake Tasks
  • jobs by type - total time, count
Data Stores - Database, Elasticsearch, Redis
  • requests by type - total time, count
  • CPU usage
  • space
External Services
  • requests by type - total time, count

Notable Events

Use Notable to track notable requests and background jobs. ๐Ÿ’Ž

  • errors
  • slow requests, jobs, and timeouts
  • 404s
  • validation failures
  • CSRF failures
  • unpermitted parameters
  • blocked and throttled requests

Timeouts

Add timeouts.

Add them to:

Performance

Development Bonus

If you experience double logging in the Rails console, create config/initializers/logger.rb with:

ActiveSupport::Logger.class_eval do
  def self.broadcast(logger)
    Module.new do
    end
  end
end

Lastly...

Have suggestions? Help make this guide better for everyone.

If you use Heroku, check out Rails on Heroku.

About

Best practices for running Rails in production