Code Monkey home page Code Monkey logo

hangfire-job-logging's People

Contributors

recodify avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

hangfire-job-logging's Issues

Dashboard does not load after sending logs

I have set this up and it all appears to be working correctly. I can see my custom logs being added to the [Hangfire].[State] table in the db. However whenever I click through on the "Succeeded jobs" page on the dashboard the page does not load, console showing a 500 error thrown. I removed the "output" rows added from the db and then the page loads - so it appears something in them is causing this problem. Will investigate the Hangfire dashboard code to find out why.

use a jobcontext to get the jobid

first thanks for sharing the idea to insert in the state table directly.
however, you don't need to inject the jobid, using a jobcontext makes it much easier and transparant
this can be used inside your joblogger to get the right jobid. i just did that in my project and works really well.

public class JobContext : IServerFilter
{
    [ThreadStatic]
    private static string _jobId;
    [ThreadStatic]
    private static Type _jobType;

    public static string JobId { get { return _jobId; } set { _jobId = value; } }

    public static Type JobType { get { return _jobType; } set { _jobType = value; } }

    public void OnPerforming(PerformingContext context)
    {
        JobId = context.JobId;
        JobType = context.Job.Type;
    }

    public void OnPerformed(PerformedContext filterContext)
    {
    }
   }

and configure this filter:
GlobalConfiguration.Configuration.UseFilter(new JobContext())

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.