New: Added UDP syslog support
(cherry picked from commit 8d856b2edb8bf46a2b516d5f7644ae3fa1151323)
This commit is contained in:
parent
41a821352e
commit
6c0f22a11e
|
@ -7,6 +7,7 @@
|
||||||
<PackageReference Include="DotNet4.SocksProxy" Version="1.4.0.1" />
|
<PackageReference Include="DotNet4.SocksProxy" Version="1.4.0.1" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
|
||||||
<PackageReference Include="NLog" Version="4.6.6" />
|
<PackageReference Include="NLog" Version="4.6.6" />
|
||||||
|
<PackageReference Include="NLog.Targets.Syslog" Version="6.0.3" />
|
||||||
<PackageReference Include="Sentry" Version="1.2.0" />
|
<PackageReference Include="Sentry" Version="1.2.0" />
|
||||||
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
||||||
<PackageReference Include="System.Data.SQLite.Core.Servarr" Version="1.0.115.5-18" />
|
<PackageReference Include="System.Data.SQLite.Core.Servarr" Version="1.0.115.5-18" />
|
||||||
|
|
|
@ -42,6 +42,9 @@ namespace NzbDrone.Core.Configuration
|
||||||
bool UpdateAutomatically { get; }
|
bool UpdateAutomatically { get; }
|
||||||
UpdateMechanism UpdateMechanism { get; }
|
UpdateMechanism UpdateMechanism { get; }
|
||||||
string UpdateScriptPath { get; }
|
string UpdateScriptPath { get; }
|
||||||
|
string SyslogServer { get; }
|
||||||
|
int SyslogPort { get; }
|
||||||
|
string SyslogLevel { get; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ConfigFileProvider : IConfigFileProvider
|
public class ConfigFileProvider : IConfigFileProvider
|
||||||
|
@ -209,7 +212,14 @@ namespace NzbDrone.Core.Configuration
|
||||||
|
|
||||||
public string UpdateScriptPath => GetValue("UpdateScriptPath", "", false);
|
public string UpdateScriptPath => GetValue("UpdateScriptPath", "", false);
|
||||||
|
|
||||||
public int GetValueInt(string key, int defaultValue)
|
public string SyslogServer => GetValue("SyslogServer", "", persist: false);
|
||||||
|
|
||||||
|
public int SyslogPort => GetValueInt("SyslogPort", 514, persist: false);
|
||||||
|
|
||||||
|
public string SyslogLevel => GetValue("SyslogLevel", LogLevel, persist: false).ToLowerInvariant();
|
||||||
|
|
||||||
|
|
||||||
|
public int GetValueInt(string key, int defaultValue, bool persist = true)
|
||||||
{
|
{
|
||||||
return Convert.ToInt32(GetValue(key, defaultValue));
|
return Convert.ToInt32(GetValue(key, defaultValue));
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@ using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NLog;
|
using NLog;
|
||||||
using NLog.Config;
|
using NLog.Config;
|
||||||
|
using NLog.Targets.Syslog;
|
||||||
|
using NLog.Targets.Syslog.Settings;
|
||||||
using NzbDrone.Common.EnvironmentInfo;
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
using NzbDrone.Common.Extensions;
|
using NzbDrone.Common.Extensions;
|
||||||
using NzbDrone.Common.Instrumentation.Sentry;
|
using NzbDrone.Common.Instrumentation.Sentry;
|
||||||
|
@ -32,6 +34,11 @@ namespace NzbDrone.Core.Instrumentation
|
||||||
else
|
else
|
||||||
minimumConsoleLogLevel = LogLevel.Info;
|
minimumConsoleLogLevel = LogLevel.Info;
|
||||||
|
|
||||||
|
if (_configFileProvider.SyslogServer.IsNotNullOrWhiteSpace())
|
||||||
|
{
|
||||||
|
SetSyslogParameters(_configFileProvider.SyslogServer, _configFileProvider.SyslogPort, minimumLogLevel);
|
||||||
|
}
|
||||||
|
|
||||||
var rules = LogManager.Configuration.LoggingRules;
|
var rules = LogManager.Configuration.LoggingRules;
|
||||||
|
|
||||||
//Console
|
//Console
|
||||||
|
@ -81,6 +88,24 @@ namespace NzbDrone.Core.Instrumentation
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void SetSyslogParameters(string syslogServer, int syslogPort, LogLevel minimumLogLevel)
|
||||||
|
{
|
||||||
|
var syslogTarget = new SyslogTarget();
|
||||||
|
|
||||||
|
syslogTarget.Name = "syslogTarget";
|
||||||
|
syslogTarget.MessageSend.Protocol = ProtocolType.Udp;
|
||||||
|
syslogTarget.MessageSend.Udp.Port = syslogPort;
|
||||||
|
syslogTarget.MessageSend.Udp.Server = syslogServer;
|
||||||
|
syslogTarget.MessageSend.Udp.ReconnectInterval = 500;
|
||||||
|
syslogTarget.MessageCreation.Rfc = RfcNumber.Rfc5424;
|
||||||
|
syslogTarget.MessageCreation.Rfc5424.AppName = BuildInfo.AppName;
|
||||||
|
|
||||||
|
var loggingRule = new LoggingRule("*", minimumLogLevel, syslogTarget);
|
||||||
|
|
||||||
|
LogManager.Configuration.AddTarget("syslogTarget", syslogTarget);
|
||||||
|
LogManager.Configuration.LoggingRules.Add(loggingRule);
|
||||||
|
}
|
||||||
|
|
||||||
private List<LogLevel> GetLogLevels()
|
private List<LogLevel> GetLogLevels()
|
||||||
{
|
{
|
||||||
return new List<LogLevel>
|
return new List<LogLevel>
|
||||||
|
|
Loading…
Reference in New Issue