Package org.ngrinder.monitor.share.domain

Examples of org.ngrinder.monitor.share.domain.SystemInfo


  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);
  }
View Full Code Here

TOP

Related Classes of org.ngrinder.monitor.share.domain.SystemInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.