Enum Event.Category

java.lang.Object
java.lang.Enum<Event.Category>
com.couchbase.client.core.cnc.Event.Category
All Implemented Interfaces:
Serializable, Comparable<Event.Category>
Enclosing interface:
Event

public static enum Event.Category extends Enum<Event.Category>
Describes the category of any given event.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Represents an event from the config subsystem.
    Represents an event from the upper level core subsystem.
    Represents an event from the Endpoint layer.
    Represents an event from the IO subsystem.
    Represents events that comes from the metrics subsystem.
    Represents an event from the Node layer.
    Represents an event around a specific request instance.
    Represents an event from the Service layer.
    Represents an event that concerns the JVM/OS/system.
    Represents event that come from the tracing subsystem.
  • Method Summary

    Modifier and Type
    Method
    Description
     
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • IO

      public static final Event.Category IO
      Represents an event from the IO subsystem.
    • ENDPOINT

      public static final Event.Category ENDPOINT
      Represents an event from the Endpoint layer.
    • REQUEST

      public static final Event.Category REQUEST
      Represents an event around a specific request instance.
    • SYSTEM

      public static final Event.Category SYSTEM
      Represents an event that concerns the JVM/OS/system.
    • SERVICE

      public static final Event.Category SERVICE
      Represents an event from the Service layer.
    • NODE

      public static final Event.Category NODE
      Represents an event from the Node layer.
    • CONFIG

      public static final Event.Category CONFIG
      Represents an event from the config subsystem.
    • CORE

      public static final Event.Category CORE
      Represents an event from the upper level core subsystem.
    • TRACING

      public static final Event.Category TRACING
      Represents event that come from the tracing subsystem.
    • METRICS

      public static final Event.Category METRICS
      Represents events that comes from the metrics subsystem.
  • Method Details

    • values

      public static Event.Category[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static Event.Category valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • path

      public String path()