First of all let me start with saying that I absolutely love hangfire.
I was wondering if it’s possible to add some kind of metadata to the hangfire jobs - the hangfire dashboard does the job well showing what went right or wrong, but all it displays is the job id (which is internal to hangfire) and the fired method name (which is a little cryptic).
What I am lookng for is a way to add some description to the job so that additional info can be passed and later it is easier to see what the job was all about.
This description could just be a string that is passed with the rest of the parameters to the recurring job (but then the recurring jobs would all have the same description), or instead of passing an action, a Func could be passed, having the resulting string saved with the suceeded job (but then the string will not be available for failed jobs).
Anyway, I would see that as a very useful feature. Maybe there is something I can do myself, extending the existing code?
Please let me know, thanks.