Moesif Middleware for Ruby on Rails and Rack

Built For rack Latest Version Total Downloads Software License Source Code

Rack Middleware that logs API calls and sends to Moesif for API analytics and log analysis.

Supports Ruby on Rails apps and other Ruby frameworks built on Rack.

Source Code on GitHub

How to install

gem install moesif_rack

and if you have a Gemfile in your project, please add this line to

gem 'moesif_rack', '~> 1.3.8'

How to use

Create the options

moesif_options = {
  'application_id' => 'Your Moesif Application Id',
  'log_body' => true,
}

Your Moesif Application Id can be found in the Moesif Portal. After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.

You can always find your Moesif Application Id at any time by logging into the Moesif Portal, click on the top right menu, and then clicking Installation.

Add to middleware

Using strings or symbols for middleware class names is deprecated for newer frameworks like Ruby 5.0, so you should pass the class directly.

For Rails 5.0 or newer:

  class Application < Rails::Application
    # snip

    config.middleware.use MoesifRack::MoesifMiddleware, moesif_options

    # snip
  end

For other frameworks:

within config/application.rb

  class Application < Rails::Application
    # snip

    config.middleware.use "MoesifRack::MoesifMiddleware", moesif_options

    # snip
  end

Order of Middleware Matters

Since Moesif Rack is a logging middleware, the ordering of middleware matters for accuracy and data collection. Many middleware are installed by default by Rails.

The best place for "MoesifRack::MoesifMidleware" is on top (so it captures the data closest to the wire). Typically, right above the default logger of Rails apps, "Rails::Rack::Logger" is a good spot. Or if you want to be as close as wire as possible, put it before "ActionDispatch::Static"

To insert the Moesif middleware before "Rails::Rack::Logger", you can use the insert_before method instead of use

  class Application < Rails::Application
    # snip

    config.middleware.insert_before Rails::Rack::Logger, MoesifRack::MoesifMiddleware, moesif_options

    # snip
  end

If you are using "Rack::Deflater" or other compression middleware, make sure Moesif is after it, so it can capture the uncompressed data.

To see your current list of middleware:

  bin/rails middleware

Configuration options

The options is a hash with these possible key value pairs.

application_id

Required. String. This is the Moesif application_id under settings from your Moesif account.

api_version

Optional. String. Tag requests with the version of your API.

identify_user

Optional. identify_user is a Proc that takes env, headers, and body as arguments and returns a user_id string. This helps us attribute requests to unique users. Even though Moesif can automatically retrieve the user_id without this, this is highly recommended to ensure accurate attribution.


moesif_options['identify_user'] = Proc.new { |env, headers, body|

  #snip

  'my_user_id'
}

identify_company

Optional. identify_company is a Proc that takes env, headers, and body as arguments and returns a company_id string. This helps us attribute requests to unique company.


moesif_options['identify_company'] = Proc.new { |env, headers, body|

  #snip

  'my_company_id'
}

get_metadata

Optional. get_metadata is a Proc that takes env, headers, and body as arguments and returns a Hash that is representation of a JSON object. This allows you to attach any metadata to this event.


moesif_options['get_metadata'] = Proc.new { |env, headers, body|

  #snip
  value = {
      'foo'  => 'abc',
      'bar'  => '123'
  }

  value
}

identify_session

Optional. A Proc that takes env, headers, body and returns a string.


moesif_options['identify_session'] = Proc.new { |env, headers, body|

  #snip

  'the_session_token'
}

mask_data

Optional. A Proc that takes event_model as an argument and returns event_model. With mask_data, you can make modifications to headers or body of the event before it is sent to Moesif.


moesif_options['mask_data'] = Proc.new { |event_model|

  #snip

  event_model
}

For details for the spec of event model, please see the moesifapi-ruby

skip

Optional. A Proc that takes env, headers, body and returns a boolean.


moesif_options['skip'] = Proc.new { |env, headers, body|

  #snip

  false
}

For details for the spec of event model, please see the Moesif Ruby API Documentation

debug

Optional. Boolean. Default false. If true, it will print out debug messages. In debug mode, the processing is not done in backend thread.

log_body

Optional. Boolean. Default true. If false, will not log request and response body to Moesif.

capture_outoing_requests

Optional. boolean, Default false. Set to true to capture all outgoing API calls from your app to third parties like Stripe, Github or to your own dependencies while using Net::HTTP package. The options below is applied to outgoing API calls. When the request is outgoing, for options functions that take request and response as input arguments, the request and response objects passed in are Request request and Response response objects.

identify_user_outgoing

Optional. identify_user_outgoing is a Proc that takes request and response as arguments and returns a user_id string. This helps us attribute requests to unique users. Even though Moesif can automatically retrieve the user_id without this, this is highly recommended to ensure accurate attribution.


moesif_options['identify_user_outgoing'] = Proc.new { |request, response|

  #snip

  'the_user_id'
}

identify_company_outgoing

Optional. identify_company_outgoing is a Proc that takes request and response as arguments and returns a company_id string. This helps us attribute requests to unique company.


