Enum Class NettyMeters
- All Implemented Interfaces:
MeterDocumentation
,Serializable
,Comparable<NettyMeters>
,Constable
Meter documentation for Netty 4.
- Since:
- 1.11.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSize of memory used by allocated buffers, in bytes.Size of memory used by the allocator, in bytes.Number of arenas for a pooled allocator.Size of the cache for a pooled allocator, in bytes.Size of memory chunks for a pooled allocator, in bytes.Number of ThreadLocal caches for a pooled allocator.Number of pending tasks in the event executor. -
Field Summary
Fields inherited from interface io.micrometer.core.instrument.docs.MeterDocumentation
EMPTY
-
Method Summary
Modifier and TypeMethodDescriptionstatic NettyMeters
Returns the enum constant of this class with the specified name.static NettyMeters[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
Methods inherited from interface io.micrometer.core.instrument.docs.MeterDocumentation
getAdditionalKeyNames, getBaseUnit, getKeyNames, getName, getName, getPrefix, getType, overridesDefaultMetricFrom
-
Enum Constant Details
-
ALLOCATOR_MEMORY_USED
Size of memory used by the allocator, in bytes. -
ALLOCATOR_MEMORY_PINNED
Size of memory used by allocated buffers, in bytes. -
ALLOCATOR_POOLED_ARENAS
Number of arenas for a pooled allocator. -
ALLOCATOR_POOLED_CACHE_SIZE
Size of the cache for a pooled allocator, in bytes. -
ALLOCATOR_POOLED_THREADLOCAL_CACHES
Number of ThreadLocal caches for a pooled allocator. -
ALLOCATOR_POOLED_CHUNK_SIZE
Size of memory chunks for a pooled allocator, in bytes. -
EVENT_EXECUTOR_TASKS_PENDING
Number of pending tasks in the event executor.
-
-
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
-