.NET 6 MVC Application - Best way to track job completion

So I am starting to adopt and learn Hangfire into a new app we’re building. I want to find a way to track the completion of a job. Currently I am adding stuff into my DB myself to check for job completion, but given that there’s an entire hangfire schema I wanted to know if there was a way to use Hangfire functionality to name a job and track it’s functionality.

Also, if there was a course or set of videos you could recommend to learn Hangfire I’ll gladly appreciate it, I’m finding there’s lots of samples for .NET Framework projects but not that much for .Net Core.