-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum LocalAttribute.Key extends Enum<LocalAttribute.Key>
Enumeration of all local attributes keys used in the application. Made via enum to make sure that all such attributes will be removed before sending the event to the backend.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description VIEW_SCOPE_INSTRUMENTATION_TYPEIndicates which instrumentation was used to track the view scope. See ViewScopeInstrumentationType for possible values.
REPORTING_SAMPLING_RATESampling rate that is used to decide to send or not to send the metric. Each metric should have reporting(tail) sampling rate. It's possible that metric has only reporting(tail) sampling rate.
CREATION_SAMPLING_RATESome of the metrics such as PerformanceMetric are sampled at the point of metric creation and then reported with 100% probability. In such cases we need to use creationSampleRate to correctly calculate effectiveSampleRate. The creation(head) sample rate only exists for long-lived metrics such as method performance. Created metric still could not be sent, it depends on the REPORTING_SAMPLING_RATE sample rate.
-