public enum DataCollectionLevel extends Enum<DataCollectionLevel>
| Enum Constant and Description |
|---|
OFF
the agent does not capture data.
|
PERFORMANCE
the agent only captures anonymous performance data.
|
USER_BEHAVIOR
the agent captures performance and user data.
|
| Modifier and Type | Method and Description |
|---|---|
static DataCollectionLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataCollectionLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataCollectionLevel OFF
public static final DataCollectionLevel PERFORMANCE
Dynatrace.identifyUser(String) or custom value reporting.public static final DataCollectionLevel USER_BEHAVIOR
Dynatrace.identifyUser(String)
and it uses the same visitor id for every visit.public static DataCollectionLevel[] values()
for (DataCollectionLevel c : DataCollectionLevel.values()) System.out.println(c);
public static DataCollectionLevel 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 null© 2021 Dynatrace LLC. All Rights Reserved