You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Information about the factors impacting the initial anomaly score.
28
+
*/
29
+
anomaly_score_explanation?: AnomalyExplanation
26
30
bucket_span: DurationValue<UnitSeconds>
27
31
by_field_name?: string
28
32
by_field_value?: string
@@ -67,3 +71,46 @@ export class Influence {
67
71
influencer_field_name: string
68
72
influencer_field_values: string[]
69
73
}
74
+
75
+
exportclassAnomalyExplanation{
76
+
/**
77
+
* Impact from the duration and magnitude of the detected anomaly relative to the historical average.
78
+
*/
79
+
anomaly_characteristics_impact?: integer
80
+
/**
81
+
* Length of the detected anomaly in the number of buckets.
82
+
*/
83
+
anomaly_length?: integer
84
+
/**
85
+
* Type of the detected anomaly: `spike` or `dip`.
86
+
*/
87
+
anomaly_type?: string
88
+
/**
89
+
* Indicates reduction of anomaly score for the bucket with large confidence intervals. If a bucket has large confidence intervals, the score is reduced.
90
+
*/
91
+
high_variance_penalty?: boolean
92
+
/**
93
+
* If the bucket contains fewer samples than expected, the score is reduced.
94
+
*/
95
+
incomplete_bucket_penalty?: boolean
96
+
/**
97
+
* Lower bound of the 95% confidence interval.
98
+
*/
99
+
lower_confidence_bound?: double
100
+
/**
101
+
* Impact of the deviation between actual and typical values in the past 12 buckets.
102
+
*/
103
+
multi_bucket_impact?: integer
104
+
/**
105
+
* Impact of the deviation between actual and typical values in the current bucket.
0 commit comments