Package org.apache.jackrabbit.api.stats
Enum RepositoryStatistics.Type
- All Implemented Interfaces:
Serializable,Comparable<RepositoryStatistics.Type>
- Enclosing interface:
- RepositoryStatistics
The values of this enum determine the type of the time
series returned by
RepositoryStatistics.getTimeSeries(Type)
and link RepositoryStatistics.getTimeSeries(String, boolean).-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAverage time spent processing observation events by all observation listeners in nano seconds.Total number of observationEventinstances delivered to all observation listeners.Total time spent processing observation events by all observation listeners in nano seconds.Average time spent evaluating queries in milli seconds.Number of queries executed.Total time spent evaluating queries in milli seconds.Number of currently logged in sessions.Number of calls sessions that have been logged in.Average time spent reading from sessions in nano seconds.Number of read accesses through any session.Total time spent reading from sessions in nano seconds.Average time spent writing to sessions in nano seconds.Number of write accesses through any session.Total time spent writing to sessions in nano seconds. -
Method Summary
Modifier and TypeMethodDescriptionstatic RepositoryStatistics.Typebooleanstatic RepositoryStatistics.TypeReturns the enum constant of this type with the specified name.static RepositoryStatistics.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
BUNDLE_READ_COUNTER
-
BUNDLE_WRITE_COUNTER
-
BUNDLE_WRITE_DURATION
-
BUNDLE_WRITE_AVERAGE
-
BUNDLE_CACHE_ACCESS_COUNTER
-
BUNDLE_CACHE_SIZE_COUNTER
-
BUNDLE_CACHE_MISS_COUNTER
-
BUNDLE_CACHE_MISS_DURATION
-
BUNDLE_CACHE_MISS_AVERAGE
-
BUNDLE_COUNTER
-
BUNDLE_WS_SIZE_COUNTER
-
SESSION_READ_COUNTER
Number of read accesses through any session. -
SESSION_READ_DURATION
Total time spent reading from sessions in nano seconds. -
SESSION_READ_AVERAGE
Average time spent reading from sessions in nano seconds. This is the sum of all read durations divided by the number of reads in the respective time period. -
SESSION_WRITE_COUNTER
Number of write accesses through any session. -
SESSION_WRITE_DURATION
Total time spent writing to sessions in nano seconds. -
SESSION_WRITE_AVERAGE
Average time spent writing to sessions in nano seconds. This is the sum of all write durations divided by the number of writes in the respective time period. -
SESSION_LOGIN_COUNTER
Number of calls sessions that have been logged in. -
SESSION_COUNT
Number of currently logged in sessions. -
QUERY_COUNT
Number of queries executed. -
QUERY_DURATION
Total time spent evaluating queries in milli seconds. -
QUERY_AVERAGE
Average time spent evaluating queries in milli seconds. This is the sum of all query durations divided by the number of queries in the respective time period. -
OBSERVATION_EVENT_COUNTER
Total number of observationEventinstances delivered to all observation listeners. -
OBSERVATION_EVENT_DURATION
Total time spent processing observation events by all observation listeners in nano seconds. -
OBSERVATION_EVENT_AVERAGE
Average time spent processing observation events by all observation listeners in nano seconds. This is the sum of all observation durations divided by the number of observation events in the respective time period.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getType
-
isResetValueEachSecond
public boolean isResetValueEachSecond()
-