Code Monkey home page Code Monkey logo

pugtrace's Introduction

PugTrace

Build status Latest version LicenseMIT

Application for easy tracing on .NET platform. Inspired by elmah and Hangfire.

PugTrace Dashboard

Installation

Hangfire is available as a NuGet package. So, you can install it using the NuGet Package Console window:

PM> Install-Package PugTrace.SqlServer

After install, update your existing OWIN Startup file with the following lines of code. If you do not have this class in your project or don't know what is it, please read the Quick start guide to learn about how to install Hangfire.

using PugTrace;
using PugTrace.SqlServer;

public void Configuration(IAppBuilder app)
{
    GlobalConfiguration.Configuration.UseSqlServerStorage("<connection string or its name>");
    app.UsePugTraceDashboard();
}

Then you need to configure System.Diagnostics to use PugTrace listener.

<system.diagnostics>
  <sharedListeners>
    <add name="sqldatabase" 
         type="PugTrace.SqlServer.SqlServerTraceListener, PugTrace.SqlServer"
         initializeData="<connection string or its name>"
         applicationName="<application name>" />
  </sharedListeners>
  <sources>
    <source name="Application" switchValue="All">
      <listeners>
        <clear />
        <add name="sqldatabase" />
      </listeners>
    </source>
  </sources>
</system.diagnostics>

Example

You can then log your traces like this.

TraceSource source = new TraceSource("Application");
source.TraceInformation("Hello world!");
source.Flush();

pugtrace's People

Contributors

myslik avatar xdohnal1 avatar

Stargazers

 avatar

Watchers

James Cloos avatar

Forkers

xdohnal1

pugtrace's Issues

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.