VMware GemFire Java API Reference
Package org.apache.geode.admin
Interface StatisticResource
-
@Deprecated public interface StatisticResource
Deprecated.as of 7.0 use themanagementpackage insteadAdminitrative interface for monitoring a statistic resource in a GemFire system member. A resource is comprised of one or manyStatistics.- Since:
- GemFire 3.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDescription()Deprecated.Gets the full description of this resource.StringgetName()Deprecated.Gets the identifying name of this resource.StringgetOwner()Deprecated.Returns a display string of theSystemMemberowning this resource.Statistic[]getStatistics()Deprecated.Returns a read-only array of everyStatisticin this resource.StringgetType()Deprecated.Gets the classification type of this resource.longgetUniqueId()Deprecated.Returns an ID that uniquely identifies the resource within theSystemMemberit belongs to.voidrefresh()Deprecated.Refreshes the values of everyStatisticin this resource by retrieving them from the member's VM.
-
-
-
Method Detail
-
getName
String getName()
Deprecated.Gets the identifying name of this resource.- Returns:
- the identifying name of this resource
-
getDescription
String getDescription()
Deprecated.Gets the full description of this resource.- Returns:
- the full description of this resource
-
getType
String getType()
Deprecated.Gets the classification type of this resource.- Returns:
- the classification type of this resource
- Since:
- GemFire 5.0
-
getOwner
String getOwner()
Deprecated.Returns a display string of theSystemMemberowning this resource.- Returns:
- a display string of the owning
SystemMember
-
getUniqueId
long getUniqueId()
Deprecated.Returns an ID that uniquely identifies the resource within theSystemMemberit belongs to.- Returns:
- unique id within the owning
SystemMember
-
getStatistics
Statistic[] getStatistics()
Deprecated.Returns a read-only array of everyStatisticin this resource.- Returns:
- read-only array of every
Statisticin this resource
-
refresh
void refresh() throws AdminExceptionDeprecated.Refreshes the values of everyStatisticin this resource by retrieving them from the member's VM.- Throws:
AdminException- if unable to refresh statistic values
-
-