Aquarium / Akka.NET Data Collection

I have a scenario where I have a client (console) application that will be called by the Enterprise Scheduler (AutoSys). This client is submitting work to my "Server" (quotes because it could be a cluster). I need to be able to send log messages from the server to the client for all log messages associated with a client work request. Does the built-in logbook support this kind of distribution? Can I get some guidance on how I can achieve this?

I see something in the codebase LoggingBus

, is this where I need to look?

My main core is the ability to send log entries through remote peers.

+3


source to share


1 answer


In this case, it is best to use the built-in logger that supports remote log shipping. Akka.Logging.Serilog and Akka.Logging.NLog have custom logging targets that can support this.



I personally think Serilog combined with Seq is the best option.

+3


source







All Articles