public enum Label extends Enum<Label>
Enum Constant and Description |
---|
CLASS_NAME
Class name.
|
EB_ADDRESS
Event bus address
|
EB_FAILURE
Event bus failure name from a ReplyFailure object
|
EB_SIDE
Event bus side of the metric, it can be either "local" or "remote"
|
HTTP_CODE
HTTP response code (used in http domain)
|
HTTP_METHOD
Method (GET, POST, PUT, etc.) of an HTTP requests (used in http domain)
|
HTTP_PATH
Path of the URI for client or server requests (used in http domain)
|
LOCAL
Local address in client-host or host-client connections (used in net, http and datagram domains)
|
POOL_NAME
Pool name (used in pools domain)
|
POOL_TYPE
Pool type, such as "worker" or "datasource" (used in pools domain)
|
REMOTE
Remote address in client-host or host-client connections (used in net and http domains)
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Label |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Label[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Label LOCAL
public static final Label REMOTE
public static final Label HTTP_PATH
public static final Label HTTP_METHOD
public static final Label HTTP_CODE
public static final Label CLASS_NAME
public static final Label EB_ADDRESS
public static final Label EB_SIDE
public static final Label EB_FAILURE
public static final Label POOL_TYPE
public static final Label POOL_NAME
public static Label[] values()
for (Label c : Label.values()) System.out.println(c);
public static Label 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 nullCopyright © 2023 Eclipse. All rights reserved.