moesif_options['identify_company_outgoing'] = Proc.new { |request, response|

  #snip

  'the_company_id'
}

get_metadata_outgoing

Optional. get_metadata_outgoing is a Proc that takes request and response as arguments and returns a Hash that is representation of a JSON object. This allows you to attach any metadata to this event.


moesif_options['get_metadata_outgoing'] = Proc.new { |request, response|

  #snip
  value = {
      'foo'  => 'abc',
      'bar'  => '123'
  }

  value
}
identify_session_outgoing

Optional. A Proc that takes request, response and returns a string.


moesif_options['identify_session_outgoing'] = Proc.new { |request, response|

  #snip

  'the_session_token'
}

skip_outgoing

Optional. A Proc that takes request, response and returns a boolean. If true would skip sending the particular event.


moesif_options['skip_outgoing'] = Proc.new{ |request, response|

  #snip

  false
}

mask_data_outgoing

Optional. A Proc that takes event_model as an argument and returns event_model. With mask_data_outgoing, you can make modifications to headers or body of the event before it is sent to Moesif.


moesif_options['mask_data_outgoing'] = Proc.new { |event_model|

  #snip

  event_model
}

log_body_outgoing

Optional. Boolean. Default true. If false, will not log request and response body to Moesif.

Update User

update_user method

A method is attached to the moesif middleware object to update the user profile or metadata. The metadata field can be any custom data you want to set on the user. The user_id field is required.

 = JSON.parse('{'\
      '"email": "[email protected]",'\
      '"name": "ruby api user",'\
      '"custom": "testdata"'\
    '}')

campaign_model = {"utm_source" => "Newsletter",
                  "utm_medium" => "Email"}

user_model = { "user_id" => "12345",
                "company_id" => "67890",
                "modified_time" => Time.now.utc.iso8601, 
                "metadata" => ,
                "campaign" => campaign_model }

update_user = MoesifRack::MoesifMiddleware.new(@app, @options).update_user(user_model)

update_users_batch method

A method is attached to the moesif middleware object to update the users profile or metadata in batch. The metadata field can be any custom data you want to set on the user. The user_id field is required.

 = JSON.parse('{'\
      '"email": "[email protected]",'\
      '"name": "ruby api user",'\
      '"custom": "testdata"'\
    '}')

user_models = []

user_model_A = { "user_id" => "12345",
                "company_id" => "67890", 
                "modified_time" => Time.now.utc.iso8601, 
                "metadata" =>  }

user_model_B = { "user_id" => "1234", 
                "company_id" => "6789",
                "modified_time" => Time.now.utc.iso8601, 
                "metadata" =>  }

user_models << user_model_A << user_model_B
response = MoesifRack::MoesifMiddleware.new(@app, @options).update_users_batch(user_models)

Update Company

update_company method

A method is attached to the moesif middleware object to update the company profile or metadata. The metadata field can be any custom data you want to set on the company. The company_id field is required.

 = JSON.parse('{'\
      '"email": "[email protected]",'\
      '"name": "ruby api company",'\
      '"custom": "testdata"'\
    '}')

campaign_model = {"utm_source" => "Adwords",
                  "utm_medium" => "Twitter"}

company_model = { "company_id" => "12345", 
                  "company_domain" => "acmeinc.com",
                  "metadata" => ,
                  "campaign" => campaign_model }

update_company = MoesifRack::MoesifMiddleware.new(@app, @options).update_company(company_model)

update_companies_batch method

A method is attached to the moesif middleware object to update the companies profile or metadata in batch. The metadata field can be any custom data you want to set on the company. The company_id field is required.

 = JSON.parse('{'\
      '"email": "[email protected]",'\
      '"name": "ruby api user",'\
      '"custom": "testdata"'\
    '}')

company_models = []

company_model_A = { "company_id" => "12345",
                    "company_domain" => "nowhere.com", 
                "metadata" =>  }

company_model_B = { "company_id" => "67890",
                    "company_domain" => "acmeinc.com",
                "metadata" =>  }

company_models << company_model_A << company_model_B
response = MoesifRack::MoesifMiddleware.new(@app, @options).update_companies_batch(company_models)

How to test

  1. Manually clone the git repo
  2. From terminal/cmd navigate to the root directory of the middleware.
  3. Invoke 'gem install moesif_rack'
  4. Add your own application id to 'test/moesif_rack_test.rb'. You can find your Application Id from Moesif Dashboard -> Top Right Menu -> Installation
  5. Invoke 'ruby test/moesif_rack_test.rb'
  6. Invoke 'ruby -I test test/moesif_rack_test.rb -n test_capture_outgoing' to test capturing outgoing API calls from your app to third parties like Stripe, Github or to your own dependencies.

Example Code

Moesif Rack Example with Rails is an example of Moesif Rack applied to a Rails application.

Moesif Rack Example is an example of Moesif Rack applied to a Rack application.

Other integrations

To view more more documentation on integration options, please visit the Integration Options Documentation.