Inspecting my jobs in Hangfire Dashboard, I see that for Succeeded Jobs, some jobs have Succeeded block displaying Latency, Duration, and Result, and some other jobs don’t have this Succeeded block (only Enqueued, Processing, and Created block).
There is one job that I would like to inspect the result, but not showing the Succeeded block. What should I do so the job shows the Succeeded block (and the Result)?
FYI the method used in the job is already returning something (an object), not void. The returned object is serializable. Does the Result has size limit?