MonitorInfoStore monitorInfoStore;
@Test
public void testMonitorInfoRetrieval() {
String ip = "127.0.0.1";
SystemInfo systemInfo = monitorInfoStore.getSystemInfo(ip, 13243);
assertThat(systemInfo, not(nullValue()));
assertThat(systemInfo.getFreeMemory(), not(0L));
monitorInfoStore.close(ip);
}