Class ConfigurationDefaults
- java.lang.Object
-
- com.dynatrace.openkit.core.configuration.ConfigurationDefaults
-
public class ConfigurationDefaults extends java.lang.ObjectClass containing all default values for all configurations.
-
-
Field Summary
Fields Modifier and Type Field Description static CrashReportingLevelDEFAULT_CRASH_REPORTING_LEVELDefault crash reporting level used, if no other value was specifiedstatic DataCollectionLevelDEFAULT_DATA_COLLECTION_LEVELDefault data collection level used, if no other value was specifiedstatic longDEFAULT_LOWER_MEMORY_BOUNDARY_IN_BYTESDefines the lower memory boundary of theBeaconCachestatic longDEFAULT_MAX_RECORD_AGE_IN_MILLISThe defaultBeaconCacheConfigurationwhen user does not override it.static longDEFAULT_UPPER_MEMORY_BOUNDARY_IN_BYTESDefines the default upper memory boundary of theBeaconCache.
-
-
-
Field Detail
-
DEFAULT_MAX_RECORD_AGE_IN_MILLIS
public static final long DEFAULT_MAX_RECORD_AGE_IN_MILLIS
The defaultBeaconCacheConfigurationwhen user does not override it. Default settings allow beacons which are max 2 hours old and unbounded memory limits.
-
DEFAULT_UPPER_MEMORY_BOUNDARY_IN_BYTES
public static final long DEFAULT_UPPER_MEMORY_BOUNDARY_IN_BYTES
Defines the default upper memory boundary of theBeaconCache.The upper boundary is the size limit at which the
BeaconCachewill start evicting records. The default uppper boundary is 100 MB- See Also:
- Constant Field Values
-
DEFAULT_LOWER_MEMORY_BOUNDARY_IN_BYTES
public static final long DEFAULT_LOWER_MEMORY_BOUNDARY_IN_BYTES
Defines the lower memory boundary of theBeaconCacheThe lower boundary is the size until which the
BeaconCachewill evict records once the upper boundary was exceeded. The default lower boundary is 80 MB- See Also:
- Constant Field Values
-
DEFAULT_DATA_COLLECTION_LEVEL
public static final DataCollectionLevel DEFAULT_DATA_COLLECTION_LEVEL
Default data collection level used, if no other value was specified
-
DEFAULT_CRASH_REPORTING_LEVEL
public static final CrashReportingLevel DEFAULT_CRASH_REPORTING_LEVEL
Default crash reporting level used, if no other value was specified
-
-