Giter VIP home page Giter VIP logo

exception-track's Introduction

ExceptionTrack

Tracking exceptions for Rails application store them in database.

This gem is base on exception_notification.

中文介绍和使用说明

Gem Version Build Status Code Climate codecov.io

2017-02-17 12 35 18

Installation

Add this line to your application's Gemfile:

gem 'exception-track'

And then execute:

$ bundle

Generate migration and config files

$ rails g exception_track:install

And mount routers:

config/router.rb

Rails.application.routes.draw do
  mount ExceptionTrack::Engine => "/exception-track"
end

Now you can open: http://localhost:3000/exception-track

Configuration

Add config/initializers/exception-track.rb

ExceptionTrack.configure do
  # environments for store Exception log in to database.
  # default: [:development, :production]
  # self.environments = %i(production)
end

exception_notification Configuration

You can config exception_notification by itself's way, more documentations please visit:

https://github.com/smartinez87/exception_notification/

Router admin authenticate

# lib/admin_constraint.rb
class AdminConstraint
  def matches?(request)
    return false if !request.session[:user_id]
    user = User.find(request.session[:user_id])
    user && user.admin?
  end
end

# config/router.rb
require 'admin_constraint'
mount ExceptionTrack::Engine => "/exception-track", constraints: AdminConstraint.new

With Devise

# config/router.rb
authenticate :user, ->(u) { u.admin? } do
  mount ExceptionTrack::Engine => "/exception-track"
end

More examples: Sidekiq Web Document

License

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.