PluralKit/PluralKit.Core/Modules/LoggingModule.cs

125 lines
4.1 KiB
C#
Raw Normal View History

2020-04-29 00:25:31 +02:00
using System.Globalization;
2020-01-26 01:27:45 +01:00
using Autofac;
using AppFact.SerilogOpenSearchSink;
using Microsoft.Extensions.Logging;
2020-01-26 01:27:45 +01:00
using NodaTime;
using Serilog;
using Serilog.Events;
2020-01-26 01:27:45 +01:00
using Serilog.Formatting.Compact;
2022-12-03 11:49:19 +00:00
using Serilog.Sinks.Seq;
2020-01-26 01:27:45 +01:00
using Serilog.Sinks.SystemConsole.Themes;
using ILogger = Serilog.ILogger;
namespace PluralKit.Core;
public class LoggingModule: Module
2020-01-26 01:27:45 +01:00
{
private readonly string _component;
private readonly Action<LoggerConfiguration> _fn;
public LoggingModule(string component, Action<LoggerConfiguration> fn = null, LoggerConfiguration cfg = null)
2020-01-26 01:27:45 +01:00
{
_component = component;
// todo: this is messy and not really used anywhere...?
_fn = fn ?? (_ => { });
_cfg = cfg ?? new LoggerConfiguration();
}
2020-01-26 01:27:45 +01:00
private LoggerConfiguration _cfg { get; }
2020-01-26 01:27:45 +01:00
protected override void Load(ContainerBuilder builder)
{
builder
.Register(c => InitLogger(c.Resolve<CoreConfig>()))
.AsSelf()
.SingleInstance()
// AutoActivate ensures logging is enabled as early as possible in the API startup flow
// since we set the Log.Logger global >.>
.AutoActivate();
builder.Register(c => new LoggerFactory().AddSerilog(c.Resolve<ILogger>()))
.As<ILoggerFactory>()
.SingleInstance();
}
2020-01-26 01:27:45 +01:00
private ILogger InitLogger(CoreConfig config)
{
var consoleTemplate = "[{Timestamp:HH:mm:ss.fff}] {Level:u3} {Message:lj}{NewLine}{Exception}";
var outputTemplate = "[{Timestamp:yyyy-MM-dd HH:mm:ss.ffffff}] {Level:u3} {Message:lj}{NewLine}{Exception}";
var logCfg = _cfg
.Enrich.FromLogContext()
.Enrich.WithProperty("GitCommitHash", BuildInfoService.FullVersion)
.ConfigureForNodaTime(DateTimeZoneProviders.Tzdb)
.Enrich.WithProperty("Component", _component)
.MinimumLevel.Is(config.ConsoleLogLevel)
// Don't want App.Metrics/D#+ spam
.MinimumLevel.Override("App.Metrics", LogEventLevel.Information)
// nor ASP.NET spam
.MinimumLevel.Override("Microsoft", LogEventLevel.Information)
// Actual formatting for these is handled in ScalarFormatting
.Destructure.AsScalar<SystemId>()
.Destructure.AsScalar<MemberId>()
.Destructure.AsScalar<GroupId>()
.Destructure.AsScalar<SwitchId>()
.Destructure.ByTransforming<ProxyTag>(t => new { t.Prefix, t.Suffix })
.Destructure.With<PatchObjectDestructuring>()
.WriteTo.Async(a =>
a.Console(
theme: AnsiConsoleTheme.Code,
outputTemplate: consoleTemplate,
restrictedToMinimumLevel: config.ConsoleLogLevel));
if (config.ElasticUrl != null)
2020-01-26 01:27:45 +01:00
{
logCfg.WriteTo.OpenSearch(
uri: config.ElasticUrl,
index: "dotnet-logs",
basicAuthUser: "unused",
basicAuthPassword: "unused"
);
2020-01-26 01:27:45 +01:00
}
2021-08-27 11:03:47 -04:00
2022-12-03 11:49:19 +00:00
if (config.SeqLogUrl != null)
{
logCfg.WriteTo.Seq(
config.SeqLogUrl,
restrictedToMinimumLevel: LogEventLevel.Verbose
);
}
_fn.Invoke(logCfg);
return Log.Logger = logCfg.CreateLogger();
2020-04-29 00:25:31 +02:00
}
}
2020-04-29 00:25:31 +02:00
// Serilog why is this necessary for such a simple thing >.>
public class UTCTimestampFormatProvider: IFormatProvider
{
public object GetFormat(Type formatType) => new UTCTimestampFormatter();
}
public class UTCTimestampFormatter: ICustomFormatter
{
public string Format(string format, object arg, IFormatProvider formatProvider)
2020-04-29 00:25:31 +02:00
{
// Convert offset to UTC and then print
// FormatProvider defaults to locale-specific stuff so we force-default to invariant culture
// If we pass the given formatProvider it'll conveniently ignore it, for some reason >.>
if (arg is DateTimeOffset dto)
return dto.ToUniversalTime().ToString(format, CultureInfo.InvariantCulture);
if (arg is IFormattable f)
return f.ToString(format, CultureInfo.InvariantCulture);
return arg.ToString();
2020-04-29 00:25:31 +02:00
}
2020-01-26 01:27:45 +01:00
}