mirror of
https://github.com/Readarr/Readarr
synced 2025-12-19 23:04:49 +01:00
Added fingerprint to sentry events to allow better grouping
This commit is contained in:
parent
e6705db743
commit
bcd67dee5e
1 changed files with 7 additions and 0 deletions
|
|
@ -74,6 +74,13 @@ protected override void Write(LogEventInfo logEvent)
|
|||
Level = LoggingLevelMap[logEvent.Level],
|
||||
Message = sentryMessage,
|
||||
Extra = extras,
|
||||
Fingerprint =
|
||||
{
|
||||
logEvent.Level.ToString(),
|
||||
logEvent.LoggerName,
|
||||
logEvent.Message,
|
||||
logEvent.Exception?.GetType().ToString()
|
||||
}
|
||||
};
|
||||
|
||||
sentryEvent.Tags.Add("os_name", Environment.GetEnvironmentVariable("OS_NAME"));
|
||||
|
|
|
|||
Loading…
Reference in a new issue