Enum FDBStoreTimer.DetailEvents

    • Enum Constant Detail

      • GET_RECORD_RAW_VALUE

        public static final FDBStoreTimer.DetailEvents GET_RECORD_RAW_VALUE
        The amount of time spent loading the raw bytes of a record.
      • GET_RECORD_RANGE_RAW_FIRST_CHUNK

        public static final FDBStoreTimer.DetailEvents GET_RECORD_RANGE_RAW_FIRST_CHUNK
        The amount of time spent until the first part of a split record is available.
      • GET_SCAN_RANGE_RAW_FIRST_CHUNK

        public static final FDBStoreTimer.DetailEvents GET_SCAN_RANGE_RAW_FIRST_CHUNK
        The amount of time spent until the first part of a range scan (such as an index) is available.
      • RANKED_SET_NEXT_LOOKUP_KEY

        public static final FDBStoreTimer.DetailEvents RANKED_SET_NEXT_LOOKUP_KEY
        The amount of time spent looking up the next entry of a RankedSet skip list.
      • RANKED_SET_ADD_LEVEL_ZERO_KEY

        public static final FDBStoreTimer.DetailEvents RANKED_SET_ADD_LEVEL_ZERO_KEY
        The amount of time spent adding to the finest level of a RankedSet skip list.
      • RANKED_SET_ADD_INCREMENT_LEVEL_KEY

        public static final FDBStoreTimer.DetailEvents RANKED_SET_ADD_INCREMENT_LEVEL_KEY
        The amount of time spent incrementing an existing level key of a RankedSet skip list.
      • RANKED_SET_ADD_INSERT_LEVEL_KEY

        public static final FDBStoreTimer.DetailEvents RANKED_SET_ADD_INSERT_LEVEL_KEY
        The amount of time spent incrementing an splitting a level of a RankedSet skip list by inserting another key.
    • Method Detail

      • values

        public static FDBStoreTimer.DetailEvents[] 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 (FDBStoreTimer.DetailEvents c : FDBStoreTimer.DetailEvents.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FDBStoreTimer.DetailEvents valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • title

        public String title()
        Description copied from interface: StoreTimer.Event
        Get the title of this event for user displays.
        Specified by:
        title in interface StoreTimer.Event
        Returns:
        the user-visible title
      • logKey

        @Nonnull
        public String logKey()
        Description copied from interface: StoreTimer.Event
        Get the key of this event for logging. This should be used with KeyValueLogMessages and other key-value based logging systems to log the values from instrumented events. These keys are not expected to change frequently. They may, however, change outside of any minor version change. Their values, therefore, should not be relied upon, other than for the logging purposes.
        Specified by:
        logKey in interface StoreTimer.Event
        Returns:
        the key to use for logging