public enum CoreMetrics extends Enum<CoreMetrics>
Modifier and Type | Method and Description |
---|---|
io.micrometer.core.instrument.Counter |
counter(io.micrometer.core.instrument.MeterRegistry meterRegistry,
String... tags)
Get/create a Micrometer
Counter with the given tags. |
<T> T |
resolve(Function<String,T> resolver) |
io.micrometer.core.instrument.Timer |
timer(io.micrometer.core.instrument.MeterRegistry meterRegistry,
String... tags)
Get/create a Micrometer
Timer with the given tags. |
io.micrometer.core.instrument.Timer |
timer(io.micrometer.core.instrument.MeterRegistry meterRegistry,
io.micrometer.core.instrument.Tag... tags)
Get/create a Micrometer
Timer with the given tags. |
static CoreMetrics |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreMetrics[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreMetrics HIBERNATE_ENTITY_FETCH
public static final CoreMetrics HIBERNATE_ENTITY_LOAD
public static final CoreMetrics HIBERNATE_ENTITY_INSERT
public static final CoreMetrics HIBERNATE_ENTITY_UPDATE
public static final CoreMetrics HIBERNATE_ENTITY_DELETE
public static final CoreMetrics HIBERNATE_ENTITY_LOCK_FAILURE
public static final CoreMetrics HIBERNATE_COLLECTION_FETCH
public static final CoreMetrics HIBERNATE_COLLECTION_LOAD
public static final CoreMetrics HIBERNATE_COLLECTION_RECREATE
public static final CoreMetrics HIBERNATE_COLLECTION_REMOVE
public static final CoreMetrics HIBERNATE_COLLECTION_UPDATE
public static final CoreMetrics HIBERNATE_COLLECTION_DELETE
public static final CoreMetrics HIBERNATE_L2CACHE_GET
public static final CoreMetrics HIBERNATE_L2CACHE_PUT
public static final CoreMetrics HIBERNATE_L2CACHE_ELEMENTS
public static final CoreMetrics HIBERNATE_L2CACHE_SIZE
public static final CoreMetrics LOCK_OPERATION_TIMER
public static final CoreMetrics LOCK_DURATION_TIMER
public static final CoreMetrics HAZELCAST_CLUSTER_EVENT_TOTAL_WAIT_TIME
public static final CoreMetrics HAZELCAST_CLUSTER_EVENT_MEMBER_WAIT_TIME
public static final CoreMetrics LOG_EVENT
public static final CoreMetrics ASYNC_INVALIDATION_CACHE_PUBLISH_SEQUENCE_SNAPSHOT
public static final CoreMetrics ASYNC_INVALIDATION_CACHE_SEQUENCE_SNAPSHOT_INCONSISTENT
public static final CoreMetrics ASYNC_INVALIDATION_CACHE_INVALIDATION_OUT_OF_SEQUENCE
public static final CoreMetrics INDEX_TASK_QUEUE_SIZE
public static final CoreMetrics HAZELCAST_CACHE_COMPACTION
public static CoreMetrics[] values()
for (CoreMetrics c : CoreMetrics.values()) System.out.println(c);
public static CoreMetrics valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic io.micrometer.core.instrument.Timer timer(io.micrometer.core.instrument.MeterRegistry meterRegistry, String... tags)
Timer
with the given tags.public io.micrometer.core.instrument.Timer timer(io.micrometer.core.instrument.MeterRegistry meterRegistry, io.micrometer.core.instrument.Tag... tags)
Timer
with the given tags.public io.micrometer.core.instrument.Counter counter(io.micrometer.core.instrument.MeterRegistry meterRegistry, String... tags)
Counter
with the given tags.Copyright © 2003–2021 Atlassian. All rights reserved.