Requirements: Create a Dataset in Axiom and get a token to use.
Download the nuget from Github Packages and Download Serilog, you then configure in your startup.cs
using ProRanked.Axiom.Sinks;
_logger = new LoggerConfiguration()
.WriteTo.Axiom("your-dataset", "your-token")
.CreateLogger();
_logger.Information("Here goes your information log");
_logger.Error("Here goes your Errors");
Author: Devs from ProRanked Enjoy.