Inherits UMWrap< apache::geode::statistics::StatisticsFactory >.
|
virtual Statistics ^ | CreateAtomicStatistics (StatisticsType^ type) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and with default ids. More...
|
|
virtual Statistics ^ | CreateAtomicStatistics (StatisticsType^ type, String^ textId) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and with a default numeric id. More...
|
|
virtual Statistics ^ | CreateAtomicStatistics (StatisticsType^ type, String^ textId, System::Int64 numericId) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and numericId . More...
|
|
virtual StatisticDescriptor ^ | CreateDoubleCounter (String^ name, String^ description, String^ units) |
| Creates and returns an double counter StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateDoubleCounter (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an double counter StatisticDescriptor with the given name , description , units , and with larger values indicating better performance. More...
|
|
virtual StatisticDescriptor ^ | CreateDoubleGauge (String^ name, String^ description, String^ units) |
| Creates and returns an double gauge StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateDoubleGauge (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an double gauge StatisticDescriptor with the given name , description , units , and with smaller values indicating better performance. More...
|
|
virtual StatisticDescriptor ^ | CreateIntCounter (String^ name, String^ description, String^ units) |
| Creates and returns an int counter StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateIntCounter (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an int counter StatisticDescriptor with the given name , description , units , and with larger values indicating better performance. More...
|
|
virtual StatisticDescriptor ^ | CreateIntGauge (String^ name, String^ description, String^ units) |
| Creates and returns an int gauge StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateIntGauge (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an int gauge StatisticDescriptor with the given name , description , units , and with smaller values indicating better performance. More...
|
|
virtual StatisticDescriptor ^ | CreateLongCounter (String^ name, String^ description, String^ units) |
| Creates and returns an long counter StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateLongCounter (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an long counter StatisticDescriptor with the given name , description , units , and with larger values indicating better performance. More...
|
|
virtual StatisticDescriptor ^ | CreateLongGauge (String^ name, String^ description, String^ units) |
| Creates and returns an long gauge StatisticDescriptor with the given name , description , units . More...
|
|
virtual StatisticDescriptor ^ | CreateLongGauge (String^ name, String^ description, String^ units, int8_t largerBetter) |
| Creates and returns an long gauge StatisticDescriptor with the given name , description , units , and with smaller values indicating better performance. More...
|
|
virtual Statistics ^ | CreateStatistics (StatisticsType^ type) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and with default ids. More...
|
|
virtual Statistics ^ | CreateStatistics (StatisticsType^ type, String^ textId) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and with a default numeric id. More...
|
|
virtual Statistics ^ | CreateStatistics (StatisticsType^ type, String^ textId, System::Int64 numericId) |
| Creates and returns a Statistics instance of the given StatisticsType type, textId , and numericId . More...
|
|
virtual StatisticsType ^ | CreateType (String^ name, String^ description, array< StatisticDescriptor^>^ stats, System::Int32 statsLength) |
| Creates and returns a StatisticsType with the given name , description ,and StatisticDescriptor More...
|
|
virtual Statistics ^ | FindFirstStatisticsByType (StatisticsType^ type) |
| Return the first instance that matches the type, or NULL More...
|
|
virtual StatisticsType ^ | FindType (String^ name) |
| Finds and returns an already created StatisticsType with the given name . More...
|
|
Instances of this interface provide methods that create instances of StatisticDescriptor and StatisticsType.
Every StatisticsFactory is also a type factory.
A StatisticsFactory
can create a StatisticDescriptor statistic of three numeric types: int
, long
, and double
. A statistic (StatisticDescriptor
) can either be a gauge meaning that its value can increase and decrease or a counter meaning that its value is strictly increasing. Marking a statistic as a counter allows the Geode Manager Console to properly display a statistics whose value "wraps around" (that is, exceeds its maximum value).