runReport(new GraphiteReporter(new InetSocketAddress("localhost", 2003)));
}
@Test
public void schedulerStartStop() throws InterruptedException {
ReportScheduler scheduler = new ReportScheduler(new MetricRegistry(), new ConsoleReporter());
scheduler.start(1, TimeUnit.SECONDS);
Thread.sleep(2000);
scheduler.stop();
}