Enum RepositoryStatistics.Type

    • Enum Constant Detail

      • SESSION_READ_COUNTER

        public static final RepositoryStatistics.Type SESSION_READ_COUNTER
        Number of read accesses through any session.
      • SESSION_READ_DURATION

        public static final RepositoryStatistics.Type SESSION_READ_DURATION
        Total time spent reading from sessions in nano seconds.
      • SESSION_READ_AVERAGE

        public static final RepositoryStatistics.Type 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

        public static final RepositoryStatistics.Type SESSION_WRITE_COUNTER
        Number of write accesses through any session.
      • SESSION_WRITE_DURATION

        public static final RepositoryStatistics.Type SESSION_WRITE_DURATION
        Total time spent writing to sessions in nano seconds.
      • SESSION_WRITE_AVERAGE

        public static final RepositoryStatistics.Type 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

        public static final RepositoryStatistics.Type SESSION_LOGIN_COUNTER
        Number of calls sessions that have been logged in.
      • QUERY_DURATION

        public static final RepositoryStatistics.Type QUERY_DURATION
        Total time spent evaluating queries in milli seconds.
      • QUERY_AVERAGE

        public static final RepositoryStatistics.Type 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

        public static final RepositoryStatistics.Type OBSERVATION_EVENT_COUNTER
        Total number of observation Event instances delivered to all observation listeners.
      • OBSERVATION_EVENT_DURATION

        public static final RepositoryStatistics.Type OBSERVATION_EVENT_DURATION
        Total time spent processing observation events by all observation listeners in nano seconds.
      • OBSERVATION_EVENT_AVERAGE

        public static final RepositoryStatistics.Type 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 Detail

      • values

        public static RepositoryStatistics.Type[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (RepositoryStatistics.Type c : RepositoryStatistics.Type.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static RepositoryStatistics.Type valueOf​(java.lang.String name)
        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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • isResetValueEachSecond

        public boolean isResetValueEachSecond()