Skip to content

Latest commit

 

History

History
183 lines (119 loc) · 6.95 KB

README.md

File metadata and controls

183 lines (119 loc) · 6.95 KB

Errbit: The open source self-hosted error catcher

Errbit is an open source, self-hosted error catcher. It is Hoptoad API compliant so you can just point the Hoptoad notifier at your Errbit server if you are already using Hoptoad.

Errbit may be a good fit for you if:

  • Your exceptions may contain sensitive data that you don't want sitting on someone else's server
  • Your application is behind a firewall
  • You'd like to brand your error catcher
  • You want to add customer features to your error catcher
  • You're crazy and love managing servers

If this doesn't sound like you, you should probably stick with Hoptoad. The Thoughtbot guys offer great support for it and it is much more worry-free. They have a free package and even offer a "Hoptoad behind your firewall" solution.

Demo

There is a demo available at http://errbit-demo.herokuapp.com/

Email: demo@errbit-demo.herokuapp.com Password: password

Installation

Note: This app is intended for people with experience deploying and maintining Rails applications. If you're uncomfortable with any step below then Errbit is not for you. Checkout Hoptoad from the guys over at Thoughtbot, which Errbit is based on.

Set your local box or server(Ubuntu):

  1. Install MongoDB. Follow the directions here, then:

    apt-get update
    apt-get install mongodb
    
  2. Install libxml and libcurl

    apt-get install libxml2 libxml2-dev libxslt-dev libcurl4-openssl-dev
    
  3. Install Bundler

    gem install bundler
    

Running Locally:

  1. Bootstrap Errbit. This will copy over config.yml and also seed the database.

    rake errbit:bootstrap
    
  2. Update the config.yml and mongoid.yml files with information about your environment

  3. Install dependencies

    bundle install
    
  4. Start Server

    script/rails server
    

Deploying:

  1. Bootstrap Errbit. This will copy over config.yml and also seed the database.

    rake errbit:bootstrap
    
  2. Update the deploy.rb file with information about your server

  3. Setup server and deploy

    cap deploy:setup deploy
    

Deploying to Heroku:

  1. Clone the repository

    git clone http://github.com/jdpace/errbit.git
    
  2. Create & configure for Heroku

    gem install heroku
    heroku create example-errbit --stack cedar
    heroku addons:add mongohq:free
    heroku addons:add sendgrid:free
    heroku config:add HEROKU=true
    heroku config:add ERRBIT_HOST=some-hostname.example.com
    heroku config:add ERRBIT_EMAIL_FROM=example@example.com
    git push heroku master
    
  3. Seed the DB (NOTE: No bootstrap task is used on Heroku!)

    heroku run rake db:seed
    
  4. Enjoy!

Configuring LDAP authentication:

  1. In config/config.yml, set user_has_username to true

  2. Follow the instructions at https://github.com/cschiewek/devise_ldap_authenticatable to set up the devise_ldap_authenticatable gem.

  3. If you are authenticating by username, you will need to set the user's email after authentication. You can do this by adding the following lines to app/models/user.rb:

     before_save :set_ldap_email
     def set_ldap_email
       self.email = Devise::LdapAdapter.get_ldap_param(self.username, "mail")
     end
    

Upgrading

Note: When upgrading Errbit, please run:

     1. git pull origin master ( assuming origin is the github.com/jdpace/errbit repo )
     2. rake db:migrate

If we change the way that data is stored, this will run any migrations to bring your database up to date.

Lighthouseapp Integration

Redmine Integration

Pivotal Tracker Integration

Thoughtworks Mingle Integration

  • Account is the host of your mingle installation. i.e. https://mingle.example.com note: You should use SSL if possible.
  • Errbit uses 'sign-in name' & password authentication. You may want to set up an errbit user with limited rights.
  • Project id is the identifier of your project, i.e. awesomeapp for project at https://mingle.example.com/projects/awesomeapp
  • Card properties are comma separated key value pairs. You must specify a 'card_type', but anything else is optional. i.e. card_type = Defect, status = Open, priority = Essential

TODO

  • Add ability for watchers to be configured for types of notifications they should receive

Special Thanks

  • Michael Parenteau - For rocking the Errbit design and providing a great user experience.
  • Nick Recobra aka oruen - Nick is Errbit's first core contributor. He's been working hard at making Errbit more awesome.
  • Relevance - For giving me Open-source Fridays to work on Errbit and all my awesome co-workers for giving feedback and inspiration.
  • Thoughtbot - For being great open-source advocates and setting the bar with Hoptoad.

Contributing

  • Fork the project.
  • Make your feature addition or bug fix.
  • Add tests for it. This is important so I don't break it in a future version unintentionally.
  • Commit, do not mess with Rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
  • Send me a pull request. Bonus points for topic branches.

Copyright

Copyright (c) 2010 Jared Pace. See LICENSE for details.