Supported Versions

  • 1.0 and above.

Installation steps

  1. Add the Atatus agent gem to your Gemfile.

    copy
    icon/buttons/copy
    gem 'atatus'
    
  2. Install the Atatus Ruby agent.

    copy
    icon/buttons/copy
    bundle install
    
  3. Add the license key and application name to config.ru file.

    copy
    icon/buttons/copy
    require 'sinatra/base'
    require 'atatus'
    
    class MySinatraApp < Sinatra::Base
      use Atatus::Middleware
    
      # ...
    end
    
    Atatus.start(license_key: 'YOUR_LICENSE_KEY', app_name: 'YOUR_APP_NAME')
    
  4. Restart your Sinatra ruby server to view your performance data within minutes.