Enum Class NettyMeters

java.lang.Object
java.lang.Enum<NettyMeters>
io.micrometer.core.instrument.binder.netty4.NettyMeters
All Implemented Interfaces:
MeterDocumentation, Serializable, Comparable<NettyMeters>, Constable

public enum NettyMeters extends Enum<NettyMeters> implements MeterDocumentation
Meter documentation for Netty 4.
Since:
1.11.0
See Also:
  • Enum Constant Details

    • ALLOCATOR_MEMORY_USED

      public static final NettyMeters ALLOCATOR_MEMORY_USED
      Size of memory used by the allocator, in bytes.
    • ALLOCATOR_MEMORY_PINNED

      public static final NettyMeters ALLOCATOR_MEMORY_PINNED
      Size of memory used by allocated buffers, in bytes.
    • ALLOCATOR_POOLED_ARENAS

      public static final NettyMeters ALLOCATOR_POOLED_ARENAS
      Number of arenas for a pooled allocator.
    • ALLOCATOR_POOLED_CACHE_SIZE

      public static final NettyMeters ALLOCATOR_POOLED_CACHE_SIZE
      Size of the cache for a pooled allocator, in bytes.
    • ALLOCATOR_POOLED_THREADLOCAL_CACHES

      public static final NettyMeters ALLOCATOR_POOLED_THREADLOCAL_CACHES
      Number of ThreadLocal caches for a pooled allocator.
    • ALLOCATOR_POOLED_CHUNK_SIZE

      public static final NettyMeters ALLOCATOR_POOLED_CHUNK_SIZE
      Size of memory chunks for a pooled allocator, in bytes.
    • EVENT_EXECUTOR_TASKS_PENDING

      public static final NettyMeters EVENT_EXECUTOR_TASKS_PENDING
      Number of pending tasks in the event executor.
  • Method Details

    • values

      public static NettyMeters[] 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

      public static NettyMeters valueOf(String name)
      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 name
      NullPointerException - if the argument is null