Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

multi_bug

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multi_bug

  • 0.2.2
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

MultiBug

Gem Version Build Status

MultiBug is a simple error monitoring gem that abstracts multiple reporting tools in one.

Features

  • Easily switch error monitoring provider by changing config only
  • Supported adapters
  • Upcoming features
    • Aditional adapters for Sentry and Rollbar
    • Advanced configuration
    • Support for common advanced features

Getting started

To install, run:

gem install multi_bug

Add the following to your Gemfile:

gem "multi_bug", '~> 0.2.2'

After you've added the multi_bug gem, please install one of the gems for the monitoring platform you want to use. To accomplish that, you can use one of the following installation guides:

Usage

Reporting exceptions

After installing one of the supported gems, reporting of unhandled exceptions should happen automatically and be visible in their respective monitoring dashboard.

Reporting of handled exceptions can be done with:

begin
  raise 'Robots are taking over!'
rescue => exception
  MultiBug.notify(exception)
end
Custom payload

If you need to add custom payload to the error report you can do this by providing an options hash.

begin
  raise 'Robots are taking over!'
rescue => exception
  MultiBug.notify(exception, {
    foo: {
      bar: 'baz'
    }
  })
end

Changing the provider

Changing of the monitoring provider should be easily achieved just by installing/configuring the other gem.

Tests

To test, run:

bundle exec rspec

Versioning

Read Semantic Versioning for details. Briefly, it means:

  • Major (X.y.z) - Incremented for any backwards incompatible public API changes.
  • Minor (x.Y.z) - Incremented for new, backwards compatible, public API enhancements/fixes.
  • Patch (x.y.Z) - Incremented for small, backwards compatible, bug fixes.

Contributions

Read CONTRIBUTING for details.

License

Copyright 2018 . Read LICENSE for details.

History

Read CHANGES for details.

FAQs

Package last updated on 13 Dec 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc