Package | Description |
---|---|
com.gemstone.gemfire |
The base package of the GemFire Java product, featuring highly
concurrent distributed caching
with cache event delivery, OQL querying, and remote cache administration, built using a DistributedSystem which includes a
DistributedLockService.
|
Modifier and Type | Method and Description |
---|---|
StatisticDescriptor |
StatisticsTypeFactory.createDoubleCounter(String name,
String description,
String units)
Creates and returns a double counter
StatisticDescriptor with the given name , description , units ,
and with larger values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createDoubleCounter(String name,
String description,
String units,
boolean largerBetter)
Creates and returns a double counter
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor |
StatisticsTypeFactory.createDoubleGauge(String name,
String description,
String units)
Creates and returns a double gauge
StatisticDescriptor with the given name , description , units ,
and with smaller values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createDoubleGauge(String name,
String description,
String units,
boolean largerBetter)
Creates and returns a double gauge
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor |
StatisticsTypeFactory.createIntCounter(String name,
String description,
String units)
Creates and returns an int counter
StatisticDescriptor with the given name , description , units ,
and with larger values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createIntCounter(String name,
String description,
String units,
boolean largerBetter)
Creates and returns an int counter
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor |
StatisticsTypeFactory.createIntGauge(String name,
String description,
String units)
Creates and returns an int gauge
StatisticDescriptor with the given name , description , units ,
and with smaller values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createIntGauge(String name,
String description,
String units,
boolean largerBetter)
Creates and returns an int gauge
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor |
StatisticsTypeFactory.createLongCounter(String name,
String description,
String units)
Creates and returns a long counter
StatisticDescriptor with the given name , description , units ,
and with larger values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createLongCounter(String name,
String description,
String units,
boolean largerBetter)
Creates and returns a long counter
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor |
StatisticsTypeFactory.createLongGauge(String name,
String description,
String units)
Creates and returns a long gauge
StatisticDescriptor with the given name , description , units ,
and with smaller values indicating better performance. |
StatisticDescriptor |
StatisticsTypeFactory.createLongGauge(String name,
String description,
String units,
boolean largerBetter)
Creates and returns a long gauge
StatisticDescriptor with the given name , description , largerBetter , and units . |
StatisticDescriptor[] |
StatisticsType.getStatistics()
Returns descriptions of the statistics that this statistics type
gathers together
|
StatisticDescriptor |
StatisticsType.nameToDescriptor(String name)
Returns the descriptor of the statistic with the given name in this
statistics instance.
|
StatisticDescriptor |
Statistics.nameToDescriptor(String name)
Returns the descriptor of the statistic with the given name in this
statistics instance.
|
Modifier and Type | Method and Description |
---|---|
StatisticsType |
StatisticsTypeFactory.createType(String name,
String description,
StatisticDescriptor[] stats)
Creates or finds and returns a
StatisticsType with the given name , description , and statistic descriptions . |
Number |
Statistics.get(StatisticDescriptor descriptor)
Returns the value of the identified statistic.
|
double |
Statistics.getDouble(StatisticDescriptor descriptor)
Returns the value of the described statistic of type
double . |
int |
Statistics.getInt(StatisticDescriptor descriptor)
Returns the value of the described statistic of type
int . |
long |
Statistics.getLong(StatisticDescriptor descriptor)
Returns the value of the described statistic of type
long . |
long |
Statistics.getRawBits(StatisticDescriptor descriptor)
Returns the bits that represent the raw value of the described statistic.
|
void |
Statistics.incDouble(StatisticDescriptor descriptor,
double delta)
Increments the value of the described statistic of type
double
by the given amount. |
void |
Statistics.incInt(StatisticDescriptor descriptor,
int delta)
Increments the value of the described statistic of type
int
by the given amount. |
void |
Statistics.incLong(StatisticDescriptor descriptor,
long delta)
Increments the value of the described statistic of type
long
by the given amount. |
void |
Statistics.setDouble(StatisticDescriptor descriptor,
double value)
Sets the value of a described statistic of type
double |
void |
Statistics.setInt(StatisticDescriptor descriptor,
int value)
Sets the value of a described statistic of type
int |
void |
Statistics.setLong(StatisticDescriptor descriptor,
long value)
Sets the value of a described statistic of type
long |
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.