项目作者: khusnetdinov

项目描述 :
[ARCHIVE] :wrench: ActiveEndpoint is middleware for Rails application that collect and analize request and response per request for route endpoint. It works with minimum affecting to application response time.
高级语言: Ruby
项目地址: git://github.com/khusnetdinov/active_endpoint.git
创建时间: 2017-05-24T20:25:25Z
项目社区:https://github.com/khusnetdinov/active_endpoint

开源协议:MIT License

下载


ActiveEndpoint Build Status Gem Version Open Source Helpers

Your request tracking tool for rails applications

Attention! Gem in under active test and is preparing for first release !

img

Usage

ActiveEndpoint is middleware for Rails applications that collects and analyses requests and responses per request for endpoint. It works with minimal impact on application’s response time.

This gem uses ActiveSupport::Notifications and Cache Storage to reduce possible impact on application request / response processing time.

Features

  • Metrics are stored in database for further tracking and analysis.
  • History rotation with configurable limits of records amount and age.
  • Routes filter (blacklist).
  • Probes tagging by processing time.

Metrics

These endpoint metrics are stored in DB:

  • :uuid - uniq probe identifier
  • :endpoint - requested endpoint
  • :path - requested full path
  • :query_string - request query string
  • :request_method - http request method
  • :ip - ip address asked request
  • :url - request full url
  • :xhr - is request ajax?
  • :started_at - probe start time
  • :finished_at - probe finish time
  • :duration - probe request duration
  • :params - parsed requested params
  • :response - Base64 encoded html response
  • :body - Base64 encoded request body

Additional information is taken from Rack log:

:base_url, :content_charset, :content_length, :content_type, :fullpath, :http_version, :http_connection, :http_accept_encoding, :http_accept_language, :media_type, :media_type_params, :method, :path_info, :pattern, :port, :protocol, :server_name, :ssl.

Requests which are not recognized by rails router are stored as unregistred.

Requirements

  • redis as cache storage

Be sure that you have all requrements installed on you machine.

Installation

Add this line to your application’s Gemfile:

  1. gem 'active_endpoint'

And then execute:

  1. $ bundle

Or install it yourself as:

  1. $ gem install active_endpoint

Setup project for using gem:

  1. $ rails generate active_endpoint:install

Migrate database for models:

  1. $ rake db:migrate # Rails <=4
  2. $ rails db:migrate # Rails >=5

Now project has all files and settings that allow you to use gem.

Configuration

Endpoints filter (blacklist)

By default ActiveEndpoint treats all routes as whitelist routes. To filter some endpoints you can use blackilist configuration, as shown below:

  1. ActiveEndpoint.configure do |endpoint|
  2. endpoint.blacklist.configure do |blacklist|
  3. # Ignore endpoint "welcome#index"
  4. blacklist.add(endpoint: "welcome#index")
  5. # Ignore "web/users" controller actions
  6. blacklist.add(resources: ["web/users"])
  7. # Ignore "web/users#show" action with scoped controller
  8. blacklist.add(scope: "web", resources: "users", actions: ["show"])
  9. # Ignore "admin" scope controllers
  10. blacklist.add(scope: "admin")
  11. end
  12. end

Ignore one endpoint

blacklist.add(endpoint: "users#index") - Ignore one endpoint.

Ignore controller actions

blacklist.add(resources: "users") - Ignore all actions for UsersController.

blacklist.add(resources: ["users", "managers"]) - Ignore all actions in UsersController and ManagersController.

blacklist.add(resources: "users", actions: ["show"]) - Ignore only show action in UsersController.

Ignore namespace or scope

blacklist.add(scope: "admin") - Ignore all controllers and actions for admin namespace or scope.

Constraints

You can specify the amount and period of request records to keep in database. Records which exceed these limits are automatically removed from database.
See example below:

  1. ActiveEndpoint.configure do |endpoint|
  2. # Defines default settings, 1 probe per 10 minutes for endpoint request
  3. constraint_limit = 1
  4. constraint_period = 10.minutes
  5. endpoint.constraints.configure do |constraints|
  6. # Constraint endpoint "welcome#index" with 1 minute period and default limit
  7. # and configure database constraints to keep 1000 probes per 1 week.
  8. constraints.add(endpoint: "welcome#index",
  9. rule: { 1.minute },
  10. storage: { limit: 1000, period: 1.week })
  11. # Constraints "web/users" controller actions with custom limit and period
  12. # with defailt storage constraints
  13. constraints.add(resources: ["web/users"], rule: { limit: 100, period: 5.minutes })
  14. end
  15. end

NOTE: To define a constraint you should define at least one limit or period.

Storage settings

ActiveEndpoint creates two models in you rails application: Probe and it’s child UnregistredProbe.
To prevent problems with database probes are removed when user defines custom period. Also you can limit storage probes in database.
It is recommended to define own storage default to prevent unwanted probes deletion. See example below:

  1. ActiveEndpoint.configure do |endpoint|
  2. # Define default limit for maximum probes amount
  3. endpoint.storage_limit = 1000
  4. # Define default period to keep probes in database.
  5. endpoint.storage_period = 1.week
  6. # Define amount of periods (constraint periods) that endpoints are kept in database.
  7. endpoint.storage_keep_periods = 2
  8. end

Tagging probes

You can group probes by tags automatically assigned according to request processing time (ms). See example below:

  1. ActiveEndpoint.configure do |endpoint|
  2. endpoint.tags.configure do |tags|
  3. tags.add(:fast, { less_than: 250 })
  4. tags.add(:normal, { greater_than_or_equal_to: 250, less_than: 500 })
  5. tags.add(:slow, { greater_than_or_equal_to: 500, less_than: 750 })
  6. tags.add(:acceptable, { greater_than_or_equal_to: 500, less_than: 1000 })
  7. tags.add(:need_optimization, { greater_than_or_equal_to: 1000 })
  8. end
  9. end

Mehods for conditions

  • greater_than = ‘>’
  • greater_than_or_equal_to = ‘>=’,
  • equal_to = ‘=’,
  • less_than = ‘<’,
  • less_than_or_equal_to = ‘<=’,

Tagged model scopes

Defined tags are also usefull for scopes queries:

  1. ActiveEndpoint::Probe.tagged_as(:need_optimization)
  2. #=> Returns all probes having corresponding tag and thus matching the condition
  3. # { greater_than_or_equal_to: 1000 }

Instance methods

Check tag on model:

  1. ActiveEndpoint::Probe.last.tag
  2. #=> Returns probe's tag

Web UI

ActiveEndpoint offer rails engine for managing probes. Mount it:

  1. mount ActiveEndpoint::Engine => '/active_endpoint'

img

License

This gem is available as open source under the terms of the MIT License.