Giter Club home page Giter Club logo

hopsharp's Introduction

HopSharp

HopSharp is a .NET library for use with the Hoptoad exception reporting service by Thoughtbot. Hoptoad allows you to easily track and get notification about exceptions that occur on your site.

The HopSharp library can be used in two forms. First, you can either programmatically report exceptions, if you have a try/catch block and want to ensure a particular exception is reported. And the second is through the use of an HttpModule, which will catch any unhandled exceptions on your site and report them.

Usage

To use the library, you’ll need to build the project and drop the HopSharp.dll and the Newtonsoft.Json.dll in your site’s bin directory. To configure the library, you’ll need to edit your web.config to include your API key for HopToad:

  <appSettings>
    <add key="Hoptoad:ApiKey" value="1234567890abcdefg"/>
  </appSettings>

To programmatically report exceptions, all you need to do is ensure you’ve included the “HopSharp” namespace, and then call the SendToHoptoad method on the exception. This is done using extension methods. For example:

  using HopSharp;
  ...
  try {
	// some code
  }
  catch(Exception ex) {
	// ohhnoes
	ex.SendToHopToad();
  }

To use the HttpModule, you will just need to add it as an HttpHandler within your web.config:

  <httpModules>
    <add name="Hoptoad" type="HopSharp.NotifierHttpModule, HopSharp"/>
  </httpModules>

TODO

There are some important things to do on the HttpModule still. Most importantly, it will be incredibly verbose on its exception handling. In .NET, a 404 is considered an exception, so it will catch, report, and subsequently notify you of any time someone tries to access a URL that doesn’t exist.

To circumvent this, plan on adding the ability to set a series of patterns that you can use to exclude exceptions based on exception type, part of the message, or something along those lines.

hopsharp's People

Contributors

hdeshev avatar

Watchers

 avatar  avatar  avatar

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.