Hangfire and Akka.NET

We are using Hangfire for some processing tasks and Akka.NET for others. Currently, when an Akka task is submitted to Hangfire, the job immediately moves to succeeded since Hangfire was able to submit the job to an Akka Actor System. While I know these two technologies are radically different in how they handle task completion, I’m wondering if there is a way to achieve tighter integration. For example, I would like to send Hangfire Actor status information from each Akka Actor System (e.g., running x tasks, completed x tasks, failed x tasks). There are monitoring extensions for Akka.NET, but what I’m not sure of is how I would get that information to Hangfire so it appears in the Hangfire dashboard. It would be interesting to restart an Actor System, but probably not necessary, considering how Akka works.