// POLLING THREADS
public static void setupPollingHandlers()
{
PollingThread poll1 = new PollingThread(new LogstashTestRequestPollHandler(), 2*1000L);
poll1.startThread();
PollingThread poll2 = new PollingThread(new LogstashHarvestPollHandler(), 10*1000L);
poll2.startThread();