Enum Class CoreMetrics
- All Implemented Interfaces:
Serializable
,Comparable<CoreMetrics>
,Constable
Consolidates named metrics used by Confluence core into one place.
- Since:
- 7.6
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionio.micrometer.core.instrument.Counter
Get/create a MicrometerCounter
with the given tags.<T> T
io.micrometer.core.instrument.Timer
timer
(io.micrometer.core.instrument.MeterRegistry meterRegistry, io.micrometer.core.instrument.Tag... tags) Get/create a MicrometerTimer
with the given tags.io.micrometer.core.instrument.Timer
Get/create a MicrometerTimer
with the given tags.static CoreMetrics
Returns the enum constant of this class with the specified name.static CoreMetrics[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
HIBERNATE_ENTITY_FETCH
-
HIBERNATE_ENTITY_LOAD
-
HIBERNATE_ENTITY_INSERT
-
HIBERNATE_ENTITY_UPDATE
-
HIBERNATE_ENTITY_DELETE
-
HIBERNATE_ENTITY_LOCK_FAILURE
-
HIBERNATE_COLLECTION_FETCH
-
HIBERNATE_COLLECTION_LOAD
-
HIBERNATE_COLLECTION_RECREATE
-
HIBERNATE_COLLECTION_REMOVE
-
HIBERNATE_COLLECTION_UPDATE
-
HIBERNATE_COLLECTION_DELETE
-
HIBERNATE_L2CACHE_GET
-
HIBERNATE_L2CACHE_PUT
-
HIBERNATE_L2CACHE_ELEMENTS
-
HIBERNATE_L2CACHE_SIZE
-
LOCK_OPERATION_TIMER
-
HAZELCAST_CLUSTER_EVENT_TOTAL_WAIT_TIME
-
HAZELCAST_CLUSTER_EVENT_MEMBER_WAIT_TIME
-
LOG_EVENT
-
ASYNC_INVALIDATION_CACHE_PUBLISH_SEQUENCE_SNAPSHOT
-
ASYNC_INVALIDATION_CACHE_SEQUENCE_SNAPSHOT_INCONSISTENT
-
ASYNC_INVALIDATION_CACHE_INVALIDATION_OUT_OF_SEQUENCE
-
INDEX_TASK_QUEUE_SIZE
-
HAZELCAST_CACHE_COMPACTION
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
resolve
-
timer
public io.micrometer.core.instrument.Timer timer(io.micrometer.core.instrument.MeterRegistry meterRegistry, String... tags) Get/create a MicrometerTimer
with the given tags. -
timer
public io.micrometer.core.instrument.Timer timer(io.micrometer.core.instrument.MeterRegistry meterRegistry, io.micrometer.core.instrument.Tag... tags) Get/create a MicrometerTimer
with the given tags. -
counter
public io.micrometer.core.instrument.Counter counter(io.micrometer.core.instrument.MeterRegistry meterRegistry, String... tags) Get/create a MicrometerCounter
with the given tags.
-