blob: 1dc5a451af5c8c0422ee35dfe15a05375d524423 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2012-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
package com.vmware.gemfire.tools.pulse.tests;
/**
* Region on members mbean
*
* @author rbhandekar
*
*/
public interface RegionOnMemberMBean {
public String getRegionFullPath();
public String getMemberName();
public long getEntrySize();
public long getEntryCount();
public float getGetsRate();
public float getPutsRate();
public float getDiskGetsRate();
public float getDiskPutsRate();
public int getLocalMaxMemory();
}