2011-10-07 08:36:04 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Diagnostics;
|
2012-02-11 02:43:07 +01:00
|
|
|
|
using System.Net;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
using System.Runtime.Remoting;
|
2012-02-11 02:43:07 +01:00
|
|
|
|
using System.Threading;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
using NLog;
|
2011-10-23 07:26:43 +02:00
|
|
|
|
using NzbDrone.Common;
|
2012-01-13 23:15:40 +01:00
|
|
|
|
using NzbDrone.Common.Model;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Providers
|
|
|
|
|
{
|
|
|
|
|
public class MonitoringProvider
|
|
|
|
|
{
|
2012-02-11 02:43:07 +01:00
|
|
|
|
private static readonly Logger logger = LogManager.GetLogger("Host.MonitoringProvider");
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
private readonly IISProvider _iisProvider;
|
|
|
|
|
private readonly ProcessProvider _processProvider;
|
2012-02-11 01:48:20 +01:00
|
|
|
|
private readonly HttpProvider _httpProvider;
|
2012-01-13 23:15:40 +01:00
|
|
|
|
private readonly ConfigFileProvider _configFileProvider;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
private int _pingFailCounter;
|
|
|
|
|
private Timer _pingTimer;
|
2012-02-11 02:43:07 +01:00
|
|
|
|
private Timer _processPriorityCheckTimer;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
2011-10-07 08:57:43 +02:00
|
|
|
|
public MonitoringProvider(ProcessProvider processProvider, IISProvider iisProvider,
|
2012-02-11 01:48:20 +01:00
|
|
|
|
HttpProvider httpProvider, ConfigFileProvider configFileProvider)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
|
|
|
|
_processProvider = processProvider;
|
|
|
|
|
_iisProvider = iisProvider;
|
2012-02-11 01:48:20 +01:00
|
|
|
|
_httpProvider = httpProvider;
|
2012-01-13 23:15:40 +01:00
|
|
|
|
_configFileProvider = configFileProvider;
|
2011-10-07 08:57:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MonitoringProvider()
|
|
|
|
|
{
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Start()
|
|
|
|
|
{
|
2011-10-17 03:42:20 +02:00
|
|
|
|
AppDomain.CurrentDomain.UnhandledException += ((s, e) => AppDomainException(e.ExceptionObject as Exception));
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
AppDomain.CurrentDomain.ProcessExit += ProgramExited;
|
|
|
|
|
AppDomain.CurrentDomain.DomainUnload += ProgramExited;
|
2012-03-02 20:58:31 +01:00
|
|
|
|
|
2012-02-11 02:43:07 +01:00
|
|
|
|
_processPriorityCheckTimer = new Timer(EnsurePriority);
|
|
|
|
|
_processPriorityCheckTimer.Change(TimeSpan.FromSeconds(15), TimeSpan.FromMinutes(30));
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
2012-02-11 02:43:07 +01:00
|
|
|
|
_pingTimer = new Timer(PingServer);
|
|
|
|
|
_pingTimer.Change(TimeSpan.FromSeconds(5), TimeSpan.FromMinutes(1));
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-11 02:43:07 +01:00
|
|
|
|
public virtual void EnsurePriority(object sender)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2012-03-02 20:58:31 +01:00
|
|
|
|
try
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2012-03-02 20:58:31 +01:00
|
|
|
|
var currentProcess = _processProvider.GetCurrentProcess();
|
|
|
|
|
if (currentProcess.Priority != ProcessPriorityClass.Normal)
|
|
|
|
|
{
|
|
|
|
|
_processProvider.SetPriority(currentProcess.Id, ProcessPriorityClass.Normal);
|
|
|
|
|
}
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
2012-03-02 20:58:31 +01:00
|
|
|
|
var iisProcess = _processProvider.GetProcessById(_iisProvider.IISProcessId);
|
|
|
|
|
if (iisProcess != null && iisProcess.Priority != ProcessPriorityClass.Normal &&
|
|
|
|
|
iisProcess.Priority != ProcessPriorityClass.AboveNormal)
|
|
|
|
|
{
|
|
|
|
|
_processProvider.SetPriority(iisProcess.Id, ProcessPriorityClass.Normal);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2012-03-02 20:58:31 +01:00
|
|
|
|
logger.WarnException("Unable to verify priority", e);
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-11 02:43:07 +01:00
|
|
|
|
public virtual void PingServer(object sender)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2012-02-11 02:43:07 +01:00
|
|
|
|
if (!_iisProvider.ServerStarted) return;
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2012-05-11 02:04:44 +02:00
|
|
|
|
ICredentials identity = CredentialCache.DefaultCredentials;
|
2012-02-11 02:43:07 +01:00
|
|
|
|
_httpProvider.DownloadString(_iisProvider.AppUrl, identity); //This should preload the home page, making the first load faster.
|
|
|
|
|
string response = _httpProvider.DownloadString(_iisProvider.AppUrl + "/health", identity);
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
|
|
|
|
if (!response.Contains("OK"))
|
|
|
|
|
{
|
|
|
|
|
throw new ServerException("Health services responded with an invalid response.");
|
|
|
|
|
}
|
2011-10-07 08:57:43 +02:00
|
|
|
|
|
2011-10-07 08:36:04 +02:00
|
|
|
|
if (_pingFailCounter > 0)
|
|
|
|
|
{
|
2012-02-11 02:43:07 +01:00
|
|
|
|
logger.Info("Application pool has been successfully recovered.");
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
2011-10-07 08:57:43 +02:00
|
|
|
|
|
2011-10-07 08:36:04 +02:00
|
|
|
|
_pingFailCounter = 0;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_pingFailCounter++;
|
2013-01-03 06:11:39 +01:00
|
|
|
|
logger.Error("Application pool is not responding. Count: {0} - {1}", _pingFailCounter, ex.Message);
|
|
|
|
|
if (_pingFailCounter >= 10)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2012-02-01 02:37:36 +01:00
|
|
|
|
_pingFailCounter = 0;
|
2012-05-11 02:04:44 +02:00
|
|
|
|
_iisProvider.RestartServer();
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ProgramExited(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
_iisProvider.StopServer();
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-17 03:42:20 +02:00
|
|
|
|
public static void AppDomainException(Exception excepion)
|
2011-10-07 08:36:04 +02:00
|
|
|
|
{
|
2011-10-15 02:59:24 +02:00
|
|
|
|
Console.WriteLine("EPIC FAIL: {0}", excepion);
|
2011-10-07 08:36:04 +02:00
|
|
|
|
|
2012-09-26 03:57:24 +02:00
|
|
|
|
|
2012-02-11 02:43:07 +01:00
|
|
|
|
logger.FatalException("EPIC FAIL: " + excepion.Message, excepion);
|
2011-10-07 08:36:04 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|