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
Copy file name to clipboardExpand all lines: specification/ml/_types/Anomaly.ts
+17Lines changed: 17 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ export class Anomaly {
35
35
field_name?: string
36
36
function?: string
37
37
function_description?: string
38
+
/**
39
+
* If the detector function is `lat_long`, this object contains comma delimited strings for the latitude and longitude of the actual and typical values.
40
+
*/
41
+
geo_results?: GeoResults
38
42
influencers?: Influence[]
39
43
initial_record_score: double
40
44
is_interim: boolean
@@ -72,6 +76,7 @@ export class Influence {
72
76
influencer_field_values: string[]
73
77
}
74
78
79
+
<<<<<<<HEAD
75
80
exportclassAnomalyExplanation{
76
81
/**
77
82
* Impact from the duration and magnitude of the detected anomaly relative to the historical average.
@@ -114,3 +119,15 @@ export class AnomalyExplanation {
114
119
*/
115
120
upper_confidence_bound?: double
116
121
}
122
+
=======
123
+
exportclassGeoResults{
124
+
/**
125
+
* The actual value for the bucket formatted as a `geo_point`.
126
+
*/
127
+
actual_point: string
128
+
/**
129
+
* The typical value for the bucket formatted as a `geo_point`.
0 commit comments