public void StartServerMonitoring()
		{
			StopServerMonitoring();

			serverPoller = new Poller(configuration.PollPeriodSeconds, aggregatedServerMonitor);
			serverPoller.Start();

		    StartProjectMonitoring();
		}
 private void StartProjectMonitoring()
 {
     StopProjectMonitoring();
     projectPoller = new Poller(configuration.PollPeriodSeconds, aggregatedProjectMonitor);
     projectPoller.Start();
 }
Example #3
0
 public void StartMonitoring()
 {
     StopMonitoring();
     poller = new Poller(configuration.PollPeriodSeconds*1000, aggregatedMonitor);
     poller.Start();
 }