public enum HistogramType extends java.lang.Enum<HistogramType>
| 限定符和类型 | 方法和说明 |
|---|---|
static HistogramType |
getHistogramType(byte value)
Get Histogram type by byte value.
|
byte |
getValue()
Returns the byte value of the enumerations value
|
static HistogramType |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static HistogramType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final HistogramType DB_GET
public static final HistogramType DB_WRITE
public static final HistogramType COMPACTION_TIME
public static final HistogramType SUBCOMPACTION_SETUP_TIME
public static final HistogramType TABLE_SYNC_MICROS
public static final HistogramType COMPACTION_OUTFILE_SYNC_MICROS
public static final HistogramType WAL_FILE_SYNC_MICROS
public static final HistogramType MANIFEST_FILE_SYNC_MICROS
public static final HistogramType TABLE_OPEN_IO_MICROS
public static final HistogramType DB_MULTIGET
public static final HistogramType READ_BLOCK_COMPACTION_MICROS
public static final HistogramType READ_BLOCK_GET_MICROS
public static final HistogramType WRITE_RAW_BLOCK_MICROS
public static final HistogramType NUM_FILES_IN_SINGLE_COMPACTION
public static final HistogramType DB_SEEK
public static final HistogramType WRITE_STALL
public static final HistogramType SST_READ_MICROS
public static final HistogramType NUM_SUBCOMPACTIONS_SCHEDULED
public static final HistogramType BYTES_PER_READ
public static final HistogramType BYTES_PER_WRITE
public static final HistogramType BYTES_PER_MULTIGET
public static final HistogramType BYTES_COMPRESSED
public static final HistogramType BYTES_DECOMPRESSED
number of bytes is when uncompressed; i.e. before/after respectively
public static final HistogramType COMPRESSION_TIMES_NANOS
public static final HistogramType DECOMPRESSION_TIMES_NANOS
public static final HistogramType READ_NUM_MERGE_OPERANDS
public static final HistogramType FLUSH_TIME
public static final HistogramType BLOB_DB_KEY_SIZE
public static final HistogramType BLOB_DB_VALUE_SIZE
public static final HistogramType BLOB_DB_WRITE_MICROS
public static final HistogramType BLOB_DB_GET_MICROS
public static final HistogramType BLOB_DB_MULTIGET_MICROS
public static final HistogramType BLOB_DB_SEEK_MICROS
public static final HistogramType BLOB_DB_NEXT_MICROS
public static final HistogramType BLOB_DB_PREV_MICROS
public static final HistogramType BLOB_DB_BLOB_FILE_WRITE_MICROS
public static final HistogramType BLOB_DB_BLOB_FILE_READ_MICROS
public static final HistogramType BLOB_DB_BLOB_FILE_SYNC_MICROS
public static final HistogramType BLOB_DB_COMPRESSION_MICROS
public static final HistogramType BLOB_DB_DECOMPRESSION_MICROS
public static final HistogramType NUM_INDEX_AND_FILTER_BLOCKS_READ_PER_LEVEL
public static final HistogramType NUM_SST_READ_PER_LEVEL
public static final HistogramType ERROR_HANDLER_AUTORESUME_RETRY_COUNT
public static final HistogramType ASYNC_READ_BYTES
public static final HistogramType TABLE_OPEN_PREFETCH_TAIL_READ_BYTES
public static final HistogramType FILE_READ_FLUSH_MICROS
public static final HistogramType FILE_READ_COMPACTION_MICROS
public static final HistogramType FILE_READ_DB_OPEN_MICROS
public static final HistogramType HISTOGRAM_ENUM_MAX
public static HistogramType[] values()
for (HistogramType c : HistogramType.values()) System.out.println(c);
public static HistogramType valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值public byte getValue()
public static HistogramType getHistogramType(byte value)
value - byte representation of HistogramType.HistogramType instance.java.lang.IllegalArgumentException - if an invalid
value is provided.